Convert Commands
Convert between media formats with FFmpeg — the Swiss Army knife of audio and video processing. From MP4 to WebM, MKV to GIF, FFmpeg handles virtually every format and codec combination.
8 commands
Pro Tips
Use 'ffmpeg -i input.mov -c:v libx264 -crf 23 output.mp4' for high-quality H.264 encoding. Lower CRF = better quality.
Add '-c copy' to remux without re-encoding — instant conversion when only changing the container format.
Use '-preset ultrafast' for quick test encodes, then '-preset slow' for final production quality.
Common Mistakes
FFmpeg overwrites output files without warning by default. Use '-n' to never overwrite or '-y' to always overwrite.
Re-encoding always loses some quality. Use '-c copy' when you only need to change the container format.