Skip to content

Commit

Permalink
Fix #606
Browse files Browse the repository at this point in the history
  • Loading branch information
nilaoda committed Jun 5, 2023
1 parent ecd6258 commit 4628c8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BBDown/CommandLineInvoker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal class CommandLineInvoker
private readonly static Option<bool> SkipCover = new(new string[] { "--skip-cover" }, "跳过封面下载");
private readonly static Option<bool> ForceHttp = new(new string[] { "--force-http" }, "下载音视频时强制使用HTTP协议替换HTTPS(默认开启)");
private readonly static Option<bool> DownloadDanmaku = new(new string[] { "--download-danmaku", "-dd" }, "下载弹幕");
private readonly static Option<bool> SkipAi = new(new string[] { "--skip-ai" }, description: "跳过AI字幕下载", getDefaultValue: () => true);
private readonly static Option<bool> SkipAi = new(new string[] { "--skip-ai" }, description: "跳过AI字幕下载");
private readonly static Option<bool> BandwithAscending = new(new string[] { "--bandwith-ascending" }, "比特率升序(最小体积优先)");
private readonly static Option<string> Language = new(new string[] { "--language" }, "设置混流的音频语言(代码), 如chi, jpn等");
private readonly static Option<string> Cookie = new(new string[] { "--cookie", "-c" }, "设置字符串cookie用以下载网页接口的会员内容");
Expand Down
2 changes: 1 addition & 1 deletion BBDown/MyOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ internal class MyOption
public bool SkipCover { get; set; }
public bool ForceHttp { get; set; } = true;
public bool DownloadDanmaku { get; set; } = false;
public bool SkipAi { get; set; } = false;
public bool SkipAi { get; set; } = true;
public bool BandwithAscending { get; set; } = false;
public string FilePattern { get; set; } = "";
public string MultiFilePattern { get; set; } = "";
Expand Down

0 comments on commit 4628c8b

Please sign in to comment.