blivechat/README.md

115 lines
4.1 KiB
Markdown
Raw Normal View History

2019-05-22 21:21:03 +08:00
# blivechat
2023-09-10 10:39:02 +08:00
2019-10-06 16:56:40 +08:00
用于OBS的仿YouTube风格的bilibili直播评论栏
2019-05-22 21:21:03 +08:00
2023-09-10 10:39:02 +08:00
![OBS截图](./screenshots/obs.png)
![Chrome截图](./screenshots/chrome.png)
![样式生成器截图](./screenshots/stylegen.png)
2019-05-22 21:21:03 +08:00
## 特性
2023-09-10 10:39:02 +08:00
2019-10-06 16:56:40 +08:00
* 兼容YouTube直播评论栏的样式
2024-03-18 20:44:00 +08:00
* 高亮舰队、 ~~房管~~ 、主播的用户名
2022-02-28 21:08:12 +08:00
* 自带两种样式生成器经典YouTube风格和仿微信风格
2024-03-18 20:44:00 +08:00
* 支持屏蔽弹幕、合并礼物等设置
* 支持前端直连B站服务器或者通过后端转发
2022-02-28 21:08:12 +08:00
* 支持自动翻译弹幕、醒目留言到日语,可以在后台配置翻译目标语言
* 支持标注打赏用户名的读音,可选拼音或日文假名
* 支持配置自定义表情不需要开通B站官方表情
2024-03-18 20:44:00 +08:00
* 支持插件开发
2019-05-22 21:21:03 +08:00
## 使用方法
2023-09-10 10:39:02 +08:00
以下几种方式任选一种即可。**正式使用之前记得看[注意事项](https://github.com/xfgryujk/blivechat/wiki/%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9%E5%92%8C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)**
2024-11-16 21:41:27 +08:00
推荐的方式:如果你需要使用插件、翻译等高级特性,则在本地使用;否则推荐直接通过公共服务器在线使用。因为本地使用时不会自动升级版本,有时候出了问题不能及时解决;但在线使用时会禁用部分高级特性,如果你有需要,只能本地使用了
2022-02-28 21:08:12 +08:00
2024-11-16 21:41:27 +08:00
### 一、在线使用
2023-09-10 10:39:02 +08:00
2024-11-16 21:41:27 +08:00
1. 这些是作者维护的公共服务器,根据情况随便选一个,直接用浏览器打开
2023-09-10 10:39:02 +08:00
2024-11-16 21:41:27 +08:00
* [blive.chat](https://blive.chat/)自动节点一般等于cn.blive.chat如果不可用了会进行切换但切换需要一段时间
* [cn.blive.chat](https://cn.blive.chat/):墙内专用节点,不容易被墙,但如果受到攻击会变得不可用
* [cloudflare.blive.chat](https://cloudflare.blive.chat/)Cloudflare美国节点不容易被攻击但容易被墙
* [vercel.blive.chat](https://vercel.blive.chat/)Vercel美国节点不容易被攻击但容易被墙
2023-09-10 10:39:02 +08:00
2024-11-16 21:41:27 +08:00
2. 输入主播在开始直播时获得的身份码复制房间URL
3. 用样式生成器生成样式复制CSS
4. 在OBS中添加浏览器源输入URL和自定义CSS
2023-09-10 10:39:02 +08:00
2024-11-16 21:41:27 +08:00
### 二、本地使用
2019-05-28 19:05:59 +08:00
2024-11-16 21:41:27 +08:00
1. 下载[本地分发版](https://github.com/xfgryujk/blivechat/releases)仅提供x64 Windows版。也可以在[B站商店](https://play-live.bilibili.com/details/1694397161340)下载
2. 双击`blivechat.exe`(或者`start.exe`)运行服务器
3. 用浏览器打开[http://localhost:12450](http://localhost:12450),剩下的步骤和在线使用时是一样的
2023-09-10 10:39:02 +08:00
2024-11-16 21:41:27 +08:00
### 三、从源码运行
2019-10-06 16:56:40 +08:00
2024-11-16 21:41:27 +08:00
此方式适用于自建服务器或者在Windows以外的平台运行
2023-09-10 10:39:02 +08:00
2020-08-16 10:10:49 +08:00
0. 由于使用了git子模块clone时需要加上`--recursive`参数:
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
```sh
git clone --recursive https://github.com/xfgryujk/blivechat.git
```
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
如果已经clone拉子模块的方法
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
```sh
git submodule update --init --recursive
```
2023-09-10 10:39:02 +08:00
2020-08-16 10:10:49 +08:00
1. 编译前端需要安装Node.js
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
```sh
cd frontend
npm i
npm run build
```
2023-09-10 10:39:02 +08:00
2024-11-17 22:55:16 +08:00
2. 安装服务器依赖需要Python 3.12以上版本):
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
```sh
2024-11-16 21:41:27 +08:00
pip install -r requirements.txt
```
3. 运行服务器:
```sh
python main.py
2022-02-28 21:08:12 +08:00
```
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
或者可以指定host和端口号
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
```sh
2024-11-16 21:41:27 +08:00
python main.py --host 127.0.0.1 --port 12450
2022-02-28 21:08:12 +08:00
```
2023-09-10 10:39:02 +08:00
2024-11-16 21:41:27 +08:00
4. 用浏览器打开[http://localhost:12450](http://localhost:12450),以下略
### 四、Docker
2019-07-06 01:23:29 +08:00
2024-11-16 21:41:27 +08:00
此方式适用于自建服务器。示例的运行参数只是最基本的,可以根据需要修改
2023-09-10 10:39:02 +08:00
2022-02-28 21:08:12 +08:00
1. ```sh
docker run --name blivechat -d -p 12450:12450 \
--mount source=blivechat-data,target=/mnt/data \
2022-02-28 21:08:12 +08:00
xfgryujk/blivechat:latest
```
2023-09-10 10:39:02 +08:00
2019-10-06 16:56:40 +08:00
2. 用浏览器打开[http://localhost:12450](http://localhost:12450),以下略
2020-08-16 10:10:49 +08:00
2023-09-29 10:36:19 +08:00
## 服务器配置
2023-09-10 10:39:02 +08:00
2024-11-16 21:41:27 +08:00
服务器配置文件在`data/config.ini`,可以配置数据库和允许自动翻译等,编辑后要重启生效
2020-11-28 22:56:45 +08:00
2024-11-16 21:41:27 +08:00
**自建服务器时强烈建议不使用加载器**,否则可能因为各种原因加载不出来
2020-11-28 22:56:45 +08:00
2024-02-08 15:45:54 +08:00
## 常用链接
2023-09-29 10:36:19 +08:00
2024-02-08 15:45:54 +08:00
* [文档](https://github.com/xfgryujk/blivechat/wiki)
* [交流社区](https://github.com/xfgryujk/blivechat/discussions)
* [B站商店](https://play-live.bilibili.com/details/1694397161340)