fffiloni commited on
Commit
b0607ed
·
1 Parent(s): 0560438

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -30,11 +30,11 @@ def run_inference(prompt, video_path, condition, video_length):
30
  # Call the function to get the video properties
31
  video_length = get_frame_count_in_duration(video_path, video_length)
32
  print(video_length)
33
- video_length = int(video_length)
34
  #video_length = int(video_length * fps)
35
  output_path = 'output/'
36
  os.makedirs(output_path, exist_ok=True)
37
- command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --video_length {video_length} --smoother_steps 19 20"
38
  subprocess.run(command, shell=True)
39
 
40
  # Construct the video path
 
30
  # Call the function to get the video properties
31
  video_length = get_frame_count_in_duration(video_path, video_length)
32
  print(video_length)
33
+ nb_frame = int(video_length)
34
  #video_length = int(video_length * fps)
35
  output_path = 'output/'
36
  os.makedirs(output_path, exist_ok=True)
37
+ command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --video_length {nb_frame} --smoother_steps 19 20"
38
  subprocess.run(command, shell=True)
39
 
40
  # Construct the video path