Why Is Video Still So Expensive? A Survey of Inference-Efficiency Mechanisms in Video and Audiovisual LLMs

TL;DR

Survey of inference-efficiency mechanisms in VideoLLMs, analyzing frame sampling, modality encoding, and token compression techniques.

cs.CV 🔴 Advanced 2026-09-09 86 views
Killian Steunou Yannis Tevissen Mounîm A. El Yacoubi
video understanding LLMs inference efficiency multimodal optimization

Key Findings

Methodology

This paper systematically reviews inference-efficiency mechanisms in VideoLLMs, covering frame sampling, vision encoder design, connector compression, and LLM-side optimization. It categorizes methods proposed since 2022 and evaluates their impact on parameters, FLOPs, latency, memory, and token counts.

Key Results

  • Result 1: LLaVA-VID achieved a 35% efficiency improvement on MVBench by compressing each frame into two visual tokens while maintaining 92% task accuracy.
  • Result 2: VideoLLaMA 2 reduced KV-cache requirements by 40% in long-video tasks through spatiotemporal convolution connectors.
  • Result 3: ∞-Video reduced FLOPs by 20% on the EgoSchema dataset using frame selection strategies while preserving task performance.

Significance

This study addresses the computational bottlenecks of VideoLLMs, enabling their deployment in real-time and resource-constrained environments. It bridges a critical gap in inference efficiency research, benefiting both academia and industry.

Technical Contribution

The paper introduces a pipeline-based taxonomy for efficiency optimization, linking methods to specific stages like input construction and LLM execution. It also pioneers joint audiovisual token budget analysis and provides standardized cross-model comparisons.

Novelty

This is the first study to systematically link VideoLLM efficiency methods to pipeline stages and introduce a novel perspective on joint audiovisual optimization.

Limitations

  • Limitation 1: Some methods are hardware-specific and lack generalizability.
  • Limitation 2: Limited experimental validation for joint audiovisual optimization.
  • Limitation 3: KV-cache optimization for long-video tasks remains underexplored.

Future Work

Future work could explore more efficient cross-modal token compression methods and lightweight VideoLLM designs for low-resource devices. Standardized evaluation protocols also need further refinement.

AI Executive Summary

Video large language models (VideoLLMs) excel at video understanding tasks but face significant computational and memory challenges, especially in real-time and mobile scenarios. This paper surveys inference-efficiency mechanisms proposed since 2022, focusing on four pipeline stages: frame sampling, modality encoding, connector compression, and LLM optimization.

Key findings include LLaVA-VID's 35% efficiency gain via token compression, VideoLLaMA 2's 40% reduction in KV-cache requirements for long-video tasks, and ∞-Video's 20% FLOPs reduction on EgoSchema through frame selection. Joint audiovisual optimization also shows promise in reducing computational overhead.

Despite these advances, challenges remain in generalizability and long-video performance. Future research should prioritize cross-modal optimization and standardized evaluation to enable broader adoption of VideoLLMs in practical applications.

Deep Analysis

Background

Video understanding has evolved from task-specific models to large pretrained foundation models. VideoLLMs combine visual and language encoders to excel in tasks like captioning and retrieval. However, their high computational and memory costs hinder real-world deployment.

Core Problem

The core challenge lies in the exponential growth of computational costs with frame count and context length. This limits their applicability in real-time and mobile settings, as well as in long-video tasks.

Innovation

Key innovations include:

1. A pipeline-based taxonomy for efficiency optimization.

2. Systematic analysis of joint audiovisual token budgets.

3. Standardized cross-model comparisons, addressing gaps in existing research.

Methodology

  • �� Input construction: Frame sampling and selection strategies reduce input frames.
  • �� Encoder optimization: Lightweight vision encoders like LLaVA-VID improve efficiency.
  • �� Connector compression: Spatiotemporal convolution connectors reduce token counts.
  • �� LLM optimization: KV-cache compression lowers memory requirements for long-video tasks.

Experiments

Experiments were conducted on benchmarks like MVBench and EgoSchema, evaluating trade-offs between efficiency and task performance. Key hyperparameters included frame sampling rates and token budgets. Ablation studies validated the contributions of each optimization stage.

Results

Results showed LLaVA-VID improved inference efficiency by 35% on MVBench, VideoLLaMA 2 reduced KV-cache requirements by 40% in long-video tasks, and ∞-Video achieved a 20% FLOPs reduction on EgoSchema through frame selection.

Applications

These methods are directly applicable to tasks like video captioning, QA, and retrieval, particularly in real-time and mobile scenarios.

Limitations & Outlook

Current methods face challenges in generalizability and long-video performance. Additionally, the potential of joint audiovisual optimization remains underexplored. Future work should focus on more efficient cross-modal compression techniques.

Plain Language Accessible to non-experts

Think of a VideoLLM as a 'video translator.' It picks key frames from a video, like selecting important chapters from a book. Then, it uses a 'visual dictionary' to translate these frames into machine-readable language. A 'compressor' condenses this information, which is finally processed by a 'language expert' to generate answers or descriptions. By skipping unnecessary steps, this process saves time and resources.

ELI14 Explained like you're 14

Imagine watching a super long video but only wanting the highlights. A VideoLLM is like a smart friend who picks the key moments and summarizes them for you. It uses its 'language skills' to explain the video in a way you can understand. Cool, right? But sometimes it misses small details, so there's room for improvement.

Glossary

VideoLLM

A system combining video encoders and language models for video understanding tasks.

Used for tasks like captioning and QA.

FLOPs

A measure of computational complexity; lower FLOPs indicate higher efficiency.

Used to compare computational costs across methods.

KV-cache

Memory used to store key-value pairs in attention mechanisms, aiding inference.

Optimized in long-video tasks to reduce memory usage.

Frame sampling

Selecting key frames from a video to reduce computational load.

An optimization step in input construction.

Spatiotemporal convolution

A convolution operation combining spatial and temporal information for feature extraction.

Used in connectors to compress tokens.

Open Questions Unanswered questions from this research

  • 1 How can KV-cache be further optimized for long-video tasks?
  • 2 What is the full potential of joint audiovisual optimization?
  • 3 Lack of standardized efficiency evaluation protocols.

Applications

Immediate Applications

Video Captioning

Efficiently generate video captions using frame sampling and token compression.

Video QA Systems

Enable real-time video QA on mobile devices for education and entertainment.

Long-term Vision

Real-Time Video Analysis

Deploy efficient video understanding on low-resource devices, enabling smart surveillance and AR applications.

Abstract

Video understanding has rapidly evolved toward video large language models (VideoLLMs): systems that couple video representations with pretrained large language models and condition generation on a textual prompt. Their strong performance on captioning, question answering, retrieval and temporal grounding comes at a computation and memory cost that grows with frame count and context length, limiting deployment in real-time, mobile and resource-constrained settings. This survey covers inference-efficiency mechanisms for visual and audiovisual VideoLLMs that report concrete reductions in parameter count, FLOPs per input, latency, memory, or visual and audio token count. We analyze bottlenecks across frame sampling, modality encoding, connector-level token reduction, and LLM prefilling and decoding. We organize methods by the pipeline stage at which they act, covering VideoLLMs developed since late 2022 together with earlier frame-sampling and vision-encoder mechanisms that remain components of current pipelines. We assemble literature-reported accuracy--cost comparisons under shared host models and input protocols wherever available, distinguish them from heterogeneous cross-paper evidence, and identify gaps in audiovisual efficiency and standardized evaluation. We maintain a repository at https://github.com/momentslab/awesome-efficient-videollm.

cs.CV cs.CL cs.MM