I have VOB files from a DVD, which have three audio tracks. I want to convert the VOB files to MP4 or MKV and combine them into one video file... this is not a problem. However, I want to remove one of the three audio tracks and change the order of the other two. I am sure I have done this in the padt, but I can't remember how. I have tried numerous Windows apss and can't figure out how to do it. Can anyone recommend the best app to easily accomplish this, preferably without using command line commands? Thanks!
+ Reply to Thread
Results 1 to 6 of 6
-
-
Makemkv or mkvtoolnix
SONY 75" Full array 200Hz LED TV, Yamaha A1070 amp, Zidoo UHD3000, BeyonWiz PVR V2 (Enigma2 clone), Chromecast, Windows 11 Professional, QNAP NAS TS851 -
You can do all of them with clever FFmpeg-GUI.
For removing and reordering the audio streams, I'll give you a tutorial:
Load your video with the 3 audio streams, click main, click multiplex and you will see the monentane arrangement of the streams.
In my example the first audio stream is AC3 French, the second TrueHD English and the third AC3 English.
[Attachment 67305 - Click to enlarge]
If you now want to remove TrueHD, for example, and the first audio stream should be English and the second French, then click Add Stream and load your video a second time.
Remove all selected streams (click the box above Set) and then select the video stream first, then the English AC3 stream and finally the French AC3 stream.
[Attachment 67306 - Click to enlarge]
Now click on Multiplex.
Done. -
Order:
ffmpeg -i source.mpg -map 0:0 -map 0:2 -map 0:1 -c copy out.mp4 (or -c copy out.mpg)
Set default audio track:
https://askubuntu.com/questions/1329432/how-to-change-default-audio-track-using-ffmpeg
(MPC-BE ignores default flag, always plays first)Last edited by rgr; 25th Oct 2022 at 07:12.
Similar Threads
-
Syncing an audio track with comparing two audio tracks of another language
By Ninelpienel in forum AudioReplies: 5Last Post: 24th May 2022, 18:39 -
ffmpeg not copying both audio tracks
By the_steve_randolph in forum Newbie / General discussionsReplies: 1Last Post: 11th Jul 2021, 12:09 -
How to list of Audio Tracks
By piknockyou in forum AudioReplies: 6Last Post: 21st May 2021, 01:03 -
Syncing Audio Tracks from DVD
By max_cady in forum AudioReplies: 0Last Post: 11th Jul 2019, 16:12 -
Avidemux doesn't keep both audio tracks
By Reading Bug in forum Video ConversionReplies: 1Last Post: 7th Mar 2019, 13:46