freealise commited on
Commit
31e2f1d
·
verified ·
1 Parent(s): 0c6d32c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -88,7 +88,7 @@ def get_frames(video_in, step, name, resize_w):
88
  def create_video(frames, fps, type):
89
  print("building video result")
90
  for j, img in enumerate(frames):
91
- frames[j] = cv2.cvtColor(cv2.imread(img).astype(np.uint8), cv2.COLOR_RGB2RGBA).astype(np.uint32)
92
 
93
  mediapy.write_video(type + "_result.mp4", frames, fps=fps, codec='hevc', encoded_format='rgba')
94
 
 
88
  def create_video(frames, fps, type):
89
  print("building video result")
90
  for j, img in enumerate(frames):
91
+ frames[j] = cv2.cvtColor(cv2.imread(img).astype(np.uint8), cv2.COLOR_RGB2RGBA)
92
 
93
  mediapy.write_video(type + "_result.mp4", frames, fps=fps, codec='hevc', encoded_format='rgba')
94