Monday 9 October 2017

Join Audio and Image -> Output as Video using FFmpeg


I have 1 image (jpg) and 1 audio file (MP3) and I would like to output this as a video file (say AVI for example).


Does anyone know how to use FFMPEG to join the two? I'd like to show the image for the duration of the audio.


Any ideas anyone?



Answer



If you are in Windows, You can do it in Windows Movie maker too ... if you need instructions please leave a comment


For FFmpeg use this


ffmpeg -loop_input -vframes 14490 -i imagine.jpg -i audio.mp3 -y -r 30 
-b 2500k -acodec ac3 -ab 384k -vcodec mpeg4 result.mp4



  • vframes 14490 is the number of frames that should be looped in order to have a continuous image for the entire audio.mp3 file


    Ex: For 8 minutes and 3 seconds ((8m x 60s + 3s) x 30fps = 14490 vf)




Resource from here


No comments:

Post a Comment

Where does Skype save my contact's avatars in Linux?

I'm using Skype on Linux. Where can I find images cached by skype of my contact's avatars? Answer I wanted to get those Skype avat...