Skip to content

Instantly share code, notes, and snippets.

@nhan000
nhan000 / mp3-to-mp4-with-still-image.sh
Created December 26, 2022 00:49 — forked from jbuchbinder/mp3-to-mp4-with-still-image.sh
Convert mp3 audio with still image to mp4 video
ffmpeg -loop 1 -framerate 2 -i input.png -i audio.m4a -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p output.mp4