I have a bunch of files with:
0:0 Video
0:1 Audio
0:2 Sub1
0:3 Sub2
I want to change the track order of sub 2 and 3 so that it becomes
0:0 Video
0:1 Audio
0:2 Sub2
0:3 Sub1
I have a functioning batch script
–audio-tracks 1 ^
–subtitle-tracks 2,3 ^
–default-track 1 ^
–default-track 3 ^
That will create a new file with all the tracks.
Likewise, using the GUI program to create a command ending in
–track-order 0:0,0:1,0:3,0:2
Will successfully change the order.
However, applying that command to the previous batch
–audio-tracks 1 ^
–subtitle-tracks 2,3 ^
–default-track 1 ^
–default-track 3 ^
–track-order 0:0,0:1,0:3,0:2
Gives me
Error: No source files were given.
How do I make the batch file change the track order?