Update app.py
Browse files
app.py
CHANGED
@@ -64,11 +64,11 @@ def run_inference(prompt, image, pose_type, speed, use_flow_integration, cam_pos
|
|
64 |
|
65 |
video_path = None
|
66 |
try:
|
67 |
-
print("π Starting inference...")
|
68 |
os.makedirs("input_images", exist_ok=True)
|
69 |
image_path = "input_images/input_image.png"
|
70 |
image.save(image_path)
|
71 |
-
print(f"πΈ Saved input image to {image_path}")
|
72 |
|
73 |
generate_video(
|
74 |
prompt=prompt,
|
|
|
64 |
|
65 |
video_path = None
|
66 |
try:
|
67 |
+
print("π Starting inference...", flush=True)
|
68 |
os.makedirs("input_images", exist_ok=True)
|
69 |
image_path = "input_images/input_image.png"
|
70 |
image.save(image_path)
|
71 |
+
print(f"πΈ Saved input image to {image_path}", flush=True)
|
72 |
|
73 |
generate_video(
|
74 |
prompt=prompt,
|