Skip to content

Commit aba5e09

Browse files
by default we should get the ffmpeg output
Signed-off-by: thiswillbeyourgithub <[email protected]>
1 parent b3dcff2 commit aba5e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/subsai/models/whisper_api_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def convert_video_to_audio_ffmpeg(video_file, output_ext="mp3"):
3737
.input(video_file)
3838
.output(output_file)
3939
.overwrite_output()
40-
.run(quiet=True)
40+
.run(quiet=False)
4141
)
4242
return output_file
4343

0 commit comments

Comments
 (0)