That command seems right. Make sure you are using the latest tools.Trees wrote: ↑Mon Mar 25, 2024 11:45 pmHas anyone figured out how to convert P5 MKVs to MP4? I've tried an FFMPEG command found here:Code: Select all
ffmpeg -i "S01E01.mkv" -map 0:v -map 0:a -map 0:s:0 -c:v copy -c:a copy -c:s mov_text -strict unofficial "S01E01.mp4"
Code: Select all
ffmpeg -i dv.mkv -map 0 -c copy -c:s mov_text -strict -2 dv.mp4
However, you could still try if other tools can recover it.
Code: Select all
ffmpeg -i dv.mkv -c copy dv.hevc
mp4box -add dv.hevc:dv-profile=5 -new dv.mp4
Code: Select all
ffmpeg -i dv.mkv -c copy dv.hevc
mp4muxer -i dv.hevc --dv-profile 5
As for -vbsf hevc_mp4toannexb, not sure if it's needed in mp4.