bililive-cli 1.3.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -6
- package/lib/bili-BLevGPF2.js +76000 -0
- package/lib/bili-CQgv-F-q.js +76007 -0
- package/lib/index-BVMD1wRX.js +43797 -0
- package/lib/{index-BZRzMMRb.js → index-Dkt7D2TB.js} +4 -4
- package/lib/index-vxC6dSfO.js +43797 -0
- package/lib/index.cjs +105 -104613
- package/lib/{linux-BetMzq9g.js → linux-BGjRnnAR.js} +45 -111
- package/lib/linux-C6SziuFt.js +3515 -0
- package/lib/v4-D4KzFnn8.js +67 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -20,17 +20,16 @@ CLI是GUI的拓展,使用前需要设置相关目录,由于配置文件很
|
|
|
20
20
|
## 配置
|
|
21
21
|
|
|
22
22
|
使用前通过 `biliLive config gen` 生成默认配置文件,如果你已经安装客户端,相关配置会被自动设置(仅限win)
|
|
23
|
-
|
|
23
|
+
如果你仅使用上传功能,那么无需配置二进制文件,二进制文件可在[这里](https://github.com/renmu123/biliLive-tools/releases/tag/0.2.1)找到,以`platform--arch-version`命名,如果没有当前版本,以最近版本为准,配置为绝对路径以及分配执行权限
|
|
24
24
|
|
|
25
25
|
```js
|
|
26
26
|
{
|
|
27
27
|
port: 18010, // 启动端口,如果不希望与客户端的冲突,请修改为其他端口号
|
|
28
28
|
host: "127.0.0.1", // host
|
|
29
|
-
configFolder: "", // 配置文件夹,推荐在GUI中生成并进行修改配置后复制到CLI
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
danmakuFactoryPath: "DanmakuFactory.exe", // 覆盖binFolder中的DanmakuFactory二进制路径
|
|
29
|
+
configFolder: "", // 配置文件夹,推荐在GUI中生成并进行修改配置后复制到CLI所配置的目录,可在“打开配置文件夹”文件夹找到,分别为ffmpeg_presets.json、danmu_presets.json、presets.json、appConfig.json
|
|
30
|
+
ffmpegPath: "ffmpeg.exe", // ffmpeg二进制路径
|
|
31
|
+
ffprobePath: "ffprobe.exe", // ffprobe二进制路径
|
|
32
|
+
danmakuFactoryPath: "DanmakuFactory.exe", // DanmakuFactory二进制路径
|
|
34
33
|
logPath: "main.log", // log文件路径
|
|
35
34
|
}
|
|
36
35
|
```
|