[FFmpeg-user] The audio does not get replaced when merging flv with wav

2014-09-10 Thread gfmonk
I have two flv videos, both of them have an audio track. I have two seperate .wav files. I can replace the audio on the first flv file with either of the wav files, but I cannot replace the audio on the second flv with either audio. The command line is... ffmpeg -i video2.flv -i audio2.wav

Re: [FFmpeg-user] No sound after converting a flv to an mp4

2014-09-09 Thread gfmonk
Here is a sample input flv. Thanks. in.flv http://ffmpeg-users.933282.n4.nabble.com/file/n4667255/in.flv -- View this message in context: http://ffmpeg-users.933282.n4.nabble.com/No-sound-after-converting-a-flv-to-an-mp4-tp4667249p4667255.html Sent from the FFmpeg-users mailing list archive

Re: [FFmpeg-user] No sound after converting a flv to an mp4

2014-09-09 Thread gfmonk
It looks like I have a problem with the flv's and not ffmpeg. Thanks -- View this message in context: http://ffmpeg-users.933282.n4.nabble.com/No-sound-after-converting-a-flv-to-an-mp4-tp4667249p4667261.html Sent from the FFmpeg-users mailing list archive at Nabble.com.

[FFmpeg-user] No sound after converting a flv to an mp4

2014-09-08 Thread gfmonk
I am trying to convert .flv files to mp4 files. In some cases I get the sound but in most I do not. I have tried different command line options based some other posts on the internet, but none of them have worked. My command line is... ffmpeg -i in.flv -ar 22050 -c:v libx264 -strict -2 -c:a aac

[FFmpeg-user] When merging an image with audio the resulting mp4 has a black screen

2014-09-02 Thread gfmonk
I am in the process of converting an existing application to the latest version of ffmpeg. When I merge an jpg and wav file to create an mp4 I get a black screen. The command line is... ffmpeg -loop 1 -y -i image3.jpg -i audio2.wav -vf scale=400:300 -acodec libvo_aacenc -vcodec libx264 -shortest