Skip to content

Commit

Permalink
适配新版本mp4box的verbose命令 (#957)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda authored Nov 24, 2024
1 parent 4b579de commit 5423f19
Show file tree
Hide file tree
Showing 4 changed files 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 @@ -90,7 +90,7 @@ private static int MuxByMp4box(string videoPath, string audioPath, string outPat
}

//----分析完毕
var arguments = (Config.DEBUG_LOG ? " -verbose " : "") + inputArg.ToString() + (metaArg.ToString() == "" ? "" : " -itags tool=" + metaArg.ToString()) + $" -new -- \"{outPath}\"";
var arguments = (Config.DEBUG_LOG ? " -v " : "") + inputArg + (metaArg.ToString() == "" ? "" : " -itags tool=" + metaArg.ToString()) + $" -new -- \"{outPath}\"";
LogDebug("mp4box命令: {0}", arguments);
return RunExe(MP4BOX, arguments, MP4BOX != "mp4box");
}
Expand Down
Binary file removed Binary/aria2c.exe
Binary file not shown.
Binary file removed Binary/mp4box.exe
Binary file not shown.
Empty file.

0 comments on commit 5423f19

Please sign in to comment.