full method

void full(
  1. whisper_full_params wparams,
  2. List<double> pcmf32List
)

Implementation

void full(whisper_full_params wparams, List<double> pcmf32List) {
  Pointer<Float> pcmf32 = allocateFloatPointer(pcmf32List);
  if (WhisperLibrary.binding
          .whisper_full(ctx, wparams, pcmf32, pcmf32List.length) !=
      0) {
    throw Exception("failed to process audio");
  }
}