Skip to content

Commit

Permalink
FAQ 整理
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed May 4, 2024
1 parent 30d38b1 commit 01b7da0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions doc/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ MACアドレスベースの EUI-64 フォーマットの IPv6 になっている

## Zakuro を利用する際の注意点はありますか?

### シグナリングで利用する WebSocket は wss のみ対応

Zakuro は `wss://` のみ対応しています。 `ws://` には対応していません。

### ファイルディスクリプタ数

かなりの数を消費しますので、 Zakuro と Sora 両方のサーバで多めに設定することを推奨します。
Expand Down
17 changes: 9 additions & 8 deletions doc/USE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ $ sudo apt install libnspr4 libnss3 libxext6 libx11-6 libdrm2 libva2 libva-drm2

まず 5 人の会議を行う簡単な負荷をかけてみましょう


```
$ ./zakuro \
--sora-signaling-url wss://example.com/signaling \
Expand All @@ -39,7 +38,6 @@ $ ./zakuro \
--vcs 5
```


上記コマンドを実行することで負荷が走ります。それぞれの項目については -h を見てください。
おそらく Sora を理解していればわからないことは特に無いと思います。

Expand Down Expand Up @@ -95,7 +93,6 @@ OpenH264 のバイナリの最新版は以下からダウンロード可能で

https://github.com/cisco/openh264/releases/tag/v2.1.1


### 音声ファイル指定

`--fake-audio-capture /path/to/sample.wav`
Expand Down Expand Up @@ -156,8 +153,7 @@ zakuro:
instances:
- name: zakuro
vcs: 1
sora:
...
sora: ...
fake-network:
send-loss-percent: 20
receive-loss-percent: 20
Expand Down Expand Up @@ -187,6 +183,11 @@ zakuro:
size_min: 100
# 省略時は 48 (bytes)
size_max: 5000
# 順番保証するかどうか
# ordered: true
# メッセージの最大寿命
# max_packet_lifetime 1
# max_retransmits: 1
```

### 複数シグナリング URL
Expand All @@ -198,9 +199,9 @@ zakuro:
vcs: 2
sora:
signaling-url:
- "wss://sora1.example.com/signaling"
- "wss://sora2.example.com/signaling"
- "wss://sora3.example.com/signaling"
- "wss://sora1.example.com/signaling"
- "wss://sora2.example.com/signaling"
- "wss://sora3.example.com/signaling"
channel-id: sora
role: sendrecv
multistream: true
Expand Down

0 comments on commit 01b7da0

Please sign in to comment.