ffmpeg audio/video processing — transcode, extract, clip, merge, convert, analyze media files. Use when working with audio, video, or image sequences.
Process audio and video files — transcode formats, extract audio tracks, clip segments, merge files, generate thumbnails, analyze codecs.
*.mp4, *.mkv, *.mov, *.mp3, *.wav, *.m4a, *.flacffmpeg -i input.mov -c:v libx264 -crf 23 output.mp4ffmpeg -i video.mp4 -vn -acodec copy audio.m4affmpeg -i input.mp4 -ss 00:01:30 -to 00:02:45 -c copy clip.mp4ffmpeg -f concat -safe 0 -i list.txt -c copy merged.mp4ffmpeg -i video.mp4 -ss 00:00:05 -frames:v 1 thumb.jpgffprobe -v quiet -print_format json -show_format -show_streams input.mp4ffmpeg -i input.mp3 -af loudnorm output.mp3-c copy when format change is not needed (no re-encoding)