What's Changed
- Batch SDK now exposes Speaker ID as part of transcript results. This means for Speaker ID and enrolment, you no longer have to resort to raw WebSocket plumbing, and can instead call the transcription results'
.speakersproperty directly.
result = await client.transcribe(audio_file, transcription_config=config)
speakers = result.speakers- Batch SDK now supports audio filtering config:
from speechmatics.batch import, TranscriptionConfig, AudioFilteringConfig
config = TranscriptionConfig(
language="en",
audio_filtering_config=AudioFilteringConfig(volume_threshold=10),
) New Contributors
- @J-Jaywalker made their first contribution in #105
Full Changelog: batch/v0.4.7...batch/v0.4.8