whisper_full_get_segment_text method

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

Get the text of the specified segment

Implementation

ffi.Pointer<ffi.Char> whisper_full_get_segment_text(
  ffi.Pointer<whisper_context> ctx,
  int i_segment,
) {
  return _whisper_full_get_segment_text(
    ctx,
    i_segment,
  );
}