• Stars
    star
    2,109
  • Rank 21,878 (Top 0.5 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 5 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

用于OBS的仿YouTube风格的bilibili直播评论栏

blivechat

用于OBS的仿YouTube风格的bilibili直播评论栏

OBS截图
Chrome截图
样式生成器截图

特性

  • 兼容YouTube直播评论栏的样式
  • 付费礼物模仿醒目留言显示
  • 高亮舰队、房管、主播的用户名
  • 支持屏蔽弹幕、合并相似弹幕等设置
  • 自带两种样式生成器,经典YouTube风格和仿微信风格
  • 支持前端直连B站服务器或者通过后端转发
  • 支持自动翻译弹幕、醒目留言到日语,可以在后台配置翻译目标语言
  • 支持标注打赏用户名的读音,可选拼音或日文假名
  • 支持配置自定义表情,不需要开通B站官方表情

使用方法

以下几种方式任选一种即可

一、本地使用

  1. 下载发布版(仅提供x64 Windows版)
  2. 双击blivechat.exe运行服务器,或者用命令行可以指定host和端口号:
    blivechat.exe --host 127.0.0.1 --port 12450
  3. 用浏览器打开http://localhost:12450,输入房间ID,复制房间URL
  4. 用样式生成器生成样式,复制CSS
  5. 在OBS中添加浏览器源,输入URL和自定义CSS

注意事项:

  • 本地使用时不要关闭blivechat.exe那个黑框,否则不能继续获取头像或弹幕
  • 样式生成器没有列出所有本地字体,但是可以手动输入本地字体
  • 如果需要使用翻译功能,建议看配置官方翻译接口傻瓜式教程

二、公共服务器

请优先在本地使用,使用公共服务器会有更大的延迟,而且服务器故障时可能发生直播事故

三、源代码版(自建服务器或在Windows以外平台)

  1. 由于使用了git子模块,clone时需要加上--recursive参数:
    git clone --recursive https://github.com/xfgryujk/blivechat.git
    如果已经clone,拉子模块的方法:
    git submodule update --init --recursive
  2. 编译前端(需要安装Node.js):
    cd frontend
    npm i
    npm run build
  3. 运行服务器(需要Python3.8以上版本):
    pip3 install -r requirements.txt
    python3 main.py
    或者可以指定host和端口号:
    python3 main.py --host 127.0.0.1 --port 12450
  4. 用浏览器打开http://localhost:12450,以下略

四、Docker(自建服务器)

  1. docker run --name blivechat -d -p 12450:12450 \
      --mount source=blivechat-data,target=/mnt/data \
      xfgryujk/blivechat:latest
  2. 用浏览器打开http://localhost:12450,以下略

自建服务器相关补充

服务器配置

服务器配置在data/config.ini,可以配置数据库和允许自动翻译等,编辑后要重启生效

自建服务器时强烈建议不使用加载器,否则可能因为混合HTTP和HTTPS等原因加载不出来

参考nginx配置

sudo vim /etc/nginx/sites-enabled/blivechat.conf

upstream blivechat {
	keepalive 8;
	# blivechat地址
	server 127.0.0.1:12450;
}

# 强制HTTPS
server {
	listen 80;
	listen [::]:80;
	server_name YOUR.DOMAIN.NAME;

	return 301 https://$server_name$request_uri;
}

server {
	listen 443 ssl;
	listen [::]:443 ssl;
	server_name YOUR.DOMAIN.NAME;

	# SSL
	ssl_certificate /PATH/TO/CERT.crt;
	ssl_certificate_key /PATH/TO/CERT_KEY.key;

	client_body_buffer_size 256k;
	client_max_body_size 1.1m;

	# 代理header
	proxy_http_version 1.1;
	proxy_set_header Host $host;
	proxy_set_header Connection "";
	proxy_set_header X-Real-IP $remote_addr;
	proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

	# 静态文件
	location / {
		root /PATH/TO/BLIVECHAT/frontend/dist;
		# 如果文件不存在,交给前端路由
		try_files $uri $uri/ /index.html;
	}
	location /emoticons {
		alias /PATH/TO/BLIVECHAT/data/emoticons;
	}
	# 动态API
	location /api {
		proxy_pass http://blivechat;
	}
	# websocket
	location = /api/chat {
		proxy_pass http://blivechat;

		# 代理websocket必须设置
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection "Upgrade";

		# 由于这个块有proxy_set_header,这些不会自动继承
		proxy_set_header Host $host;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	}
}

More Repositories

1

blivedm

获取bilibili直播弹幕,使用WebSocket协议,支持web端和B站直播开放平台两种接口
Python
987
star
2

weibo-img-crypto

自动加密解密微博上传的图片
JavaScript
240
star
3

WinCustomDesktop

自绘桌面框架,用你的代码绘制桌面
C++
138
star
4

TiebaManager

(已跑路)百度贴吧吧务管理工具,自动扫描帖子并处理违规帖
C++
119
star
5

CheatingTutorial

一个游戏修改器制作教程的例程
C++
110
star
6

memegen

Generates meme image.
JavaScript
58
star
7

VehicleDetection

Detect and track vehicles in video
C++
51
star
8

InjectExe

Inject the whole exe into another process
C++
42
star
9

c51-play-music

51单片机播放音乐
C
41
star
10

TaobaoAnalysis

练习NLP,分析淘宝评论的项目
Python
35
star
11

blivemedal

拯救B站直播换牌子的用户体验
JavaScript
29
star
12

THUnpacker

A tool to unpack Touhou Project game resources
C++
28
star
13

bliveproxy

B站直播websocket hook框架
JavaScript
27
star
14

DanmakuChicken

一个在屏幕上显示弹幕的小程序
C++
22
star
15

pixiv-to-weibo

自动转P站图片到微博
Python
19
star
16

ModernHook

Implements Windows API hooks in modern C++
C++
15
star
17

THResHack

Replace Touhou Project game resources with the files in "data" directory
C++
13
star
18

anti-https-censorship

Don't let them know which site you are visiting
Python
11
star
19

mml2beep

Converts MML to beep music score. 转换MML乐谱到beep谱
Python
11
star
20

img2wav

Draws image to spectrum.
Python
10
star
21

blivetts

获取B站直播弹幕,翻译,并用语音读出
Python
8
star
22

thbgmChg

A tool to modify Touhou Project game BGMs
C++
7
star
23

DecodeVideo

Windows下解码和播放视频的例程
C++
7
star
24

AnLi-image-stitching

An image stitching web app, which aims to stitch screenshots in video with subtitles.
Vue
6
star
25

py-tieba-manager

还在开发中
Python
6
star
26

bibo-img-crypto

自动加密解密B博上传的图片
JavaScript
5
star
27

DMPlayGames

B站弹幕姬插件,可以用弹幕操作游戏
C++
5
star
28

TH15ModLoader

东方绀珠传MOD API
C++
5
star
29

ReadTheWeibo

自动获取新微博,弹窗,并用TTS读出来
Python
4
star
30

FakeLongExposureCamera

Blend pictures to fake long exposure effect.
Java
4
star
31

knowledge

面向求职的个人知识总结,只保证自己能看懂。欢迎指出错误
C++
3
star
32

CatEarCamera

Detect faces and draw images on them.
Java
3
star
33

blive-redirect

重定向B站直播视频流到其他地址,然后可以看其他网站的直播并利用B站弹幕系统聊天
JavaScript
3
star
34

shoushouwei

B站直播弹幕清理脚本,旨在提高弹幕的信息密度
JavaScript
3
star
35

blivechat-tts

基于blivechat获取B站直播弹幕,并朗读
Python
3
star
36

thbgm

A tool to modify Touhou Project game BGMs.
C
2
star
37

PostAssistantForChrome

在百度贴吧发帖自动加上签名
JavaScript
2
star
38

yukakone-ai-plugin

ゆかコネ的LLM翻译插件
Python
2
star
39

MCPainter

Convert your bitmap to a schematic file so that you can put it in Minecraft with MCEdit!
C++
1
star
40

dev-environments

自用,各种开发环境配置
Dockerfile
1
star
41

Win7AutoMineSweeper

A cheating program for MineSweeper on Windows 7.
C++
1
star
42

PostAssistantForIE

在百度贴吧发帖自动加上签名
C++
1
star
43

AutoMineSweeper

A cheating program for winmine on Windows XP.
C++
1
star