Last active
August 29, 2015 13:56
-
-
Save davidpede/9273365 to your computer and use it in GitHub Desktop.
Commands for muxing Apple iOS compatible soft subtiles into MP4 files using mp4Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add subtitle track | |
-add "input.mp4" -add "english-subs.srt:hdlr=sbtl:group=2:layer=-1:lang=en:name=English" -new "output.mp4" | |
# Add multiple subtitle tracks | |
-add "input.mp4" -add "english-subs.srt:hdlr=sbtl:group=2:layer=-1:lang=en:name=English" -add "french-subs.srt:hdlr=sbtl:group=2:layer=-1:lang=fr:disabled:name=French" -new "output.mp4" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment