feat: 支持跳过视频的某些处理部分 (#492)

This commit is contained in:
ᴀᴍᴛᴏᴀᴇʀ
2025-10-11 20:45:44 +08:00
committed by GitHub
parent ed54ca13b8
commit 02c42861ab
6 changed files with 90 additions and 13 deletions

View File

@@ -246,6 +246,14 @@ export interface DanmakuOption {
time_offset: number;
}
export interface SkipOption {
no_poster: boolean;
no_video_nfo: boolean;
no_upper: boolean;
no_danmaku: boolean;
no_subtitle: boolean;
}
export interface RateLimit {
limit: number;
duration: number;
@@ -270,6 +278,7 @@ export interface Config {
credential: Credential;
filter_option: FilterOption;
danmaku_option: DanmakuOption;
skip_option: SkipOption;
video_name: string;
page_name: string;
interval: number;