Silenced ffmpeg output

This commit is contained in:
Matthieu Grieger 2014-09-23 08:51:42 -07:00
parent 389fe7e765
commit 48e4eea70a

View file

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