Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

增加自定义 ffmpeg metadata #801

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update CommandLineInvoker.cs
  • Loading branch information
Ayouuuu authored Dec 13, 2023
commit c7773b8e5a07e359fd1a01457f3c785afd2bad75
2 changes: 1 addition & 1 deletion BBDown/CommandLineInvoker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ internal class CommandLineInvoker
private readonly static Option<string> UposHost = new(new string[] { "--upos-host" }, "自定义upos服务器");
private readonly static Option<bool> ForceReplaceHost = new(new string[] { "--force-replace-host" }, "强制替换下载服务器host(默认开启)");
private readonly static Option<bool> SaveArchivesToFile = new(new string[] { "--save-archives-to-file" }, "将下载过的视频记录到本地文件中, 用于后续跳过下载同个视频");
private readonly static Option<string> FfmpegMetadata = new(new string[] { "--ffmpeg-metadata","-fdata" }, "自定义ffmepg当中的metadata数据: (-fdata title=标题,album=专辑,description=简介)");
private readonly static Option<string> FfmpegMetadata = new(new string[] { "--ffmpeg-metadata","-fdata" }, "自定义ffmepg当中的metadata数据: (-fdata artist=\"作者\",title=\"标题\",album=\"专辑\",description=\"简介\")");
private readonly static Option<string> DelayPerPage = new(new string[] { "--delay-per-page" }, "设置下载合集分P之间的下载间隔时间(单位: 秒, 默认无间隔)");
private readonly static Option<string> FilePattern = new(new string[] { "--file-pattern", "-F" },
$"使用内置变量自定义单P存储文件名:\r\n\r\n" +
Expand Down