whisper_lang_str_full method

Pointer<Char> whisper_lang_str_full(
  1. int id
)

Return the short string of the specified language name (e.g. 2 -> "german"), returns nullptr if not found

Implementation

ffi.Pointer<ffi.Char> whisper_lang_str_full(
  int id,
) {
  return _whisper_lang_str_full(
    id,
  );
}