I have the following files:
1. a jpeg image
2. an mp3 file of some length say (3 minutes)
I want to convert this to a .3gp video. How do I do it?
I've tried the following:
Created a video of zero length(time) using the jpeg image:
ffmpeg -f image2 -i temp_img.jpg temp_video.mpg
Then, I tried to mix the video and audio streams as:
ffmpeg -i temp_sound.mp3 -i temp_video.mpg -vcodec mpeg video_finale.mpg
On doing this I get: some error message like "Codec could not be determined(Video:0x000)"
Please help.
Thanks.