You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's possible to publish audio in the Opus codec from a multicast packet stream over a UDP socket. `lk` can act as a multicast listener and publish receiving audio packets. For example, if you want to publish audio packets that are being sent to multicast address `225.8.11.101` and port `9001` on a network connection `en0`,
157
+
158
+
Run `lk` like this:
159
+
160
+
```shell
161
+
lk room join --identity bot \
162
+
--publish-multicast \
163
+
--multicast-endpoint 225.8.11.101:9001 \
164
+
--multicast-network-name en0 \
165
+
<room_name>
166
+
```
167
+
154
168
### Publish streams from your application
155
169
156
170
Using unix sockets, it's also possible to publish streams from your application. The tracks need to be encoded into
0 commit comments