ffmpuzzle
Puzzle #27 · Standard · 5 params

H.264 · Bitrate 1M · 480p · AAC · TS

The scenario

Digital signage for a fast-food menu board over coax. H.264 at 480p/1 Mbps because the BrightSign player has a 2 Mbps total bandwidth limit, MPEG-TS for the multicast UDP delivery, AAC for the background music track.

The answer

Video CodecH.264
Bitrate1M
Resolution480p
AudioAAC
ContainerTS

The command

ffmpeg -i input.mp4 -c:v libx264 -b:v 1M -vf scale=-2:480 -c:a aac -b:a 64k -f mpegts output.ts

Why

Digital signage is a surprisingly large market ($30B+). Most menu boards run BrightSign or similar ARM-based players that only decode H.264 Baseline profile. Sending H.265 to these devices results in a black screen with no error message.

Play

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

$ play today's puzzle

← all puzzles