Initial commit

This commit is contained in:
2026-03-08 01:34:54 +08:00
commit 1f104f73c8
441 changed files with 64911 additions and 0 deletions

14
tools/tongyi/config.py Normal file
View File

@@ -0,0 +1,14 @@
# 配置文件
# 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"