video-assemble (Final Video Assembly)
Final-stage assembly skill that lays narration audio over the source video, ducks the original sound, generates and burns subtitles, and normalizes loudness into a finished recap.
Image & VideoAdvanced★ 450⑂ 78AI score 8/10Last updated: Jul 26, 2026
What it does
- Places each narration audio segment (from
tts_meta.json) at its exact spot on the video timeline. - Ducks the original audio inside narration windows with fixed / sidechain / zone modes and configurable fade.
- Produces
subtitles.srt, plussubtitles.assburned in by default (--no-burn-subtitlesto skip). - Normalizes final loudness to a target LUFS and emits
timeline.json,assembly_manifest.json, and anassembly_qc.jsonrelease gate. - Optionally exports an editable Jianying/CapCut-CN draft project.
Who it's for
- Creators producing movie/series recap or commentary videos through an automated pipeline.
- Editors tired of hand-mixing TTS narration against original dialogue.
- Developers orchestrating ffmpeg-based rendering from Claude Code.
Examples
python3 scripts/assemble.py source.mp4 --work-dir work/— one command for mixing, ducking, subtitle burn-in, and loudness normalization.- Source has hardcoded subtitles: pass
--subtitle-y-top/--subtitle-y-botto mask that band and place the recap subtitles on the same baseline. --export-jianying --source-video orig.mp4to hand off an editable draft for a human final pass.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/worldwonderer/video-recap-skills/HEAD/skills/video-assemble/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/video-assemble folder from the GitHub repo worldwonderer/video-recap-skills into my ~/.claude/skills/video-assemble/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/worldwonderer/video-recap-skills.git && mkdir -p ~/.claude/skills && cp -r video-recap-skills/skills/* ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Prerequisites: Python 3 and an ffmpeg build with libass/
subtitlessupport (check withffmpeg -filters | grep subtitles). - Clone the repo:
git clone https://github.com/worldwonderer/video-recap-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the whole pipeline:
cp -r video-recap-skills/skills/* ~/.claude/skills/— this skill depends on the upstream script/TTS skills and won't work alone. - Restart Claude Code, then ask it to assemble a recap video; the skill is invoked by the orchestrating pipeline.
- At run time make sure the source video and
work_dir/tts_meta.jsonexist; the finished file appears asrecap_<stem>.mp4.
View source on GitHub ↗License: MIT