autovideo/README.md
runst f176e9a402 feat: 初始化 AutoVideo 视频处理分析工具
- MiMo 2.5 分镜分析 (OpenAI格式调用)
- Qwen3-ASR-Flash FileTrans 转录+字级时间戳
- 一键 pipeline 脚本
- 杨梅/绿豆视频示例输出
- 完整文档和SOP
2026-07-27 15:25:59 +08:00

45 lines
944 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# AutoVideo - 视频处理分析工具
一键式视频分析MiMo 2.5 分镜 + Qwen3-ASR-Flash 转录+字级时间戳。
## 使用
```bash
python scripts/pipeline.py "视频路径.mp4" [输出目录]
```
## 流程
```
视频 → 压缩 → MiMo 2.5 分镜 + Qwen3-ASR FileTrans (转录+时间戳) → SRT
```
## 输出
```
xxx_analysis/
├── compressed.mp4 # 压缩视频
├── xxx_audio.wav # 音频
├── xxx_frames/ # 关键帧
├── scene.json # 分镜分析 (MiMo 2.5)
├── timestamps.json # 转录+字级时间戳 (Qwen3-ASR)
└── subtitles.srt # SRT 字幕
```
## 依赖
```bash
pip install openai dashscope requests
```
- ffmpeg
- MiMo 2.5 代理 (127.0.0.1:15721)
- DashScope API Key
## 费用
| 服务 | 费用 |
|------|------|
| MiMo 2.5 分镜 | 通过本地代理 |
| Qwen3-ASR FileTrans | ≈ ¥0.01/小时 |
| **总计** | **≈ ¥0.01/100小时** |