whisper_full_n_segments method

int whisper_full_n_segments(
  1. Pointer<whisper_context> ctx
)

Number of generated text segments A segment can be a few words, a sentence, or even a paragraph.

Implementation

int whisper_full_n_segments(
  ffi.Pointer<whisper_context> ctx,
) {
  return _whisper_full_n_segments(
    ctx,
  );
}