Skip to content

Instantly share code, notes, and snippets.

@elvis-epx
Created July 1, 2026 14:34
Show Gist options
  • Select an option

  • Save elvis-epx/2f7c47aa5ed4fd03fd5dc7a457404286 to your computer and use it in GitHub Desktop.

Select an option

Save elvis-epx/2f7c47aa5ed4fd03fd5dc7a457404286 to your computer and use it in GitHub Desktop.
Create a video from MP3 plus a still image
#!/bin/bash
ffmpeg -loop 1 -i turuna.jpg -i turuna.wav -c:v libx264 -tune stillimage \
-c:a aac -b:a 192k -vf "scale='iw-mod(iw,2)':'ih-mod(ih,2)',format=yuv420p" \
-shortest -movflags +faststart turuna.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment