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') -