国内视频网站的uploader,用来批量上传视频
#pip list --format=freeze > requirements.txt
git clone https://github.com/aceliuchanghong/bili_douyin_xhs_uploader.git
conda create -n uploader python=3.9
conda activate uploader
pip install -r requirements.txt --proxy=127.0.0.1:10809
将对应网址的cookie放在cookies/bili_cookies.json,cookies/xhs_cookies.json,cookies/douyin_cookies.json,或者core/config.py里面修改路径
bili_douyin_xhs_uploader/
|
├── LICENSE
├── README.md
├── gpt_prompt.md
├── main.py
├── requirements.txt
├── test.py
├── cookies/
├── core/
│ ├── config.py
│ ├── exceptions.py
│ ├── upload.py
│ └── video_info.py
├── files/
├── log/
│ ├── ftp_log.md
│ └── media_uploader.db
├── platforms/
│ ├── bili/
│ │ └── uploader.py
│ ├── douyin/
│ │ └── uploader.py
│ └── xhs/
│ └── uploader.py
└── utils/
└── util_sqlite.py
# 判断数据库中是否存在,存在就不上传了
# eg:
cd bili_douyin_xhs_uploader
python main.py --platforms "xhs" --video_url "https://test" --video_path "files/test/11.mp4" --video_name "我只在乎你鄧麗君" --description "我只在乎你鄧麗君 琵琶 演奏"
python main.py --platforms "douyin" --video_url "https://test" --video_path "files/test/11.mp4" --video_name "我只在乎你鄧麗君" --description "我只在乎你鄧麗君 琵琶 演奏"
python main.py --platforms "douyin" --video_url "https://test2" --video_path "files/test/00.mp4" --video_name "你的身边有我们 你的背后是祖国" --description "你的身边有我们 你的背后是祖国"
python main.py --platforms "bili" --video_url "https://test" --video_path "files/test/11.mp4" --video_name "我只在乎你鄧麗君" --description "我只在乎你鄧麗君 琵琶 演奏"
python main.py --platforms "toutiao" --video_url "https://test2" --video_path "files/test/burn-tool.mp4" --video_name "你的身边有我们 你的背后是祖国" --cover_path "files/test/01.jpg" --description "你的身边有我们 你的背后是祖国"
python main.py --platforms "douyin" --video_url "https://test_ubuntu" --video_path "/home/aceliuchanghong/ftpfiles/liu/00.mp4" --video_name "你的身边有我们 你的背后是祖国" --description "你的身边有我们 你的背后是祖国" --headless
python main.py --platforms "xhs" --video_url "https://test2" --video_path "files/test/00.mp4" --video_name "你的身边有我们 你的背后是祖国" --description "你的身边有我们 你的背后是祖国" --headless
Q1:
2024-01-15 04:52:53,590 - DouyinUploader - INFO - Uploading video '你的身边有我们 你的背后是祖国' to douyin...
An error occurred during the upload: 'utf-8' codec can't decode byte 0xb4 in position 41121: invalid start byte
A1:
文件编码格式报错修改即可utf-8格式即可
Q2:
2024-01-15 05:02:47,844 - DouyinUploader - INFO - douyin:登陆中
An error occurred during the upload: Target page, context or browser has been closed
Browser logs:
╔════════════════════════════════════════════════════════════════════════════════════════════════╗
║ Looks like you launched a headed browser without having a XServer running. ║
║ Set either 'headless: true' or use 'xvfb-run <your-playwright-app>' before running Playwright. ║
║ ║
║ <3 Playwright Team ║
╚════════════════════════════════════════════════════════════════════════════════════════════════╝
A2:
--headless