Releases: mybigday/whisper.rn
Releases · mybigday/whisper.rn
Release 0.2.0
0.2.0 (2023-03-27)
This version contains breaking change, you will need to migrate the transcribe usage after upgrading to v0.2:
v0.1.x:
const { result } = await whisperContext.transcribe(sampleFilePath, options)
To (v0.2):
const { stop, promise } = whisperContext.transcribe(sampleFilePath, options)
const { result } = await promise
Features
- Implement abort method for transcribe (#7) (7d39694)
- implement transcribe realtime method (#10) (f63c49f)
Release 0.1.5
0.1.5 (2023-03-24)
Features
- ios: add
-O3 -DNDEBUG
c/c++ flags on release mode (47c7d67)
- set default n_threads to min(4, proc_count) (87d0b02)
Release 0.1.4
0.1.4 (2023-03-21)
Bug Fixes
- ts: add missing transcribe options (c2e8f8c)
Features
- add prompt option on transcribe (#8) (dc2d064)
- support word-level timestamp on transcribe (#9) (6ac4b4e)