Skip to content

Commit 766fc41

Browse files
committed
v1.5.5
1 parent c217f84 commit 766fc41

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

BBDown/CommandLineInvoker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ internal class CommandLineInvoker
4848
private readonly static Option<string> Aria2cPath = new(new string[] { "--aria2c-path" }, "设置aria2c的路径");
4949
private readonly static Option<string> UposHost = new(new string[] { "--upos-host" }, "自定义upos服务器");
5050
private readonly static Option<string> DelayPerPage = new(new string[] { "--delay-per-page" }, "设置下载合集分P之间的下载间隔时间(单位: 秒, 默认无间隔)");
51-
private readonly static Option<string> FilePattern = new(new string[] { "--file-pattern", "-F" }, $"使用内置变量自定义单P存储文件名:\r\n\r\n" + $"<videoTitle>: 视频主标题\r\n" + $"<pageNumber>: 视频分P序号\r\n" + $"<pageNumberWithZero>: 视频分P序号(前缀补零)\r\n" + $"<pageTitle>: 视频分P标题\r\n" + $"<aid>: 视频aid\r\n" + $"<cid>: 视频cid\r\n" + $"<dfn>: 视频清晰度\r\n" + $"<res>: 视频分辨率\r\n" + $"<fps>: 视频帧率\r\n" + $"<videoCodecs>: 视频编码\r\n" + $"<videoBandwidth>: 视频码率\r\n" + $"<audioCodecs>: 音频编码\r\n" + $"<audioBandwidth>: 音频码率\r\n" + $"<ownerName>: 上传者名称\r\n" + $"<ownerMid>: 上传者mid\r\n\r\n" + $"默认为: {Program.SinglePageDefaultSavePath}\r\n");
51+
private readonly static Option<string> FilePattern = new(new string[] { "--file-pattern", "-F" }, $"使用内置变量自定义单P存储文件名:\r\n\r\n" + $"<videoTitle>: 视频主标题\r\n" + $"<pageNumber>: 视频分P序号\r\n" + $"<pageNumberWithZero>: 视频分P序号(前缀补零)\r\n" + $"<pageTitle>: 视频分P标题\r\n" + $"<aid>: 视频aid\r\n" + $"<cid>: 视频cid\r\n" + $"<dfn>: 视频清晰度\r\n" + $"<res>: 视频分辨率\r\n" + $"<fps>: 视频帧率\r\n" + $"<videoCodecs>: 视频编码\r\n" + $"<videoBandwidth>: 视频码率\r\n" + $"<audioCodecs>: 音频编码\r\n" + $"<audioBandwidth>: 音频码率\r\n" + $"<ownerName>: 上传者名称\r\n" + $"<ownerMid>: 上传者mid\r\n" + $"<apiType>: API类型(TV/APP/INTL/WEB)\r\n\r\n" + $"默认为: {Program.SinglePageDefaultSavePath}\r\n");
5252
private readonly static Option<string> MultiFilePattern = new(new string[] { "--multi-file-pattern", "-M" }, $"使用内置变量自定义多P存储文件名:\r\n\r\n" + $"默认为: {Program.MultiPageDefaultSavePath}\r\n");
5353
private readonly static Option<string> Host = new(new string[] { "--host" }, "指定BiliPlus host(使用BiliPlus需要access_token, 不需要cookie, 解析服务器能够获取你账号的大部分权限!)");
5454
private readonly static Option<string> EpHost = new(new string[] { "--ep-host" }, "指定BiliPlus EP host(用于代理api.bilibili.com/pgc/view/web/season, 大部分解析服务器不支持代理该接口)");

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Arguments:
3737
Options:
3838
-tv, --use-tv-api 使用TV端解析模式
3939
-app, --use-app-api 使用APP端解析模式
40-
-intl, --use-intl-api 使用国际版解析模式
40+
-intl, --use-intl-api 使用国际版(东南亚视频)解析模式
4141
--use-mp4box 使用MP4Box来混流
4242
--encoding-priority <encoding-priority> 视频编码的选择优先级, 用逗号分割 例: "hevc,av1,avc"
4343
--dfn-priority <dfn-priority> 画质优先级,用逗号分隔 例: "8K 超高清, 1080P 高码率, HDR 真彩, 杜比视界"
@@ -49,7 +49,9 @@ Options:
4949
-mt, --multi-thread 使用多线程下载(默认开启)
5050
--video-only 仅下载视频
5151
--audio-only 仅下载音频
52+
--danmaku-only 仅下载弹幕
5253
--sub-only 仅下载字幕
54+
--cover-only 仅下载封面
5355
--debug 输出调试日志
5456
--skip-mux 跳过混流步骤
5557
--skip-subtitle 跳过字幕下载
@@ -75,6 +77,7 @@ Options:
7577
<audioBandwidth>: 音频码率
7678
<ownerName>: 上传者名称
7779
<ownerMid>: 上传者mid
80+
<apiType>: API类型(TV/APP/INTL/WEB)
7881
7982
默认为: <videoTitle>
8083
-M, --multi-file-pattern <multi-file-pattern> 使用内置变量自定义多P存储文件名:
@@ -89,10 +92,13 @@ Options:
8992
--ffmpeg-path <ffmpeg-path> 设置ffmpeg的路径
9093
--mp4box-path <mp4box-path> 设置mp4box的路径
9194
--aria2c-path <aria2c-path> 设置aria2c的路径
95+
--upos-host <upos-host> 自定义upos服务器
9296
--delay-per-page <delay-per-page> 设置下载合集分P之间的下载间隔时间(单位: 秒, 默认无间隔)
93-
--host <host> 指定BiliPlus host(解析服务器能够获取你账号的大部分权限!)
94-
--ep-host <ep-host> 指定BiliPlus EP host
95-
--area <area> 指定BiliPlus area 例: hk(使用BiliPlus需要access_token, 不需要cookie)
97+
--host <host> 指定BiliPlus host(使用BiliPlus需要access_token, 不需要cookie,
98+
解析服务器能够获取你账号的大部分权限!)
99+
--ep-host <ep-host> 指定BiliPlus EP host(用于代理api.bilibili.com/pgc/view/web/season,
100+
大部分解析服务器不支持代理该接口)
101+
--area <area> (hk|tw|th) 使用BiliPlus时必选, 指定BiliPlus area
96102
--config-file <config-file> 读取指定的BBDown本地配置文件(默认为: BBDown.config)
97103
--version Show version information
98104
-?, -h, --help Show help and usage information

0 commit comments

Comments
 (0)