@369Serena: 用 Codex 剪辑视频的朋友一定要安装 video-use ! video-use 就是一个视频制作导演!!! 它把 Codex 从“写代码的”直接推到“能剪片的”。 只要你把素材丢进去,告诉 Codex 你想要什么结果,video-u…
摘要
video-use 是一个开源工具,让 Codex 能像导演一样剪辑视频,自动处理转写、字幕、动画和渲染。
查看缓存全文
缓存时间: 2026/07/04 14:47
用 Codex 剪辑视频的朋友一定要安装 video-use !
video-use 就是一个视频制作导演!!!
它把 Codex 从“写代码的”直接推到“能剪片的”。
只要你把素材丢进去,告诉 Codex 你想要什么结果,video-use 会像一个视频制作导演一样,把这些工具调起来。
要剪掉废话和停顿,它会处理转录和剪辑点。
要字幕,它会按输出时间线去生成,避免后面错位。
要动画,它可以指导 Codex 去开 HyperFrames、Remotion、Manim 这些工具,为某个片段单独做 overlay。
要成片,它还会渲染、自检,再把结果放到 final.mp4。
这个 Skill 最适合的场景是:
你有素材,也有 Codex, 但你缺一个懂视频流程、懂工具调度、懂怎么把结果做出来的“视频制作大脑”。
video-use 它让不会剪辑的人,也能开始指挥一条视频生产线。
GitHub: https://github.com/browser-use/video-use…
#codex #skills
browser-use/video-use
Source: https://github.com/browser-use/video-use
video-use
Introducing video-use — edit videos with Claude Code. 100% open source.
Drop raw footage in a folder, chat with Claude Code, get final.mp4 back. Works for any content — talking heads, montages, tutorials, travel, interviews — without presets or menus.
Try video-use in Browser Use Cloud.
What it does
- Cuts out filler words (
umm,uh, false starts) and dead space between takes - Auto color grades every segment (warm cinematic, neutral punch, or any custom ffmpeg chain)
- 30ms audio fades at every cut so you never hear a pop
- Burns subtitles in your style — 2-word UPPERCASE chunks by default, fully customizable
- Generates animation overlays via HyperFrames, Remotion, Manim, or PIL — spawned in parallel sub-agents, one per animation
- Self-evaluates the rendered output at every cut boundary before showing you anything
- Persists session memory in
project.mdso next week’s session picks up where you left off
Setup prompt
Paste into Claude Code, Codex, Hermes, Openclaw, or any agent with shell access:
Set up https://github.com/browser-use/video-use for me.
Read install.md first to install this repo, wire up ffmpeg, register the skill with whichever agent you're running under, and set up the ElevenLabs API key — ask me to paste it when you need it. Then read SKILL.md for daily usage, and always read helpers/ because that's where the editing scripts live. After install, don't transcribe anything on your own — just tell me it's ready and wait for me to drop footage into a folder.
The agent handles the clone, dependencies, skill registration, and prompts you once for your ElevenLabs API key (grab one at elevenlabs.io/app/settings/api-keys).
Then point your agent at a folder of raw takes:
cd /path/to/your/videos
claude # or codex, hermes, etc.
For always-on editing from your own VPS or Telegram, run the agent through Browser Use Box. Watch the 15-second demo.
And in the session:
edit these into a launch video
It inventories the sources, proposes a strategy, waits for your OK, then produces edit/final.mp4 next to your sources. All outputs live in <videos_dir>/edit/ — the skill directory stays clean.
Manual install
If you’d rather do it by hand:
# 1. Clone and symlink into your agent's skills directory
git clone https://github.com/browser-use/video-use ~/Developer/video-use
ln -sfn ~/Developer/video-use ~/.claude/skills/video-use # Claude Code
# ln -sfn ~/Developer/video-use ~/.codex/skills/video-use # Codex
# 2. Install deps
cd ~/Developer/video-use
uv sync # or: pip install -e .
brew install ffmpeg # required
brew install yt-dlp # optional, for downloading online sources
# 3. Add your ElevenLabs API key
cp .env.example .env
$EDITOR .env # ELEVENLABS_API_KEY=...
How it works
The LLM never watches the video. It reads it — through two layers that together give it everything it needs to cut with word-boundary precision.
Layer 1 — Audio transcript (always loaded). One ElevenLabs Scribe call per source gives word-level timestamps, speaker diarization, and audio events ((laughter), (applause), (sigh)). All takes pack into a single ~12KB takes_packed.md — the LLM’s primary reading view.
## C0103 (duration: 43.0s, 8 phrases)
[002.52-005.36] S0 Ninety percent of what a web agent does is completely wasted.
[006.08-006.74] S0 We fixed this.
Layer 2 — Visual composite (on demand). timeline_view produces a filmstrip + waveform + word labels PNG for any time range. Called only at decision points — ambiguous pauses, retake comparisons, cut-point sanity checks.
Naive approach: 30,000 frames × 1,500 tokens = 45M tokens of noise. Video Use: 12KB text + a handful of PNGs.
Same idea as browser-use giving an LLM a structured DOM instead of a screenshot — but for video.
Pipeline
Transcribe ──> Pack ──> LLM Reasons ──> EDL ──> Render ──> Self-Eval
│
└─ issue? fix + re-render (max 3)
The self-eval loop runs timeline_view on the rendered output at every cut boundary — catches visual jumps, audio pops, hidden subtitles. You see the preview only after it passes.
Design principles
- Text + on-demand visuals. No frame-dumping. The transcript is the surface.
- Audio is primary, visuals follow. Cuts come from speech boundaries and silence gaps.
- Ask → confirm → execute → self-eval → persist. Never touch the cut without strategy approval.
- Zero assumptions about content type. Look, ask, then edit.
- 12 hard rules, artistic freedom elsewhere. Production-correctness is non-negotiable. Taste isn’t.
See SKILL.md for the full production rules and editing craft.
相似文章
@0xQiYan: 装完 Codex 不搞钱?难道等着吃灰? 很多人装完 Codex,只会让它改代码、写脚本。 但我觉得更有想象力的玩法,是让它参与整条视频制作流程。 给 Codex 装上这 6 个 GitHub 上的视频 Skills,它就不只是写代码的工…
介绍如何为 Codex 安装6个 GitHub 视频技能,用于脚本、分镜、剪辑、渲染等完整视频制作流程,并推荐搭配方案。
@iluciddreaming: Codex 上搭「视频内容工厂」,装好这几个插件就能把文本变成视频: HyperFrames — 负责「想」,创意策划 ElevenLabs Skill — 负责「说」,AI 配音 Remotion Skill — 负责「动」,程序化动画…
在Codex平台上通过HyperFrames、ElevenLabs配音、Remotion动画和Captions字幕等插件,实现从文本到视频的自动化制作流水线。
@0xluffy_eth: 有人为Claude Code开发了免费视频编辑工具...太疯狂了。 只需把原始素材和资源放入文件夹。 就这样。 它会处理一切: - 剪辑片段 - 移除冗余词 - 添加字幕 - 应用色彩分级和滤镜 - 处理动画 - 渲染最终视频 无时间线。…
A free, open-source video editing tool built for Claude Code that fully automates editing from raw footage—clipping, filler word removal, subtitles, color grading, animation, and final rendering—all without a timeline or manual edits.
@369Serena: 用 Codex + HyperFrames 做图书介绍视频第二版来了! 参考的抖音博主我放在评论区了,大家帮我看看这个版本如何?Codex 把声音处理的很完美,很有故事感。 参考流程:把抖音博主视频喂给 Codex 分析,分析好后准备素材…
详细介绍如何使用 Codex 和 HyperFrames 制作图书介绍视频的工作流程,包括拆解抖音爆款、生成旁白、处理声音和匹配字幕等步骤,旨在帮助自媒体创作者利用 AI 高效制作视频。
@369Serena: 如何让 Codex 拥有复刻拆解抖音爆款视频的能力?? Github 上有个近 3K start 的 Skills,叫 claude-video, 可以让 Claude / Codex 这类 Agent 真的“看懂”视频。 如果你是内容创…
介绍 GitHub 上的 claude-video 工具,能让 Claude/Codex 等 AI Agent 分析视频内容,适用于拆解爆款视频、分析广告素材、诊断 bug 等多种场景。