Creating video with audio and still image for YouTube
- by scottlabs
I'm running the following command:
ffmpeg -i audio.mp3 -ar 44100 -f image2 -i logo.jpg -r 15 -b 1800 -s 640x480 foo.mov
Which successfully outputs a video with my recorded audio and an image on it.
When I try and upload this to YouTube it fails to process, regardless of the formats I try: .mov, .avi, .flv, .mp4
Is there some setting I'm…