Omnibus commited on
Commit
47fb88b
·
1 Parent(s): 32c6768

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ def im_2_vid(images,fps):
61
  print (width,height)
62
  size = (width, height)
63
  codec = cv2.VideoWriter_fourcc(*'mp4v') #DIVX, DIVD
64
- video = cv2.VideoWriter(vidName, codec, fps, size)
65
  for img in images:
66
  video.write(img)
67
  return (video)
 
61
  print (width,height)
62
  size = (width, height)
63
  codec = cv2.VideoWriter_fourcc(*'mp4v') #DIVX, DIVD
64
+ video = cv2.VideoWriter("tmp_vid.mp4", codec, fps, size)
65
  for img in images:
66
  video.write(img)
67
  return (video)