forked from 0x2620/pandora
disable subtitle stream during video conversion
This commit is contained in:
parent
5cd963f80b
commit
f6939ff08e
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ def stream(video, target, profile, info, avconv=None, audio_track=0):
|
||||||
|
|
||||||
if not avconv:
|
if not avconv:
|
||||||
avconv = 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 \
|
+ audio_settings \
|
||||||
+ video_settings
|
+ video_settings
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue