From 65fb9ccb6d5241a3d11248f82e167c34a6a76699 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 16 Sep 2015 15:04:44 +0100 Subject: [PATCH] reduce ffmpeg output --- pandora/archive/extract.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 8d654966..f0c9566a 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -224,7 +224,9 @@ def stream(video, target, profile, info, audio_track=0): else: audio_settings = ['-an'] - cmd = [settings.FFMPEG, '-y', '-i', video, '-threads', '4', '-map_metadata', '-1', '-sn'] \ + cmd = [settings.FFMPEG, + '-nostats', '-loglevel', 'error', + '-y', '-i', video, '-threads', '4', '-map_metadata', '-1', '-sn'] \ + audio_settings \ + video_settings