From ffd699be968812e202f6076a5eff22bbcce6ca3d Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Thu, 16 Sep 2021 13:59:34 -0400 Subject: [PATCH] Add explaination --- dailyjs/live-transcription/README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/dailyjs/live-transcription/README.md b/dailyjs/live-transcription/README.md index 9840d4a..fde27c3 100644 --- a/dailyjs/live-transcription/README.md +++ b/dailyjs/live-transcription/README.md @@ -10,11 +10,11 @@ ## What does this demo do? -- Use [sendAppMessage](https://docs.daily.co/reference#%EF%B8%8F-sendappmessage) to send messages -- Listen for incoming messages using the call object `app-message` event -- Extend the basic call demo with a chat provider and aside -- Show a notification bubble on chat tray button when a new message is received -- Demonstrate how to play a sound whenever a message is received +- Use `startTranscription()` and `stopTranscription()` methods to create a transcript of a call +- Integrates Deepgram transcription service into Daily calls +- Listen for incoming transcription messages using the call object `app-message` event +- Extend the basic call demo with a transcription provider and aside +- Show a notification bubble on transcript tray button when a new message is received Please note: this demo is not currently mobile optimised @@ -28,6 +28,12 @@ yarn 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? 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.