Skip to content

Commit

Permalink
fix(cmd): Fix the whisper command
Browse files Browse the repository at this point in the history
  • Loading branch information
rishikanthc authored Oct 16, 2024
1 parent 15ca524 commit 9e8fb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const worker = new Worker(
if (err) throw err;
});

let whisperCmd = `./whisper.cpp/main -m ./whisper.cpp/models/ggml-${settings.model}.en.bin -f ${ffmpegPath} -oj -of ${transcriptPath} -t ${settings.threads} -p ${settings.processors} -pp`;
let whisperCmd = `whisper -m /models/ggml-${settings.model}.en.bin -f ${ffmpegPath} -oj -of ${transcriptPath} -t ${settings.threads} -p ${settings.processors} -pp`;

let rttmContent;
let segments;
Expand Down

0 comments on commit 9e8fb53

Please sign in to comment.