Skip to content

Commit

Permalink
Fix mp4box as well
Browse files Browse the repository at this point in the history
  • Loading branch information
myd7349 committed Apr 2, 2023
1 parent 7b955fa commit 29f425c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BBDown/BBDownMuxer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static int MuxByMp4box(string videoPath, string audioPath, string outPath
}

//----分析完毕
var arguments = inputArg.ToString() + (metaArg.ToString() == "" ? "" : " -itags tool=" + metaArg.ToString()) + $" -new \"{outPath}\"";
var arguments = inputArg.ToString() + (metaArg.ToString() == "" ? "" : " -itags tool=" + metaArg.ToString()) + $" -new -- \"{outPath}\"";
LogDebug("mp4box命令:{0}", arguments);
return RunExe(MP4BOX, arguments, MP4BOX != "mp4box");
}
Expand Down

0 comments on commit 29f425c

Please sign in to comment.