ffmpuzzle
Puzzle #11 · Standard · 5 params

H.264 · CRF 23 · 720p · MP3 · MP4

The scenario

Conference recording for a corporate LMS (Learning Management System). H.264 for maximum device compatibility, 720p to keep file sizes manageable, MP3 audio because the legacy LMS only supports MP3 in MP4 containers.

The answer

Video CodecH.264
CRF23
Resolution720p
AudioMP3
ContainerMP4

The command

ffmpeg -i input.mov -c:v libx264 -crf 23 -vf scale=-2:720 -c:a libmp3lame -b:a 192k output.mp4

Why

MP3 in MP4 is technically valid per ISO 14496-3 but rarely used. Some ancient enterprise LMS platforms from the 2010s hardcoded MP3 support and never updated. It works, but it makes video engineers twitch.

Play

A new FFmpeg encoding puzzle every day. Six tries, in the browser or from your terminal.

$ play today's puzzle

← all puzzles