Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/INSIinc/Youtube2Bili
你是否是每天都在等待你最喜欢的YouTuber发布新视频?你想把他们的精彩内容分享到中国最大的视频分享平台Bilibili上吗? 那么就来试试YouTube2Bili 📹🚀🚀 - 一个能够从任何你想要的YouTuber那里下载视频并上传到Bilibili的Python脚本!😍
https://github.com/INSIinc/Youtube2Bili
Last synced: about 2 months ago
JSON representation
你是否是每天都在等待你最喜欢的YouTuber发布新视频?你想把他们的精彩内容分享到中国最大的视频分享平台Bilibili上吗? 那么就来试试YouTube2Bili 📹🚀🚀 - 一个能够从任何你想要的YouTuber那里下载视频并上传到Bilibili的Python脚本!😍
- Host: GitHub
- URL: https://github.com/INSIinc/Youtube2Bili
- Owner: INSIinc
- License: mit
- Created: 2023-04-10T04:39:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-14T11:42:05.000Z (over 1 year ago)
- Last Synced: 2024-08-01T02:28:21.300Z (4 months ago)
- Language: Python
- Homepage:
- Size: 82 MB
- Stars: 9
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README-en.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bilibili-extra - Youtube2Bili - 一个能够从任何你想要的 YouTuber 那里下载视频并上传到 Bilibili 的 Python 脚本.![Python](svg/python.svg?raw=true) (UP 工具 / 直播脚本)
README
## Response:
# YouTube2Bili 📹🚀🚀Are you constantly waiting for your favorite YouTubers to release new videos every day? Do you want to share their exciting content on China's largest video sharing platform, Bilibili?
Then try YouTube2Bili 📹🚀🚀 - a Python script that can download videos from any YouTuber you want and upload them to Bilibili! 😍
## Installation
Before using YouTube2Bili, you need to install the following dependencies:
* [watchdog](https://pypi.org/project/watchdog/) - Monitor changes to configuration files
* [youtube\_dl](https://pypi.org/project/youtube_dl/) - Download videos from YouTube
* [asyncio](https://docs.python.org/zh-cn/3/library/asyncio.html) and [pyppeteer](https://github.com/pyppeteer/pyppeteer) - Get video links from specified YouTuber's channel
* [bilibili\_toolman](https://pypi.org/project/bilibili-toolman/) - Upload videos to Bilibili
* [Pillow](https://pypi.org/project/Pillow/) - Process video thumbnailsYou can install these dependencies by running the following command:
```
pip install watchdog youtube_dl asyncio pyppeteer bilibili_toolman Pillow
```## Usage
1. Clone the project to your computer:
```bash
git clone https://github.com/INSIinc/YouTube2Bili.git
```2. Enter the project directory:
```bash
cd YouTube2Bili
```3. Modify the configuration file:
The `config.json` file contains all the configuration options required for YouTube2Bili. You need to provide the following information:
* `blogger_urls`: A list of URLs of YouTubers whose videos you want to download 🌐
* `output_directory`: The output directory where downloaded videos and subtitle files will be saved 📂
* `bilibili_token`: Bilibili access token for video publishing 🚀 (Refer to bilibili\_toolman library for detailed configuration)
* `max_age_days`: Only download videos published in the last few days 📅
* `polling_interval`: Time interval (in seconds) for checking new videos ⏰Please note that all fields are required. If you do not fill them out, the script will not work.
4. Run the script:
Run the following command to start the script:
```css
python main.py
```The script will periodically check the channels of the YouTubers you specified for new videos and download them to your local computer. Then it will publish these videos to Bilibili.
If you want to run the script in the background, use the `nohup` command:
```bash
nohup python main.py &
```5. Configure automatic startup:
If you want to automatically start YouTube2Bili when the system starts up, you can use `crontab` on Linux or macOS and Task Scheduler on Windows. Here is an example of using `crontab`:
1. Open a terminal and enter the following command:
```
crontab -e
```2. Add the following line to the file that opens:
```lua
@reboot cd /path/to/YouTube2Bili && python main.py >> /path/to/log/file.log 2>&1
```Replace `/path/to/YouTube2Bili` with
## Response:
the path where you cloned YouTube2Bili, and replace `/path/to/log/file.log` with the path where you want to save the log file.3. Save and close the file.
4. Enjoy the videos:
Now you have successfully shared YouTuber's videos to Bilibili! 😍
You can find the downloaded videos and subtitle files, as well as the corresponding thumbnail files, in the `output_directory`.
## Configuration file example
Here is an example configuration file:
```json
{
"blogger_urls": [
"https://www.youtube.com/@Fireship/videos",
"https://www.youtube.com/@BrickExperimentChannel/videos"
],
"output_directory": "/path/to/your/output/directory",
"bilibili_token": "your_bilibili_access_token",
"max_age_days": 7,
"polling_interval": 3600
}
```## Contribution
If you want to contribute to this project, feel free to submit a PR or raise an issue!
## License
This project is licensed under the [MIT license](https://opensource.org/licenses/MIT).