From 48e4eea70a59b6800a87d471445346bbe139ae10 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Tue, 23 Sep 2014 08:51:42 -0700 Subject: [PATCH] Silenced ffmpeg output --- mumbledj/download_audio.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mumbledj/download_audio.py b/mumbledj/download_audio.py index 7ea6d4d..87b784d 100644 --- a/mumbledj/download_audio.py +++ b/mumbledj/download_audio.py @@ -30,11 +30,10 @@ except: while isfile('song.ogg.temp'): sleep(1) -system('ffmpeg -i song.ogg -ar 48000 -ac 1 -vol ' + str(volume) + ' song-converted.ogg -y') +system('ffmpeg -i song.ogg -ar 48000 -ac 1 -loglevel quiet -vol ' + str(volume) + ' song-converted.ogg -y') while not isfile('song-converted.ogg') and not isfile(".video_fail"): sleep(1) remove('song.ogg') -