chore: update pwd

This commit is contained in:
John Howe
2025-04-08 20:55:26 +08:00
parent 69db44dcbd
commit 31a52c1d69
2 changed files with 13 additions and 2 deletions

View File

@@ -97,6 +97,7 @@ graph TD
## 3. 测试硬件
+ OS: Ubuntu 22.04.4 LTS
+ 架构: x64
+ CPU2核 Intel(R) Xeon(R) Platinum 85
+ GPU
+ 内存2G
@@ -105,6 +106,16 @@ graph TD
+ Python 版本: 3.10
> 个人经验:若想尽可能快地更新视频,主要取决于上传速度而非弹幕渲染速度,因此建议网络带宽越大越好。
+ OS: debian 6.1.0-32
+ 架构: aarch64
+ CPU: 1核 Neoverse-N1
+ GPU: 无
+ 内存: 4G
+ 硬盘: 30G
+ 带宽: 100Mbps
+ Python 版本: 3.10
## 4. Quick start
更详细的教程请参考文档 [bilive](https://timerring.github.io/bilive/)
@@ -272,7 +283,7 @@ python -m bilitool.cli login
#### 6. 启动自动录制
默认密码为 `bilive`, 如果要将录制页面向公网开放,请务必在 `record.sh``--api-key` 后重新设置密码!如需使用 https可以考虑 openssl 自签名证书并添加参数 `--key-file path/to/key-file --cert-file path/to/cert-file`
默认密码为 `bilive2233`, 如果要将录制页面向公网开放,请务必在 `record.sh``--api-key` 后重新设置密码!如需使用 https可以考虑 openssl 自签名证书并添加参数 `--key-file path/to/key-file --cert-file path/to/cert-file`
```bash
./record.sh

View File

@@ -9,7 +9,7 @@ host=0.0.0.0
port=2233
kill -9 $(ps aux | grep '[b]lrec' | awk '{print $2}')
nohup blrec -c $config --open --host $host --port $port --api-key bilive > ./logs/runtime/blrec-$(date +%Y%m%d-%H%M%S).log 2>&1 &
nohup blrec -c $config --open --host $host --port $port --api-key bilive2233 > ./logs/runtime/blrec-$(date +%Y%m%d-%H%M%S).log 2>&1 &
if [ $? -eq 0 ]; then
echo "success"
else