[mirotalksfu] - update readme and dep

هذا الالتزام موجود في:
Miroslav Pejic
2023-07-26 13:29:19 +02:00
الأصل d66e9f73b2
التزام 7acd17680e
3 ملفات معدلة مع 15 إضافات و4 حذوفات

عرض الملف

@@ -4,6 +4,17 @@
Create a meeting with a `HTTP request` containing the `API_KEY` sent to MiroTalks server. The response contains a `meeting` URL that can be `embedded` in your client within an `iframe`.
The `API_KEY` is defined in the `app/src/config.js`, change it with your own.
```js
api: {
// app/api
keySecret: 'mirotalksfu_default_secret',
}
```
Some examples demonstrating how to call the API:
```bash
# js
node meeting.js
@@ -29,7 +40,7 @@ Embedding a meeting into a `service` or `app` requires using an `iframe` with th
```html
<iframe
allow="camera; microphone; display-capture; fullscreen; clipboard-read; clipboard-write; autoplay"
src="https://sfu.mirotalk.com/join/room_name"
src="https://sfu.mirotalk.com/join/your_room_name"
style="height: 100vh; width: 100vw; border: 0px;"
></iframe>
```