| name | video-post-production |
| description | Video post-production rules: audio mastering, color, captions, platform export. Use when: 'add music', 'add voiceover', 'export for tiktok', 'add captions', 'color grade', 'audio levels', 'master audio', 'export settings', 'platform requirements'. Covers FFmpeg patterns, audio chain, subtitle standards, and platform-specific export configs. Do NOT use to generate or animate the video frames/scenes in code (use remotion-production-guide), to write the script (use video-narrative-arc), or to evaluate script quality (use script-evaluator); this is the finishing stage applied to an already-rendered video. |
Video Post-Production Guide
Rules and FFmpeg patterns for finishing videos: audio mastering, captions, color, and platform-specific export.
Audio Rules
Volume Levels (dB)
| Track | Level | Notes |
|---|
| Voiceover | -12 to -10 dB | Primary audio, clear and upfront |
| Music (under VO) | -32 to -24 dB | Background, should not compete |
| Music (solo, no VO) | -16 to -12 dB | Can be louder when alone |
| Sound effects | -18 to -14 dB | Accent, not distraction |
| Silence floor | -60 dB | True silence feels unnatural, keep room tone |
Music Selection by BPM
| Mood | BPM Range | Use Case |
|---|
| Calm, reflective | 60-80 | Luxury brands, testimonials |
| Confident, steady | 80-100 | Corporate, explainers |
| Moderate energy | 100-120 | Product demos, features |
| Energetic | 120-140 | Launch videos, social ads |
| High energy | 140+ | Montage, fast-cut sequences |
Rule: Match music tempo to edit pace. Cut on beats for professional feel.
Audio Mastering Chain (FFmpeg)
ffmpeg -i input.mp4 -af "
highpass=f=80,
equalizer=f=3000:t=q:w=1.5:g=3,
acompressor=threshold=-20dB:ratio=4:attack=5:release=50,
loudnorm=I=-16:TP=-1.5:LRA=11
" -c:v copy output.mp4
Free Music/SFX Libraries
- Mixkit (mixkit.co) - royalty-free, no attribution
- Pixabay Audio (pixabay.com/music) - free, Pixabay license
- Freesound (freesound.org) - CC licensed, varies
- YouTube Audio Library - free for YouTube content
Caption / Subtitle Rules
Standards
| Parameter | Value |
|---|
| Max characters per line | 32-42 |
| Max 2 lines simultaneously | Always |
| Display duration | 1.5-7 seconds per caption |
| Min display | 1.5 seconds (even for short text) |
| Font size | 48-72px (for 1080p) |
| Font | Sans-serif, bold weight |
| Position | Bottom center, 10% from bottom edge |
| Background | Semi-transparent black (#000000AA) |
Burn-in Captions (FFmpeg)
ffmpeg -i input.mp4 -vf "subtitles=subs.srt:force_style='FontSize=24,FontName=Arial,Bold=1,PrimaryColour=&HFFFFFF,OutlineColour=&H000000,Outline=2,MarginV=40'" output.mp4
ffmpeg -i input.mp4 -vf "ass=styled_subs.ass" output.mp4
Color Correction
Quick Presets (FFmpeg)
ffmpeg -i input.mp4 -vf "eq=contrast=1.1:brightness=0.02:saturation=1.15,colorbalance=rs=0.05:gs=-0.02:bs=-0.05" output.mp4
ffmpeg -i input.mp4 -vf "eq=contrast=1.05:saturation=0.95,colorbalance=rs=-0.03:gs=0.01:bs=0.05" output.mp4
ffmpeg -i input.mp4 -vf "hue=s=0,eq=contrast=1.3:brightness=0.03" output.mp4
Platform Export Configs
YouTube (16:9)
ffmpeg -i input.mp4 \
-c:v libx264 -preset slow -crf 18 -pix_fmt yuv420p \
-c:a aac -b:a 192k -ar 48000 \
-movflags +faststart \
youtube_output.mp4
TikTok / Instagram Reels (9:16)
ffmpeg -i input_16x9.mp4 \
-filter_complex "[0:v]scale=1080:1920:force_original_aspect_ratio=decrease,pad=1080:1920:(ow-iw)/2:(oh-ih)/2:black[fg];[0:v]scale=1080:1920,boxblur=20:20[bg];[bg][fg]overlay=(W-w)/2:(H-h)/2" \
-c:v libx264 -preset fast -crf 23 -pix_fmt yuv420p \
-c:a aac -b:a 128k \
tiktok_output.mp4
npx remotion render src/index.ts Comp out/vertical.mp4 --width 1080 --height 1920
Instagram Square (1:1)
ffmpeg -i input_16x9.mp4 \
-vf "crop=ih:ih:(iw-ih)/2:0,scale=1080:1080" \
-c:v libx264 -crf 23 -pix_fmt yuv420p \
-c:a aac -b:a 128k \
square_output.mp4
Common FFmpeg Operations
Trim
ffmpeg -ss 00:00:05 -i input.mp4 -t 15 -c copy trimmed.mp4
ffmpeg -i input.mp4 -ss 00:00:05 -t 15 -c:v libx264 -crf 18 trimmed.mp4
Concatenate
echo "file 'scene1.mp4'" > list.txt
echo "file 'scene2.mp4'" >> list.txt
echo "file 'scene3.mp4'" >> list.txt
ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4
ffmpeg -f concat -safe 0 -i list.txt -c:v libx264 -crf 18 output.mp4
Add Background Music
ffmpeg -i video.mp4 -i music.mp3 \
-filter_complex "[1:a]volume=-24dB[music];[0:a][music]amix=inputs=2:duration=first" \
-c:v copy output.mp4
Speed Change
ffmpeg -i input.mp4 -vf "setpts=0.5*PTS" -af "atempo=2.0" fast.mp4
ffmpeg -i input.mp4 -vf "setpts=2.0*PTS" -af "atempo=0.5" slow.mp4
GIF Creation
ffmpeg -i input.mp4 -vf "fps=15,scale=480:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" output.gif
Quality Checklist (Post-Render)
Before publishing, verify:
Gotchas
- Always use
-pix_fmt yuv420p - some players can't handle other formats
- Always use
-movflags +faststart for web playback (moves metadata to file start)
- FFmpeg
-ss BEFORE -i = fast seek (keyframe). AFTER -i = accurate (slower)
aac codec needs -strict experimental on some FFmpeg versions
- Complex filter graphs: keep each step simple. Claude makes subtle errors in long chains
- Test on mobile FIRST - most video is watched on phones