How to create a video file from a single image and audio track using avconv:
1 2 3 4 |
avconv -loop 1 -i IMAGE.jpg \ -i AUDIO.wav \ -c:v libx264 -tune stillimage -pix_fmt yuv420p -s 854x480 \ -c:a aac -strict experimental -b:a 192k -shortest OUTPUT.mp4 |
Thanks to a question/recipe from SuperUser:
superuser.com/questions/571100/avconv-video-from-single-jpg-and-ogg