From 9747d89f929bc88116fc2e724959dcd4944e6684 Mon Sep 17 00:00:00 2001 From: sachaarbonel Date: Thu, 26 Sep 2024 15:17:00 +0200 Subject: [PATCH] mention Speaker Diarization --- .../docusaurus/docs/api/transcription/transcribing_calls.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docusaurus/video/docusaurus/docs/api/transcription/transcribing_calls.mdx b/docusaurus/video/docusaurus/docs/api/transcription/transcribing_calls.mdx index fd999ff6..5e71c217 100644 --- a/docusaurus/video/docusaurus/docs/api/transcription/transcribing_calls.mdx +++ b/docusaurus/video/docusaurus/docs/api/transcription/transcribing_calls.mdx @@ -151,6 +151,8 @@ These events are sent to users connected to the call and your webhook/SQS: ## Transcription JSONL file format +Speaker Diarization is implemented in the transcription process to automatically identify and separate different speakers within the call. Each speech segment is labeled with a unique speaker_id to distinguish between speakers. + ```json {"type":"speech", "start_time": "2024-02-28T08:18:18.061031795Z", "stop_time":"2024-02-28T08:18:22.401031795Z", "speaker_id": "Sacha_Arbonel", "text": "hello"} {"type":"speech", "start_time": "2024-02-28T08:18:22.401031795Z", "stop_time":"2024-02-28T08:18:26.741031795Z", "speaker_id": "Sacha_Arbonel", "text": "how are you"}