whisper_lang_str method

Pointer<Char> whisper_lang_str(
  1. int id
)

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

Implementation

ffi.Pointer<ffi.Char> whisper_lang_str(
  int id,
) {
  return _whisper_lang_str(
    id,
  );
}