freealise commited on
Commit
b4fedbd
·
verified ·
1 Parent(s): 17533e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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', frmpeg_params=['-c:v', 'libvpx-vp9'], audio=False)
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