🔇(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
+4 -1
View File
@@ -8,11 +8,14 @@ and this project adheres to
## [Unreleased]
### Changed
- 🐛(agents) fix bug when closing metadata-collector
### Fixed
- 🔇(summary) make ffmpeg quiet #1404
## [1.18.0] - 2026-06-03
### Added
+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",