-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72444ff
commit 7c3df5c
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,35 @@ | ||
# go-alphay-player | ||
超仿Bilibili播放器Go版,开箱即用,免安装环境 | ||
|
||
# go-alphay-player | ||
超防Bilibili弹幕播放器,开箱即用 | ||
![index.png](https://tva1.sinaimg.cn/large/008c6yxSgy1h537zlyqc2j31h60pvtx7.jpg) | ||
![index2.png](https://tva1.sinaimg.cn/large/008c6yxSgy1h5380v99acj30rc0ir7ar.jpg) | ||
|
||
## 优点 | ||
* 开箱即用 | ||
* 免安装运行环境 | ||
* 免配置弹幕数据库,内置数据库 | ||
* 高性能(使用Go开发) | ||
|
||
## 配置文件config.json | ||
```json | ||
{ | ||
"username": "user", // 登录名 | ||
"password": "123123", // 登录密码 | ||
"duration": 600, // 登录持续时间 | ||
"admin": "/admin", // 后台地址 | ||
"player": "/", // 播放器地址 | ||
"domain": "localhost", // 域名,必须填写。不然后台无法登录 | ||
"port": 8001, // 端口 | ||
"tip": { | ||
"time": "6", | ||
"color": "#fb7299", | ||
"text": "请大家遵守弹幕礼仪,文明发送弹幕" | ||
}, | ||
"Limit_time": 60, // 限制弹幕发送时间 | ||
"Limit_requence": 20, // 限制发送弹幕次数 | ||
"allow_url": [], // 限定域名访问 | ||
"paras": 0 // 是否开启解析,0为关闭,1为打开 | ||
} | ||
``` |