reduce ffmpeg output

This commit is contained in:
j 2015-09-16 15:04:44 +01:00
parent 8f3b3036df
commit 65fb9ccb6d
1 changed files with 3 additions and 1 deletions

View File

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