Hi, I have a lot of .ts video files with their respective .aac audio files, I joined one with avidemux but since they are many, I wanted to know if there's a tool to automate in batchs
+ Reply to Thread
Results 1 to 5 of 5
-
-
Try ..
Code:for %%a in ("*.ts") do ffmpeg -i "%%~na.aac" -i "%%~na.ts" -acodec copy -vcodec copy "%%~na.muxer.ts" pause
責任者-MDX -
I'm not very skilled on the command line, but I made sure I had ffmpeg in the window's 10 enviroment path, I tested it running ffmpeg command, it works fine, when I run your command on the folder where I have the .ts and .aac files it gave me this back
Code:%%a was unexpected at this time.
Last edited by Danilux; 11th Apr 2020 at 21:16.
-
are you executing this directly in the command prompt or it's in a batch file?.. you have to create a batch file (eg. remux.bat)
or
if you run your code in command prompt you should use only one: % .. in all the names.責任者-MDX -
Similar Threads
-
MKVMERGE Batch Muxing multiple audio and subtitle tracks?
By jahob000 in forum Newbie / General discussionsReplies: 38Last Post: 30th May 2023, 20:13 -
Muxing two audio tracks from different sources with different fps
By xaz in forum Newbie / General discussionsReplies: 4Last Post: 12th Nov 2019, 09:37 -
Muxing a video with multiple video tracks/angles
By ZetaStax in forum Video ConversionReplies: 5Last Post: 6th Sep 2019, 19:04 -
batch Mkvmerge to select only the AC3 audio and ignore any AAC audio
By olpdog in forum EditingReplies: 3Last Post: 11th Aug 2019, 05:00 -
Batch muxing video files with subtitles
By calexicoca in forum SubtitleReplies: 4Last Post: 16th May 2015, 10:31