A diarization object represents the results of a diarization job.Documentation Index
Fetch the complete documentation index at: https://docs.pyannote.ai/llms.txt
Use this file to discover all available pages before exploring further.
List of diarization segments
Confidence scores details. Only returned if confidence is set to true when job is created
Exclusive diarization segments where only one speaker is active at a time. Only returned if exclusive is set to true when job is created.
Word-level transcription segments with text. Only returned if transcription is set to true when job is created.
[
{
"start": 0.5,
"end": 0.8,
"text": "Hello",
"speaker": "SPEAKER_00"
}
]Turn-level (speaker turn) transcription segments with text. Only returned if transcription is set to true when job is created.
[
{
"start": 0.5,
"end": 2.3,
"text": "Hello, how are you?",
"speaker": "SPEAKER_00"
}
]Error message if any
Warning message if any