fix output directory parameter
This commit is contained in:
parent
30d7a061b6
commit
415cebf942
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ fn transcribe_call(file_path: &Path) {
|
|||
.args(["--batch_size", "4"])
|
||||
.args(["--compute_type", "int8"])
|
||||
.args(["--output_format", "txt"])
|
||||
.args(["--output directory", output_directory.parent().unwrap().to_str().unwrap()])
|
||||
.args(["--output_dir", output_directory.parent().unwrap().to_str().unwrap()])
|
||||
.arg("file")
|
||||
.output().expect("TODO: panic message");
|
||||
info!("Transcription done, {}", &output.status);
|
||||
|
|
|
|||
Loading…
Reference in a new issue