undefined
Interface: TranscriberCallbacks
Defined in: transcriber.ts:31
Callbacks are invoked at different phases of the lifecycle as audio is transcribed. You can control the behavior of the application in response to model loading, starting of transcription, stopping of transcription, and updates to the transcription of the audio stream.
Properties
Property | Type | Defined in |
---|---|---|
onModelLoaded |
() => any |
transcriber.ts:34 |
onModelLoadStarted |
() => any |
transcriber.ts:32 |
onSpeechEnd |
() => any |
transcriber.ts:46 |
onSpeechStart |
() => any |
transcriber.ts:44 |
onTranscribeStarted |
() => any |
transcriber.ts:36 |
onTranscribeStopped |
() => any |
transcriber.ts:38 |
onTranscriptionCommitted |
(text : string ) => any |
transcriber.ts:42 |
onTranscriptionUpdated |
(text : string ) => any |
transcriber.ts:40 |