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