Mp4 videos subtitles are not 'generally' supported for soft subtitles but many people use them with subs none the less. I tried adding an additional subtitle to an mp4 that already contained 2 and could not get MP4box to work in any way without the GUI so I resorted to my standby FFMpeg and found a method that seems to work even when converting from MKV<->MP4.
First MP4 to MP4. This has 1 video, 1 audio and 1 existing dvdsub subtitles:
Resulting code
Code:ffmpeg -i "C:\Users\Bud\Desktop\Various test Formats\[dp]Manjandani-1.mp4" -i "C:\Users\Bud\Desktop\Various test Formats\[dp]Manjandani-1.srt" -c:v:0 copy -c:a:0 copy -c:s:0 copy -c:s:1 mov_text -metadata:s:s:1 language=eng -map 0:0 -map 0:1 -map 0:2 -map 1:0 -y "C:\Users\Bud\Desktop\Various test Formats\[dp]Manjandani-1_1.mp4"
Next MKV to MKV that has 1 video, 1 audio, and 2 ASS subtitles:
Resuklting code:
Code:ffmpeg -i "C:\Users\Bud\Desktop\Iron Man.mkv" -i "C:\Users\Bud\Desktop\Various test Formats\[dp]Manjandani-1.srt" -c:v:0 copy -c:a:0 copy -c:s:0 copy -c:s:1 copy -c:s:2 srt -metadata:s:s:2 language=eng -map 0:0 -map 0:1 -map 0:2 -map 0:3 -map 1:0 -y "C:\Users\Bud\Desktop\Iron Man_3.mkv"
Notice the only difference is MKV allows the actual subtitle form to be used (srt, ssa, ass) but mp4 only allows mov_text. Hopefully this helps anyone who wishes to add subtitles even though MP4 they are not the best vehicles for soft subs.
+ Reply to Thread
Results 1 to 1 of 1
Similar Threads
-
How to add Sup subtitles to MP4 File?
By Shlomi in forum SubtitleReplies: 12Last Post: 28th Jul 2015, 23:22 -
How to rip multiple audio tracks and multiple subtitles into a MP4 file
By Jakob Olsen in forum DVD RippingReplies: 6Last Post: 17th Jan 2014, 12:32 -
How to add subtitles to multiple episode TV DVD
By MikeBintouch in forum MacReplies: 1Last Post: 12th Jan 2014, 04:25 -
How to fast add 2nd track (mp3) to x264.hdtv.mp4?
By wacus in forum Newbie / General discussionsReplies: 2Last Post: 15th May 2012, 07:05 -
how to add subtitles in mp4 movie
By d2idan in forum Video ConversionReplies: 33Last Post: 6th Feb 2011, 23:56