Reputation: 1110
really struggling with ffmpeg at the moment, after a few days of messing about with it i have managed to get it to almost do what i want!
I have an audio track and a series of images that are to be converted into a slideshow displaying each image for 5 seconds.
ffmpeg -r 1/5 -i C:\ffmpeg\image-%02d.bmp -i C:\ffmpeg\music.mp3 -qscale:v 2 -shortest -codec:a copy C:\ffmpeg\output.flv
I can get this to work as a flv but not as any other format. I need to have it in either an mp4, avi, wmv, or mov format.
I can convert this to a wmv but the file size is HUGE (about 100meg/min)!
ffmpeg -i C:\ffmpeg\output.flv -vcodec wmv1 -acodec adpcm_ima_wav C:\ffmpeg\output.wmv
Can anyone please help me either
Upvotes: 0
Views: 407
Reputation: 1
I see no issues here
ffmpeg -r 1/5 -i %02d.bmp -i 1_Les_Nuits.mp3 -qscale:v 2 -shortest -codec:a copy output.mp4
Upvotes: 0