fix model parameter

This commit is contained in:
Christopher Moyer 2024-12-17 18:06:30 -05:00
parent b34f97fa4d
commit 30d7a061b6

View file

@ -88,7 +88,7 @@ fn transcribe_call(file_path: &Path) {
let output_directory = file_path.parent().unwrap();
let output = Command::new("whisperx")
.args(["--language", "en"])
.args(["--model", "largev3"])
.args(["--model", "large-v3"])
.args(["--batch_size", "4"])
.args(["--compute_type", "int8"])
.args(["--output_format", "txt"])