Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/limitcool/bilistream
bilistream是一个支持无人值守自动转播Twitch和Youtube(包括预告类型直播)的B站直播自动转播工具。
https://github.com/limitcool/bilistream
bilibili bilibili-live live m3u8 twitch youtube
Last synced: 12 days ago
JSON representation
bilistream是一个支持无人值守自动转播Twitch和Youtube(包括预告类型直播)的B站直播自动转播工具。
- Host: GitHub
- URL: https://github.com/limitcool/bilistream
- Owner: limitcool
- Created: 2022-07-01T04:08:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T17:18:26.000Z (about 2 months ago)
- Last Synced: 2024-09-18T10:55:28.192Z (about 2 months ago)
- Topics: bilibili, bilibili-live, live, m3u8, twitch, youtube
- Language: Rust
- Homepage:
- Size: 175 KB
- Stars: 120
- Watchers: 3
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-bilibili-extra - Bilistream - B 站直播转播工具,一键转播 Youtube,Twitch,Mildom 等直播.![Rust](svg/rust.svg?raw=true) (直播相关工具 / 直播脚本)
README
```
_ _ _ _ _
| |__ (_) (_)___| |_ _ __ ___ __ _ _ __ ___
| '_ \| | | / __| __| '__/ _ \/ _` | '_ ` _ \
| |_) | | | \__ \ |_| | | __/ (_| | | | | | |
|_.__/|_|_|_|___/\__|_| \___|\__,_|_| |_| |_|
```# bilistream
bilistream是一个支持无人值守自动转播Twitch和Youtube(包括预告类型直播)的B站直播自动转播工具。
### QQ群: 715748617
```bash
# Debian
apt update
# 安装ffmpeg。
apt install ffmpeg -y
apt install python3-pip -y # 部分机器可能还需要此操作。
# CentOS
# 安装ffmpeg。
yum install ffmpeg -y
# 如需转播Youtube,需单独安装Yt-dlp。
pip3 install yt-dlp
# 更新yt-dlp至最新版。
pip3 install -U yt-dlp
```## 使用指南
### Windows
```
.\bilistream.exe
```### Linux-arm
```
xz -d bilistream-v0.1.11-aarch64-linux.tar.xz
tar -xvf bilistream-v0.1.11-aarch64-linux.tar
cd bilistream-v0.1.11-aarch64-linux
./bilistream
```若使用的Linux版本glibc库较旧,可尝试使用Linux-musl版。Linux的编译环境版本为Ubuntu 20.04,低于此版本可尝试使用Linux-musl。
在解压目录新建 `config.yaml` 文件:
```
touch config.yaml
```将以下内容填写至 `config.yaml` 文件内:
``` yaml
# 检测直播间隔
Interval: 60
# 需要转播的平台 Twitch || Youtube || YoutubePreviewLive
Platform: Twitch
# B站推流账号Cookie
BiliLive:
SESSDATA:
bili_jct:
DedeUserID: 2235894
DedeUserID__ckMd5:
Room: 660428
BiliRtmpUrl: rtmp://live-push.bilivideo.com/live-bvc/
# BiliRtmpUrl: B站开播设置页面的服务器地址
BiliRtmpKey: "?streamname=live_0000000_0000000&key=xxxxxxxxxxb8289c6acc97xxxxxxxxx&schedule=rtmp&pflag=1"
# BiliRtmpKey: B站开播设置页面的串流密钥,需注意,由于是?号开头的,本行需要对内容加双引号
# Twitch 直播间Id
Twitch:
# Room: maximilian_dood
Room:
# youtube 需要使用Youtube API AK以及Yt-dlp
Youtube:
Room: UC1zFJrfEKvCixhsjNSb1toQ
AccessToken:
# youtube 预告类型直播转播请填写以下内容
YoutubePreviewLive:
ChannelId: UC1zFJrfEKvCixhsjNSb1toQ
FfmpegProxy: http://127.0.0.1:7890
# Ffmpeg代理地址,无需代理可以不填此项或者留空### Gotify推送配置 (可选)
# 如果您想使用Gotify进行推送通知,请在`config.yaml`中添加以下配置:
Gotify:
url: "https://example.com/gotify"
token: "your_gotify_token_here"
```## Youtube API申请地址
https://developers.google.com/youtube/v3
## 常见问题FAQ
- Q: 转播时出现 Input/output error
- A: 可能是BiliRtmpUrl及BiliRtmpKey填写错误或使用海外机器进行推流。B站不支持海外机器推流,建议使用国内服务器+代理推流。
- Q: 转播Youtube时出现Connection to tcp://manifest.googlevideo.com:443 failed: Error number -138 occurred
- A: 可能是Ffmpeg拉流未通过代理,请在配置项填写 FfmpegProxy: [http://127.0.0.1:7890。](http://127.0.0.1:7890。/)