Files
XCDesktop/tools/tongyi/config.py
2026-03-08 01:34:54 +08:00

15 lines
389 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 配置文件
# User-Agent设置
USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
# Cookie设置可选如需登录后才能访问的视频
COOKIE = ""
# 下载配置
DOWNLOAD_DIR = "./downloads"
CHUNK_SIZE = 1024 * 1024 # 1MB
# API配置
API_URL = "https://api.bilibili.com/x/player/playurl"