ffmpeg -i input.mp4 -avoid_negative_ts make_zero -c:v copy -c:a copy output.mp4 在这个示例中: -i input.mp4 指定输入文件。 -avoid_negative_ts make_zero 指定当遇到负时间戳时,将其调整为零。 -c:v copy 和-c:a copy 分别表示复制视频和音频流,不进行重新编码。 output.mp4 是输出文件的...
From #2031 (reply in thread) Change that setting automatically, e.g. when Merge is selected, default to make_non_zero; when the mode is changed again, revert to the previous value, be it auto or whatever the user selected. This would sav...