getWhisperGplNativeLibraryPath method

String getWhisperGplNativeLibraryPath({
  1. String pathWhisperGplNativeLibrary = "",
})

return default whisper name library getWhisperGplNativeLibraryPath

libwhisper_gpl.so

Implementation

String getWhisperGplNativeLibraryPath({
  String pathWhisperGplNativeLibrary = "",
}) {
  if (pathWhisperGplNativeLibrary.isEmpty) {
    return "libwhisper_gpl.${getLibraryExtension()}";
  }
  return pathWhisperGplNativeLibrary;
}