From 4628c8b5230c7316c9824a9b70a27f28f18d66c9 Mon Sep 17 00:00:00 2001 From: nilaoda Date: Mon, 5 Jun 2023 11:55:34 +0800 Subject: [PATCH] Fix #606 --- BBDown/CommandLineInvoker.cs | 2 +- BBDown/MyOption.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BBDown/CommandLineInvoker.cs b/BBDown/CommandLineInvoker.cs index 355c8e50d..3559ba5a8 100644 --- a/BBDown/CommandLineInvoker.cs +++ b/BBDown/CommandLineInvoker.cs @@ -37,7 +37,7 @@ internal class CommandLineInvoker private readonly static Option SkipCover = new(new string[] { "--skip-cover" }, "跳过封面下载"); private readonly static Option ForceHttp = new(new string[] { "--force-http" }, "下载音视频时强制使用HTTP协议替换HTTPS(默认开启)"); private readonly static Option DownloadDanmaku = new(new string[] { "--download-danmaku", "-dd" }, "下载弹幕"); - private readonly static Option SkipAi = new(new string[] { "--skip-ai" }, description: "跳过AI字幕下载", getDefaultValue: () => true); + private readonly static Option SkipAi = new(new string[] { "--skip-ai" }, description: "跳过AI字幕下载"); private readonly static Option BandwithAscending = new(new string[] { "--bandwith-ascending" }, "比特率升序(最小体积优先)"); private readonly static Option Language = new(new string[] { "--language" }, "设置混流的音频语言(代码), 如chi, jpn等"); private readonly static Option Cookie = new(new string[] { "--cookie", "-c" }, "设置字符串cookie用以下载网页接口的会员内容"); diff --git a/BBDown/MyOption.cs b/BBDown/MyOption.cs index 4f4765803..2edb88dfc 100644 --- a/BBDown/MyOption.cs +++ b/BBDown/MyOption.cs @@ -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; } = "";