fffiloni commited on
Commit
dc56c09
·
1 Parent(s): e8427ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -17,11 +17,11 @@ def find_scenes(video_path, threshold=27.0):
17
 
18
  #print(scene_list)
19
 
20
- shot_in = scene_list[0][0].get_frames()
21
- shot_out = scene_list[0][1].get_frames()
22
  #print(shot_in, shot_out)
23
 
24
- video_out = ffmpeg_extract_subclip(video_path, shot_in, shot_out, targetname=shot_in + "_" + shot_out + "video_out.mp4")
25
 
26
  return scene_list, video_out
27
 
 
17
 
18
  #print(scene_list)
19
 
20
+ shot_in = int(scene_list[0][0].get_frames())
21
+ shot_out = int(scene_list[0][1].get_frames())
22
  #print(shot_in, shot_out)
23
 
24
+ video_out = ffmpeg_extract_subclip(video_path, shot_in, shot_out, targetname="video_out.mp4")
25
 
26
  return scene_list, video_out
27