What's Changed
Breaking Change: transcribe_samples() API
Changed signature from (audio, WavSpec) to (audio, sample_rate, channels) to remove hound dependency from public API.
Before (v0.1.6):
parakeet.transcribe_samples(audio, wav_spec)?After (v0.1.7):
parakeet.transcribe_samples(audio, 16000, 1)? // sample_rate, channels- transcribe_file() unchanged
- See examples/raw.rs for usage
Pull Requests
- Add transcribe_raw() API for in-memory audio without WavSpec by @altunenes in #13
- Consolidated the API for transcribing in-memory audio by @altunenes in #14