whisper_full method
int
whisper_full(
- Pointer<
whisper_context> ctx, - whisper_full_params params,
- Pointer<
Float> samples, - int n_samples,
Run the entire model: PCM -> log mel spectrogram -> encoder -> decoder -> text Not thread safe for same context Uses the specified decoding strategy to obtain the text.
Implementation
int whisper_full(
ffi.Pointer<whisper_context> ctx,
whisper_full_params params,
ffi.Pointer<ffi.Float> samples,
int n_samples,
) {
return _whisper_full(
ctx,
params,
samples,
n_samples,
);
}