I would like to know if there is a way to batch mux files with ffmpeg. I know how to batch convert video files using ffmpeg, by
which correctly converts multiple files.for %%a in ("*.avi") do ffmpeg -i "%%a" -video_parameters "%%~na.mp4"
I need to mux several audio files, basiclly 2 audio files into one audio file, and that process repeated several times.
I know it can be done, but need help in getting this done.
Thanks.![]()
+ Reply to Thread
Results 1 to 2 of 2
-
-
Not sure exactly what you wish to do. Need more info.
2 audio tracks, different languages.
Just audio muxed or added to an mp4 (avi, mkv, etc.)
overlay the same track. Not sure why.
for %%a in ("*.mp3") do ffmpeg -i "%%a" -i "%%a" "%%~na-new.mp3"Last edited by pcspeak; 3rd Jul 2012 at 08:07.
Similar Threads
-
MP4Box command to batch MUX MP4s
By jd185051 in forum Newbie / General discussionsReplies: 5Last Post: 2nd Apr 2017, 10:43 -
Batch mux flv to mkv?
By Pitorasilo in forum Video ConversionReplies: 13Last Post: 14th Apr 2012, 04:25 -
All-in-one Batch demux FLV -> mux mp4?
By gaikokujinkyofusho in forum Video ConversionReplies: 2Last Post: 19th Jan 2011, 23:34 -
Batch re-mux .mkv to DiVX w subs
By nbarzgar in forum EditingReplies: 6Last Post: 3rd Jun 2009, 06:18 -
Mux mpeg2 using ffmpeg
By juhani in forum EditingReplies: 9Last Post: 30th Sep 2008, 07:24