Hello. I have about 100 "avi" files on my computer and need to change container of them to "mp4". How to do it fast? I use MP4Box for single files but what about 100 files at the same time? Is there and application I can add files to queue, start muxing them, back later and have them ready?
+ Reply to Thread
Results 1 to 4 of 4
-
-
"Pass Thru" presets for WinFF ---> https://forum.videohelp.com/threads/343895-Pass-Thru-presets-for-WinFF
-
You could also call MP4Box or ffmpeg from a batch file. I don't know the syntax for Mp4Box, but using ffmpeg:
Put that in a file named AVI2MP4.BAT in the same folder as your AVI files. Then double click on it. Each AVI will be remuxed into an MP4. The original AVI files will be left intact. Beware that not all AVI codecs are compatible with MP4. So don't delete your AVI files until you've verified the MP4 play properly.Code:for %%f in (*.avi) do "C:\Program Files\ffmpeg\bin\ffmpeg.exe" -i "%%~nf.AVI" -vcodec copy -acodec copy "%%~nf.mp4"
Last edited by jagabo; 30th Jul 2012 at 14:06.
Similar Threads
-
Container only: AVI > MP4 issue
By leandro in forum Video ConversionReplies: 2Last Post: 11th Jul 2012, 14:35 -
need to put content of FLV container into MP4 container
By arraboy in forum Newbie / General discussionsReplies: 3Last Post: 29th Jun 2012, 20:52 -
Can flac or .ass files be muxed into a MP4 container?
By Cyber Akuma in forum Newbie / General discussionsReplies: 5Last Post: 29th Oct 2010, 15:47 -
Changing mp4 container to avi
By 24fps in forum Video ConversionReplies: 3Last Post: 27th Jun 2010, 08:24 -
change an MKV container to AVI container???
By Spdngblt56 in forum Newbie / General discussionsReplies: 10Last Post: 17th May 2010, 22:23


Quote
