Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/speech-to-text/realtime/realtime_diarization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Transcripts are returned independently for each channel, with the `channel` prop

:::warning
The `channel` property will be returned for `AddTranscript` and `AddPartialTranscript` messages only.
Features such as [audio events](/speech-to-text/features/audio-events), [translation](/speech-to-text/features/translation) and [end of turn detection](/speech-to-text/realtime/end-of-utterance) do not currently include this property. To request this feature, please contact [support](https://support.speechmatics.com).
The [translation](/speech-to-text/features/translation) feature does not currently include this property. To request this feature, please contact [support](https://support.speechmatics.com).
:::

### Channel and speaker diarization
Expand Down
8 changes: 7 additions & 1 deletion spec/realtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ components:
EndOfUtterance:
summary: |
Indicates the end of an utterance, triggered by a configurable period of non-speech.
The message is sent when no speech has been detected for a short period of time, configurable by the `end_of_utterance_silence_trigger` parameter in `conversation_config` (see [End Of Utterance](https://docs.speechmatics.com/speech-to-text/realtime/end-of-turn#end-of-utterance-configuration)).
The message is sent when no speech has been detected for a short period of time, configurable by the `end_of_utterance_silence_trigger` parameter in `conversation_config` (see [End Of Utterance](https://docs.speechmatics.com/speech-to-text/realtime/end-of-utterance#end-of-utterance-configuration)).

Like punctuation, an `EndOfUtterance` has zero duration.
payload:
Expand Down Expand Up @@ -565,6 +565,9 @@ components:
const: AudioEventStarted
event:
$ref: "#/components/schemas/AudioEventStartData"
channel:
type: string
description: The channel identifier to which the audio belongs. This field is only seen in multichannel.
required:
- message
- event
Expand All @@ -575,6 +578,9 @@ components:
const: AudioEventEnded
event:
$ref: "#/components/schemas/AudioEventEndData"
channel:
type: string
description: The channel identifier to which the audio belongs. This field is only seen in multichannel.
required:
- message
- event
Expand Down