Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -110,9 +110,9 @@ def run_inference(prompt, video_path, condition, video_length):
|
|
110 |
os.remove(video_path_output)
|
111 |
|
112 |
if video_length > 12:
|
113 |
-
command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width
|
114 |
else:
|
115 |
-
command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width
|
116 |
subprocess.run(command, shell=True)
|
117 |
|
118 |
# Construct the video path
|
|
|
110 |
os.remove(video_path_output)
|
111 |
|
112 |
if video_length > 12:
|
113 |
+
command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length} --is_long_video"
|
114 |
else:
|
115 |
+
command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length}"
|
116 |
subprocess.run(command, shell=True)
|
117 |
|
118 |
# Construct the video path
|