🔇(summary) make ffmpeg quiet

In the refactoring of the prepare pipeline, ffmpeg
was added in non quiet mode.
This commit is contained in:
Florent Chehab
2026-06-04 10:21:38 +02:00
parent 61d0043790
commit d9804172e7
2 changed files with 6 additions and 1 deletions
+2
View File
@@ -224,6 +224,8 @@ def extract_audio_from_video(media_info: MediaInfo) -> Path:
extract_command = [
"ffmpeg",
"-v",
"quiet",
"-i",
str(media_info.path),
"-vn",