fffiloni commited on
Commit
cdd554b
·
1 Parent(s): cb76ea2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -173,7 +173,7 @@ def run_inference(prompt, video_path, condition, video_length):
173
  os.remove(os.path.join(output_path, f"result.mp4"))
174
 
175
  if video_length > 12:
176
- command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{resized}' --output_path '{output_path}' --width 512 --height 512 --fps {target_fps} --video_length {video_length} --is_long_video"
177
  else:
178
  command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{resized}' --output_path '{output_path}' --temp_chunk_path 'result' --width 512 --height 512 --fps {target_fps} --video_length {video_length}"
179
  subprocess.run(command, shell=True)
 
173
  os.remove(os.path.join(output_path, f"result.mp4"))
174
 
175
  if video_length > 12:
176
+ command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{resized}' --output_path '{output_path}' --temp_chunk_path 'result' --width 512 --height 512 --fps {target_fps} --video_length {video_length} --is_long_video"
177
  else:
178
  command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{resized}' --output_path '{output_path}' --temp_chunk_path 'result' --width 512 --height 512 --fps {target_fps} --video_length {video_length}"
179
  subprocess.run(command, shell=True)