Hi, I have been trying to find a easy solution to converting a large number of flv videos to mp4. Actually I just want to change containers from flv to mp4 (will settle for mkv) I have found mymp4box and mkvtools but neither seem to support flv as input. I have tried SUPER just stream copy but is crashes every time. Any suggestions would really be appreciated!
Cheers,
-Gaiko
+ Reply to Thread
Results 1 to 3 of 3
-
-
you can do it with a batch script
1) place copy of ffmpeg.exe in same directory of videos
2) copy & paste the following into notepad, save it, rename extension to .bat from .txt
for %%a in ("*.flv") do ffmpeg -i %%a -vcodec copy -acodec copy %%~na.mp4
3) double click .bat file
Similar Threads
-
Batch mux flv to mkv?
By Pitorasilo in forum Video ConversionReplies: 13Last Post: 14th Apr 2012, 04:25 -
Quickest way to demux & mux audio tracks to MP4 containers?
By spycam in forum Video ConversionReplies: 3Last Post: 3rd Sep 2011, 01:32 -
Tool or command line to batch remux x264 acc .mp4 in .flv
By Gargalash in forum Video ConversionReplies: 6Last Post: 25th Aug 2010, 07:29 -
Trying to mux / demux
By GLE3 in forum Newbie / General discussionsReplies: 2Last Post: 18th Dec 2009, 12:07 -
Mux a FLV AVI + MP3 -> FLV with ffmpeg or mencoder?
By Colmino in forum Video ConversionReplies: 9Last Post: 29th Mar 2008, 22:11