-
Notifications
You must be signed in to change notification settings - Fork 584
Description
Hello,
I'm not sure if it's the right place to ask this but i found no other way so here i am.
I usually dump the content of a mp4 using this command :
Mp4Box.exe -dump-cover -dump-chap-ogg -raw * input_file.mp4
Only problem i have with this is that the subtitles are extracted in a .tx3g format and i would like to get them out in .srt format ( they are originaly .srt in the input_file.mp4 ) , if using the command line :
Mp4Box.exe -srt 3 input_file.mp4
i can get them out after i indicate the TrackID 3 where the subtitle is placed.
What i would like to know is if it's possible to accomplish all this in a single step, without having to indicate the track numbers for the subtitles files, i tried to add a wildcard for the srt track like -srt * but this doesn't seems to work sadly.
The goal is to input a mp4 and dump all content, cover, chapters in ogg format, subtitles in .srt format + all audio and video tracks, without having to indicate any track numbers like the -raw * command allows it, maybe i am missing something but for now i did not found a way to do this in a single command.
Thank you very much in advance.