whisper_full_n_tokens method

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

Get number of tokens in the specified segment

Implementation

int whisper_full_n_tokens(
  ffi.Pointer<whisper_context> ctx,
  int i_segment,
) {
  return _whisper_full_n_tokens(
    ctx,
    i_segment,
  );
}