Views
No views yet
| Feature | ARC-Hunyuan-Video-7B | ARC-Qwen-Video-7B |
|---|---|---|
| Base VLM | Hunyuan-VL-7B-Pretrain | Qwen2.5-VL-7B-Instruct |
| Frame Resolution Each model uses a fixed frame resolution to maintain audio-video synchronization. | Fixed at 640 x 640 | Fixed at 392 x 292 |
| Frame Sampling | • < 150s: 1 FPS • > 150s: Uniformly sample 150 frames. | • < 300s: 1 FPS • > 300s: Uniformly sample 300 frames. |
| Audio-Video Synchronization | • < 150s: Sum tokens from 1s audio + 1s video frame. • 150-300s: Sum tokens from corresponding audio segment + video frame. • > 300s: Split audio into 300 segments, use first 2s of each. | • < 300s: Sum tokens from 1s audio + 1s video. • > 300s: Split audio into 300 segments, use middle 1s of each. |
视频概述这是一个喜剧短片,讲述了一位丈夫藏在棉衣里的私房钱被妻子意外发现,并误以为是丈夫准备的“惊喜”礼物。视频通过夫妻二人的一通电话,生动展现了丈夫从悠闲自得,到震惊错愕,再到崩溃无奈的全过程,充满了戏剧性的反转和幽默感。
情节发展分解视频情节围绕一通电话展开,以下是详细的时间线、场景、说话人和对话内容:
人物与核心冲突1. 人物分析丈夫:
行为: 藏私房钱,事发后极力掩饰自己的真实情绪(心痛、懊悔)。
心理变化: 悠闲 -> 疑惑 -> 震惊 -> 崩溃 -> 无奈接受。
特点: 爱面子,对妻子既有爱意也有无奈,典型的“妻管严”形象。
妻子:
行为: 发现钱后,认为是丈夫的爱意表达,并迅速将其消费。
心理变化: 全程处于发现“惊喜”的幸福和喜悦中。
特点: 天真、消费果断,对丈夫充满信任和爱意。
2. 核心冲突视频的核心冲突在于 “信息的严重不对等” 所造成的戏剧性误会:
这个误会推动了整个故事的发展,丈夫的“打碎牙往肚里咽”和妻子的“理所当然的幸福”形成了强烈的喜剧反差,制造了密集的笑点。
总结该视频通过一个关于“私房钱”的常见家庭情景,巧妙地构建了一个充满反转和幽默的故事。它利用戏剧性讽刺(观众和丈夫知道真相,而妻子蒙在鼓里)的手法,精准捕捉了丈夫在突发状况下的复杂心理活动。整个过程不仅笑料百出,也含蓄地探讨了夫妻间的沟通、信任和金钱观等话题,容易引发观众的共鸣和讨论。
|
1git clone -b arc-qwen-video https://github.com/TencentARC/ARC-Hunyuan-Video-7B.git
2cd ARC-Hunyuan-Video-7B
3
4# Install torch 2.6.0 based on your CUDA version
5# CUDA 11.8
6pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu118
7# CUDA 12.4
8pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu124
9# CUDA 12.6
10pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu126
11
12pip install librosa decord av accelerate
13pip uninstall transformers
14pip install git+https://github.com/geyuying/transformers.git@arc-qwen-video
15pip install flash_attn==2.7.1.post4
16
17# Install FFmpeg according to your system, and ensure that the following command produces a normal version output:
18ffmpeg -version
19
20# (Optional) For vllm, please follow the instructions below,
21pip uninstall vllm
22pip install git+https://github.com/geyuying/vllm.git@arc-qwen-videowhisper_path = 'openai/whisper-large-v3'
speech_encoder = WhisperModel.from_pretrained(whisper_path).encoder
self.speech_encoder = speech_encoder
speech_dim = speech_encoder.config.d_model
llm_hidden_size = config.vision_config.out_hidden_size
self.mlp_speech = nn.Sequential(
nn.LayerNorm(speech_dim),
nn.Linear(speech_dim, llm_hidden_size),
nn.GELU(),
nn.Linear(llm_hidden_size, llm_hidden_size)
)1# Our model currently excels at processing short videos of up to 5 minutes.
2# If your video is longer, we recommend following the approach used in our demo and API:
3# split the video into segments for inference, and then use an LLM to integrate the results.1video_path = "examples/猪排.mp4"
2task = "QA"
3question = "What did the man say at the beginning of the video after measuring the thickness of the fried pork cutlet?"1cd ARC-Hunyuan-Video-7B
2
3# For ARC-Hunyuan-Video-7B
4python3 inference_arc_qwen_video.py
5
6# For ARC-Hunyuan-Video-7B-Narrator
7python3 inference_arc_qwen_video_narrator.py1cd ARC-Hunyuan-Video-7B
2
3# For ARC-Hunyuan-Video-7B
4python3 vllm_arc_qwen_vl_video_batch.py --batch_inference
5
6# For ARC-Hunyuan-Video-7B-Narrator
7python3 vllm_arc_qwen_vl_video_batch_narrator.py --batch_inference| Video-MMMU | MMVU | Temp-Compass | Video-Holmes | Video-MME | VCR-Bench | MV-Bench | ShortVid-Bench | Charades-STA | |
|---|---|---|---|---|---|---|---|---|---|
| ARC-Hunyuan-Video-7B | 31.1 | 49.1 | 66.0 | 40.9 | 58.7 | 50.5 | 62.6 | 73.0 | 54.8 |
| ARC-Qwen-Video-7B | 41.3 | 55.5 | 68.7 | 51.1 | 61.0 | 52.3 | 60.8 | 72.6 | 52.8 |
1@article{ge2025arc,
2 title={ARC-Hunyuan-Video-7B: Structured Video Comprehension of Real-World Shorts},
3 author={Ge, Yuying and Ge, Yixiao and Li, Chen and Wang, Teng and Pu, Junfu and Li, Yizhuo and Qiu, Lu and Ma, Jin and Duan, Lisheng and Zuo, Xinyu and others},
4 journal={arXiv preprint arXiv:2507.20939},
5 year={2025}
6}