forked from 0x2620/pandora
reduce ffmpeg output
This commit is contained in:
parent
8f3b3036df
commit
65fb9ccb6d
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue