Searched the forum, failed to find a solution.
I can make a video file (w/o audio) and convert it to flv.
If I make a video with both video+audio tracks, all converter programs fail for some reason (Riva, Super, Imtoo etc). Riva failed to convert every single video format I ever tried with it (and I tried them all).
Maybe something wrong with the video editor I use (AVS video editor)?
Anyway, I managed to merge video+audio with ffmpeg at my last video attempt. But today the same method doesn't work for me anymore for some reason. My command line is:
ffmpeg -i video.flv -i audio.mp3 -ab 160k -vb 160k output.flv
It fails. It says "0" is not recognized as internal or external command.
Any suggestions?
+ Reply to Thread
Results 1 to 5 of 5
-
-
This the way that's been working for me:
1) encode a video-only FLV1//VP62 .flv//.avi with mencoder//VirtualDub;
2) multiplex with ffmpeg:
---> ffmpeg -i input.flv -i input.mp3 -vcodec copy -acodec copy output.flv
or
---> ffmpeg -i input.avi -i input.mp3 -vcodec copy -acodec copy output.flv
HTH. -
Originally Posted by Soopafresh
ffmpeg -i video.flv -i audio.mp3 -vcodec copy -acodec copy -vn output.flv
Originally Posted by Midzuki
I don't understand where to get mencoder, this page http://www.mplayerhq.hu/design7/dload.html has a milelong list of downloadable files none of which mentions mencoder. I downloaded VirtualDub 1.78 for AMD64 (which I have) and I can't run either of exe files - it says it's not a Win32 application. -
I have the version SVN-r11870 of ffmpeg over here,
and it's been running without major bugs so far
As for downloading MPlayer and MEncoder, try this URL:
http://tirnanog.fate.jp/mirror/mplayer/
Hope it works ^.^;;
Similar Threads
-
Merge multiple audio tracks from different files into 1 video file - sync
By heinza in forum Newbie / General discussionsReplies: 2Last Post: 11th Jan 2012, 03:29 -
Video with L/R tracks to DVD with 2 channel audio tracks
By Downloader in forum Authoring (DVD)Replies: 2Last Post: 22nd Aug 2010, 01:56 -
Merge 2 FLV video files side by side
By zsuppguy in forum Newbie / General discussionsReplies: 3Last Post: 7th Jan 2010, 16:58 -
How to merge audio file(mp3) and a video file (flv)
By suresh3484 in forum Video Streaming DownloadingReplies: 0Last Post: 20th May 2008, 00:15 -
QT movie with 2 video tracks to FLV with mencoder or ffmpeg
By bluehz in forum Video ConversionReplies: 0Last Post: 26th Mar 2008, 15:39