alexnasa commited on
Commit
85d9aa0
·
verified ·
1 Parent(s): c6449a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -153,7 +153,7 @@ def generate_splat_from_video(video_path, session_id=None):
153
  if session_id is None:
154
  session_id = uuid.uuid4().hex
155
 
156
- target_dir, image_paths = extract_frames(input_video, session_id)
157
 
158
  return generate_splat_from_images(images_folder, session_id), image_paths
159
 
 
153
  if session_id is None:
154
  session_id = uuid.uuid4().hex
155
 
156
+ images_folder, image_paths = extract_frames(video_path, session_id)
157
 
158
  return generate_splat_from_images(images_folder, session_id), image_paths
159