Update app.py
Browse files
app.py
CHANGED
@@ -99,7 +99,7 @@ def create_video(frames, fps, type):
|
|
99 |
maskclip.to_mask(canal=1)
|
100 |
clip.set_mask(maskclip)
|
101 |
|
102 |
-
clip.write_videofile(type + "_result.webm", fps=fps, codec='libvpx',
|
103 |
|
104 |
return type + "_result.webm"
|
105 |
|
|
|
99 |
maskclip.to_mask(canal=1)
|
100 |
clip.set_mask(maskclip)
|
101 |
|
102 |
+
clip.write_videofile(type + "_result.webm", fps=fps, codec='libvpx', ffmpeg_params=['-c:v', 'libvpx-vp9'], audio=False)
|
103 |
|
104 |
return type + "_result.webm"
|
105 |
|