| User review:
|
Hello, good work, hope you are well.
I am using clever FFmpeg GUI with much love and appreciation.
I have a request from you.
I reassemble my videos to mp4 with ffmpeg for playback on my iPhone.
My videos are h265+eac3+subs (multiple audios and subtitles)
Here is the full command line I use:
.ffmpeg.exe -i “C:UsersneptuDesktopVideo0.mp4” -map 0:v -c:v copy -map 0:a -c:a copy -map 0:s? -c:s mov_text -tag:v hvc1 -disposition 0 -movflags +faststart -brand mp42 “C:UsersneptuDesktopVideo1.mp4”
Special codes for my Apple device:
-tag:v hvc1 (Player won't play the video without this)
-disposition 0 (Prevents multiple audio and subtitle tracks from being default. Otherwise audio tracks are played at the same time).
-movflags +faststart (For fast startup and scanning)
I wish you add a bit multiplex option that includes these features. Or an extra check box for mp4 mux.
|