Add explaination
This commit is contained in:
parent
2583b33802
commit
ffd699be96
|
|
@ -10,11 +10,11 @@
|
||||||
|
|
||||||
## What does this demo do?
|
## What does this demo do?
|
||||||
|
|
||||||
- Use [sendAppMessage](https://docs.daily.co/reference#%EF%B8%8F-sendappmessage) to send messages
|
- Use `startTranscription()` and `stopTranscription()` methods to create a transcript of a call
|
||||||
- Listen for incoming messages using the call object `app-message` event
|
- Integrates Deepgram transcription service into Daily calls
|
||||||
- Extend the basic call demo with a chat provider and aside
|
- Listen for incoming transcription messages using the call object `app-message` event
|
||||||
- Show a notification bubble on chat tray button when a new message is received
|
- Extend the basic call demo with a transcription provider and aside
|
||||||
- Demonstrate how to play a sound whenever a message is received
|
- Show a notification bubble on transcript tray button when a new message is received
|
||||||
|
|
||||||
Please note: this demo is not currently mobile optimised
|
Please note: this demo is not currently mobile optimised
|
||||||
|
|
||||||
|
|
@ -28,6 +28,12 @@ yarn
|
||||||
yarn workspace @dailyjs/live-transcription dev
|
yarn workspace @dailyjs/live-transcription dev
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Setting up transcription
|
||||||
|
|
||||||
|
For testing the transcription service, you will have to register for a Deepgram API key and configure your Daily domain with that key.
|
||||||
|
|
||||||
|
TODO: Add more instructions here, or point to docs when ready.
|
||||||
|
|
||||||
## How does this example work?
|
## How does this example work?
|
||||||
|
|
||||||
In this example we extend the [basic call demo](../basic-call) with the ability to generate transcription of the meeting in real time and log that in a side panel.
|
In this example we extend the [basic call demo](../basic-call) with the ability to generate transcription of the meeting in real time and log that in a side panel.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue