Skip to content

Commit

Permalink
Update iframe-events.md
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul authored Nov 10, 2023
1 parent 4b0d8c4 commit 4c03a5e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/dev-guide/iframe-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,31 @@ Will only fire if rtcstats is enabled.
}
```

### transcriptionChunkReceived

Provides event notifications about new transcription chunks being available.

The listener receives an object with the following structure:

```javascript
{
// ID for this chunk.
messageID: string,

// Name of the participant.
participantName: string,

// If the transcription is final, the text will be here.
final: string,

// If the transcription is not final but has high accuracy the text will be here.
stable: string,

// If the transcription is not final but has low accuracy the text will be here.
unstable: string,
}
```

### whiteboardStatusChanged

Provides event notifications about changes to the whiteboard.
Expand Down

0 comments on commit 4c03a5e

Please sign in to comment.