Spaces:
Paused
Paused
Abdulrahman1989
commited on
Commit
·
9304db7
1
Parent(s):
65ec2c8
Fix the app.py
Browse files
app.py
CHANGED
@@ -20,8 +20,8 @@ class VideoGenerator:
|
|
20 |
# Preprocess the image first
|
21 |
processed_image = self.processor.preprocess(image)
|
22 |
# Then pass it to reconstruct_and_export
|
23 |
-
|
24 |
-
return
|
25 |
|
26 |
class GradioApp:
|
27 |
def __init__(self):
|
|
|
20 |
# Preprocess the image first
|
21 |
processed_image = self.processor.preprocess(image)
|
22 |
# Then pass it to reconstruct_and_export
|
23 |
+
video_data = self.processor.reconstruct_and_export(processed_image)
|
24 |
+
return video_data
|
25 |
|
26 |
class GradioApp:
|
27 |
def __init__(self):
|