如何在命令行上从 mkv 元数据中删除章节?ffpmeg 可以用于此吗?
答案1
只需将 -map_chapters -1 添加到您的命令中。
Single Audio:
ffmpeg -i video.mp4
-map 0:0 -c copy
-map 0:1 -c copy
-map_chapters -1
output.mp4
Dual Audio with Subtitles:
ffmpeg -i video.mp4
-map 0:0 -c copy
-map 0:m:language:eng -c copy
-map 0:m:language:jpn -c copy
-map_chapters -1
output.mp4
Use ffmpeg -i video.mp4 to get the language identifiers
and change/add as many as you need to keep.