Created
July 1, 2026 14:34
-
-
Save elvis-epx/2f7c47aa5ed4fd03fd5dc7a457404286 to your computer and use it in GitHub Desktop.
Create a video from MP3 plus a still image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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