fix mp4 encoding in ubuntu 14.04
This commit is contained in:
parent
ceb507020b
commit
e4c6a671a6
1 changed files with 2 additions and 1 deletions
|
@ -211,7 +211,8 @@ def stream(video, target, profile, info, avconv=None, audio_track=0):
|
||||||
'-vcodec', 'libx264',
|
'-vcodec', 'libx264',
|
||||||
'-preset:v', 'medium',
|
'-preset:v', 'medium',
|
||||||
'-profile:v', 'baseline',
|
'-profile:v', 'baseline',
|
||||||
'-level', '3.0',
|
# does not work with avconv in Ubuntu 14.04 yet
|
||||||
|
#'-level', '3.0',
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
video_settings += [
|
video_settings += [
|
||||||
|
|
Loading…
Reference in a new issue