写入udat name而非handler_name

This commit is contained in:
nilaoda 2022-08-23 14:41:24 +08:00
parent 561e2a6aa8
commit 17684cd78a
1 changed files with 1 additions and 4 deletions

View File

@ -177,10 +177,7 @@ namespace N_m3u8DL_RE.Util
command.Append($" -metadata:s:{i} language=\"{files[i].LangCode ?? "und"}\" "); command.Append($" -metadata:s:{i} language=\"{files[i].LangCode ?? "und"}\" ");
if (!string.IsNullOrEmpty(files[i].Description)) if (!string.IsNullOrEmpty(files[i].Description))
{ {
if(mp4) command.Append($" -metadata:s:{i} title=\"{files[i].Description}\" ");
command.Append($" -metadata:s:{i} handler_name=\"{files[i].Description}\" -metadata:s:{i} handler=\"{files[i].Description}\" ");
else
command.Append($" -metadata:s:{i} title=\"{files[i].Description}\" ");
} }
} }