Hello there! So I have an mp4 file with five audio tracks, it also has one VobSub subtitle (that I don't wanna lose) and chapters. I want to add one more audio (with a 22065 delay) and not lose any of the other audios not the VobSub subs. I tried making an MKV but this inevitably makes me lose the VobSub subs for some reason; now, I thought, well, I should merge the audio into the mp4 and that's about it, but I haven't found a way to intuitively do this. I found something called MP4box, but it's terminal and I do not know how to add delay or how to add the audio. Any help is appreciated, thank you.
+ Reply to Thread
Results 1 to 8 of 8
-
-
try with ffmpeg - ffmpeg -i captain-marvel-trailer.mp4 -i tamil.mp3 -i telugu.mp3 -i hindi.mp3 -map 1 -map 2 -map 3 -metadata
:a:0 language=eng -metadata
:a:1 language=tam -metadata
:a:2 language=tel -metadata
:a:3 language=hin -codec copy multilanguage.mp4
more info - https://stackoverflow.com/questions/70001130/ffmpeg-add-3-audio-streams-to-video -
Code:
ffmpeg -i captain-marvel-trailer.mp4 -i tamil.mp3 -i telugu.mp3 -i hindi.mp3 -map 1 -map 2 -map 3 -metadata:s:a:0 language=eng -metadata:s:a:1 language=tam -metadata:s:a:2 language=tel -metadata:s:a:3 language=hin -codec copy multilanguage.mp4
-
Thank you both, but that did not work (somehow, it muxed the same audio (the first one, inside the video), and erased all other tracks). Ultimately, after many tries, what ended up working was using My MP4Box GUI, demuxing all tracks (because it couldn't mux them from the mp4 itself!), and then muxing them all again with the new audio track I wanted to mux. Before that, I applied a 22065 delay to the new audio track with MeGUI, and, finally, we've got the files muxed, woo! Thanks for all the help, regardless. I'm not sure if it can be worked out with FFMPeg (can it mux VobSub?).
-
Use clever FFmpeg-GUI.
Load your mp4, click main, click multiplex, all source streams are already loaded, drag & drop the new audio file into the frame, insert 22065 in his delay field and click multiplex. Done. -
-
-
Similar Threads
-
Batch Script for mux mp4 to mkv using mkvmerge
By iKron in forum Newbie / General discussionsReplies: 4Last Post: 20th Jun 2022, 07:47 -
How to mux .ac-3 to .mp4 (audio)
By kalemvar1 in forum AudioReplies: 2Last Post: 8th Jun 2021, 13:17 -
mux srt subtitles/audio on an MP4 no reencoding (MP4Tools for Windows)?
By mrjayviper in forum Video ConversionReplies: 5Last Post: 7th Apr 2021, 17:06 -
Mux video w/subtitles into MP4 from Context Menu or Shortcut
By Chris Dukes in forum Video ConversionReplies: 1Last Post: 25th Nov 2020, 22:46 -
I need a free software with which I can mux a MP4 video with a MP3 audio
By Bovin in forum EditingReplies: 4Last Post: 29th Oct 2018, 07:06