Skip to content

Commit

Permalink
'#1823: update error message about missing libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
lfcnassif committed May 25, 2024
1 parent 25654b8 commit a60330a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected Server startServer0(int device) throws IOException {
String line = reader.readLine();

if (!LIBRARY_LOADED.equals(line)) {
throw new StartupException("'whisperx' python lib not loaded correctly. Have you installed it?");
throw new StartupException("Neither 'faster_whisper' nor 'whisperx' python libraries were loaded correctly. Have you installed one of them?");
}

int cudaCount = Integer.valueOf(reader.readLine());
Expand Down

0 comments on commit a60330a

Please sign in to comment.