finish
Browse files- App/Generate/database/Video3d.py +17 -17
App/Generate/database/Video3d.py
CHANGED
@@ -44,14 +44,14 @@ class VideoGenerator:
|
|
44 |
print(
|
45 |
f"Video {output_file} is ready but the file size is zero, retrying in 10 seconds..."
|
46 |
)
|
47 |
-
await asyncio.sleep(
|
48 |
elif response.status == 404:
|
49 |
data = await response.json()
|
50 |
if data.get("detail") == "Video not found":
|
51 |
print(
|
52 |
f"Video {output_file} not ready yet, retrying in 10 seconds..."
|
53 |
)
|
54 |
-
await asyncio.sleep(
|
55 |
else:
|
56 |
print(f"Unexpected response for {output_file}: {data}")
|
57 |
return None
|
@@ -101,20 +101,20 @@ class VideoGenerator:
|
|
101 |
return nested_video_urls
|
102 |
|
103 |
|
104 |
-
#
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
#
|
114 |
-
|
115 |
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
|
120 |
-
|
|
|
44 |
print(
|
45 |
f"Video {output_file} is ready but the file size is zero, retrying in 10 seconds..."
|
46 |
)
|
47 |
+
await asyncio.sleep(10)
|
48 |
elif response.status == 404:
|
49 |
data = await response.json()
|
50 |
if data.get("detail") == "Video not found":
|
51 |
print(
|
52 |
f"Video {output_file} not ready yet, retrying in 10 seconds..."
|
53 |
)
|
54 |
+
await asyncio.sleep(120)
|
55 |
else:
|
56 |
print(f"Unexpected response for {output_file}: {data}")
|
57 |
return None
|
|
|
101 |
return nested_video_urls
|
102 |
|
103 |
|
104 |
+
# Example usage
|
105 |
+
nested_image_links = [
|
106 |
+
[
|
107 |
+
"https://replicate.delivery/yhqm/mQId1rdf4Z3odCyB7cPsx1KwhHfdRc3w44eYAGNG9AQfV0dMB/out-0.png"
|
108 |
+
],
|
109 |
+
[
|
110 |
+
"https://replicate.delivery/yhqm/mQId1rdf4Z3odCyB7cPsx1KwhHfdRc3w44eYAGNG9AQfV0dMB/out-1.png",
|
111 |
+
"https://replicate.delivery/yhqm/mQId1rdf4Z3odCyB7cPsx1KwhHfdRc3w44eYAGNG9AQfV0dMB/out-2.png",
|
112 |
+
],
|
113 |
+
# Add more nested image links here
|
114 |
+
]
|
115 |
|
116 |
+
loop = asyncio.get_event_loop()
|
117 |
+
video_generator = VideoGenerator()
|
118 |
+
nested_video_urls = loop.run_until_complete(video_generator.run(nested_image_links))
|
119 |
|
120 |
+
print("Generated video URLs:", nested_video_urls)
|