ffmpeg
Build correct FFmpeg commands for media-processing tasks by composing recipes from the references instead of recalling commands from memory. FFmpeg syntax is highly position-sensitive and easy to get subtly wrong, so prefer adapting a known-good command from these references over inventing one.
Workflow:
- Identify the task category (simple edit, audio processing, advanced filtering, asset generation, encoding tune-up).
- Open the matching reference file and pick the closest recipe.
- Adapt input paths, time ranges, dimensions, codecs, and filter parameters to the user's request.
- Before returning the command, walk through
references/glossary.mdto validate stream selectors,-map,-c copyuse, and seeking position. - If the user is running on macOS or Linux without a GPU, do not suggest
*_nvenc,*_qsv, or VAAPI encoders.
If doing partial work, load only the relevant reference files.
Core Instructions
- Always start commands with
-ywhen overwriting is acceptable; otherwise omit it so FFmpeg prompts before clobbering output. - Prefer
-c copy(stream copy / remux) when no filter, codec change, or precise trim is needed - it avoids re-encoding and is much faster. - Do not use
-c copywhen applying any video filter (scale,overlay,subtitles,trim,fade), mixing or modifying audio (amix,atempo,volume), burning subtitles, transcoding between codecs, or compressing. - For frame-accurate trimming, use output seeking (
-ssafter-i) without-c:v copy. Input seeking (-ssbefore-i) is fast but only seeks to the nearest keyframe and can produce black frames or off-by-seconds cuts. - For H.264 output, default to
-c:v libx264 -crf 18 -preset veryslow -movflags +faststart -pix_fmt yuv420punless the user specifies otherwise.yuv420pis required for QuickTime and most consumer players. - For H.265 (HEVC) output destined for Apple devices, add
-vtag hvc1so AirDrop and QuickTime accept the file. - Treat CRF as the primary quality knob: lower = higher quality, +6 roughly halves bitrate. Sane libx264 range is 17-28; 18 is "visually lossless"; libvpx-vp9 uses 15-35 with
-b:v 0for constant quality. - When chaining filters, prefer
-filter_complexonce you need named streams ([v0],[a1]), multiple inputs, or both audio and video manipulation. Use-vf/-affor single-stream filtering. - After
trim/atrim, always reset timestamps withsetpts=PTS-STARTPTS/asetpts=PTS-STARTPTS, otherwiseconcatand downstream filters break. - Use
-shortestwhen mixing inputs of different durations and the output should follow the shortest stream. Pair withduration=shortestinsideamixwhen both behaviors are needed. - For
pad,setsar=1:1should follow the resize/pad chain to lock pixel aspect ratio to 1:1 - omitting it can make the output appear stretched even when dimensions look correct. - Quote
-vfand-filter_complexarguments in single quotes (or escape commas inside expressions with\,) to avoid the shell or FFmpeg's expression parser swallowing characters. - When generating filenames programmatically, prefer extensions that match the codec (
.mp4for H.264/H.265,.webmfor VP9/Opus,.mkvwhen multiple subtitle tracks are needed,.movfor ProRes / Apple-flavored workflows). - If the user reports playback failures (black frames, audio drift, "file not supported"), check first for: missing
-pix_fmt yuv420p, missing+faststart, input seeking with-c copy, or wrong-vtagfor HEVC on Apple. - If the user already has a target file size, switch to two-pass ABR (
-b:v <rate>with-pass 1then-pass 2); CRF cannot enforce a size cap. - Verify metadata and stream layout with
ffprobe -show_streams -i <file>before debugging filter graphs - mismatched stream indices are the most common silent failure.
Output Format
When the user asks for a command, return:
- The full one-line FFmpeg command in a
shcode block, ready to paste. - A short bullet list explaining each non-trivial flag and filter.
- Any caveats: player compatibility, expected runtime cost, lossy steps, or known FFmpeg quirks linked from the relevant reference file.
Skip the explanation block only if the user explicitly asks for "command only".
When the user asks for a review of an existing command, organize findings as:
- Correctness - flags or filter ordering that will fail or produce wrong output.
- Quality - CRF, preset, color space, faststart, audio bitrate.
- Performance - unnecessary re-encodes, slow filter chains, missing hardware acceleration.
- Portability - codec/container mismatches, Apple HEVC tag, yuv420p for consumer playback.
Example output for a request like "compress this MP4 for the web, keep visual quality":
ffmpeg -i input.mp4 -c:v libx264 -crf 20 -preset veryslow -pix_fmt yuv420p -movflags +faststart -c:a aac -b:a 128k output.mp4
-crf 20keeps near-source quality while shrinking the file; drop to 18 for archival.-preset veryslowtrades encode time for ~20-30% smaller output at the same CRF.-pix_fmt yuv420pensures playback in Safari, QuickTime, and most browsers.+faststartmoves the moov atom to the front so the video starts playing before fully downloaded.-c:a aac -b:a 128kre-encodes audio at a transparent stereo bitrate.
End of example.
References
references/glossary.md- flag and filter syntax, stream selectors,-map,-c copyrules, input vs output seeking.references/simple-editing.md- format conversion (MP4/MKV/MOV/AVI), resize and pad, time-based trim.references/audio-processing.md- replace, extract, mix, crossfade, downsample, stereo-to-mono, format change.references/advanced-editing.md- playback speed, fps, jump cuts, social-media cropping, drawtext overlays, subtitles, watermarks, vstack, intro/outro assembly.references/asset-generation.md- image-to-video, slideshow with xfade, Ken Burns, GIFs, thumbnails, scene-change storyboards.references/encoding-and-tuning.md- daily-use template, libx264/libx265/libvpx-vp9, faststart, CRF guidance, seeking, GPU encoders, ffprobe.
Source
Recipes adapted from the Rendi FFmpeg cheatsheet. Sample URLs in the references point at storage.rendi.dev so commands can be run directly without local files.