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<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用以下载网页接口的会员内容");
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; } = "";