Spaces:
Sleeping
Sleeping
add debug message
Browse files- gradio/app.py +2 -0
gradio/app.py
CHANGED
|
@@ -29,6 +29,8 @@ OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
|
|
| 29 |
|
| 30 |
@spaces.GPU
|
| 31 |
def generate_video_from_image(image: Image.Image) -> str:
|
|
|
|
|
|
|
| 32 |
video_id = uuid.uuid4().hex
|
| 33 |
output_path = OUTPUT_DIR / f"{video_id}.mp4"
|
| 34 |
|
|
|
|
| 29 |
|
| 30 |
@spaces.GPU
|
| 31 |
def generate_video_from_image(image: Image.Image) -> str:
|
| 32 |
+
print("Generating video")
|
| 33 |
+
|
| 34 |
video_id = uuid.uuid4().hex
|
| 35 |
output_path = OUTPUT_DIR / f"{video_id}.mp4"
|
| 36 |
|