This commit is contained in:
nilaoda 2023-06-28 22:49:06 +08:00
parent d58168a337
commit d930f10aff
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ namespace N_m3u8DL_RE.Util
if (mp4)
command.Append($" -strict unofficial -c:a copy -c:v copy -c:s mov_text "); //mp4不支持vtt/srt字幕必须转换格式
else
command.Append($" -strict unofficial -c copy -c:s {(srt ? "srt" : "webvtt")} ");
command.Append($" -strict unofficial -c:a copy -c:v copy -c:s {(srt ? "srt" : "webvtt")} ");
//CLEAN
command.Append(" -map_metadata -1 ");