Video Commands
Cut, crop, resize, and transform video with FFmpeg. Learn to trim clips, add watermarks, change resolution, adjust framerate, and apply filters — all without a GUI.
12 commands
Pro Tips
Trim without re-encoding: 'ffmpeg -ss 00:01:00 -to 00:02:00 -i input.mp4 -c copy output.mp4' — put -ss before -i for fast seeking.
Create a GIF: 'ffmpeg -i input.mp4 -vf "fps=10,scale=320:-1" output.gif' — adjust fps and scale for size.
Use '-vf scale=1920:1080:force_original_aspect_ratio=decrease' to resize while keeping aspect ratio.
Common Mistakes
Cutting with '-c copy' may have inaccurate start times because it can only cut on keyframes. Re-encode for frame-accurate cuts.
Processing large video files uses significant disk space for temp files. Ensure you have enough free space.