whisper_full_get_segment_no_speech_prob method

double whisper_full_get_segment_no_speech_prob(
  1. Pointer<whisper_context> ctx,
  2. int i_segment
)

Get the no_speech probability for the specified segment

Implementation

double whisper_full_get_segment_no_speech_prob(
  ffi.Pointer<whisper_context> ctx,
  int i_segment,
) {
  return _whisper_full_get_segment_no_speech_prob(
    ctx,
    i_segment,
  );
}