disable subtitle stream during video conversion

This commit is contained in:
j 2014-08-04 16:08:49 +02:00
parent 5cd963f80b
commit f6939ff08e
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ def stream(video, target, profile, info, avconv=None, audio_track=0):
if not avconv:
avconv = AVCONV
cmd = [avconv, '-y', '-i', video, '-threads', '4', '-map_metadata', '-1'] \
cmd = [avconv, '-y', '-i', video, '-threads', '4', '-map_metadata', '-1', '-sn'] \
+ audio_settings \
+ video_settings