whisper_full method

int whisper_full(
  1. Pointer<whisper_context> ctx,
  2. whisper_full_params params,
  3. Pointer<Float> samples,
  4. 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,
  );
}