github speechmatics/speechmatics-python-sdk batch/v0.4.8

5 hours ago

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' .speakers property 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

Full Changelog: batch/v0.4.7...batch/v0.4.8

Don't miss a new speechmatics-python-sdk release

NewReleases is sending notifications on new releases.