Ubuntu commited on
Commit
a3c87e3
·
1 Parent(s): d328d4c
Files changed (2) hide show
  1. .ipynb_checkpoints/app-checkpoint.py +1 -1
  2. app.py +1 -1
.ipynb_checkpoints/app-checkpoint.py CHANGED
@@ -6,7 +6,7 @@ import torch
6
 
7
  def video_identity(filepath):
8
  vid = EncodedVideo.from_path(filepath)
9
- write_video('out.mp4', vid)
10
  capture = cv2.VideoCapture('out.mp4')
11
  while (True):
12
 
 
6
 
7
  def video_identity(filepath):
8
  vid = EncodedVideo.from_path(filepath)
9
+ write_video('out.mp4', vid, fps=60)
10
  capture = cv2.VideoCapture('out.mp4')
11
  while (True):
12
 
app.py CHANGED
@@ -6,7 +6,7 @@ import torch
6
 
7
  def video_identity(filepath):
8
  vid = EncodedVideo.from_path(filepath)
9
- write_video('out.mp4', vid)
10
  capture = cv2.VideoCapture('out.mp4')
11
  while (True):
12
 
 
6
 
7
  def video_identity(filepath):
8
  vid = EncodedVideo.from_path(filepath)
9
+ write_video('out.mp4', vid, fps=60)
10
  capture = cv2.VideoCapture('out.mp4')
11
  while (True):
12