Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yisraeldov/fe18b7606c82f1ff278cc982aa2e3326 to your computer and use it in GitHub Desktop.
Save yisraeldov/fe18b7606c82f1ff278cc982aa2e3326 to your computer and use it in GitHub Desktop.
FFMPEG make movie with waveform over static image.
ffmpeg -i <mp3>.mp3 -loop 1 -framerate 30 -i <png>.png -filter_complex "[a:0]showwaves=mode=p2p:r=30:size=465x353:,format=rgba,colorkey=black,colorchannelmixer=rr=0.003:gg=0.435:bb=0.133[fg];[1:v][fg]overlay=shortest=1,format=yuv420p,scale=852:-1,crop=iw:480[vid]" -map "[vid]" -map 0:a -c:a copy -shortest -c:v libx264 -preset fast -crf 32 /tmp/test.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment