whisper_full_get_token_text method
Pointer<Char>
whisper_full_get_token_text(
- Pointer<
whisper_context> ctx, - int i_segment,
- int i_token
Get the token text of the specified token in the specified segment
Implementation
ffi.Pointer<ffi.Char> whisper_full_get_token_text(
ffi.Pointer<whisper_context> ctx,
int i_segment,
int i_token,
) {
return _whisper_full_get_token_text(
ctx,
i_segment,
i_token,
);
}