Spaces:
Runtime error
Runtime error
mschiesser
commited on
Commit
·
65c1d15
1
Parent(s):
41d1ead
support HF spaces
Browse files- ai_video_cli/gradio.py +0 -3
- app.py +4 -0
- requirements.txt +6 -0
ai_video_cli/gradio.py
CHANGED
@@ -27,6 +27,3 @@ iface = gr.Interface(
|
|
27 |
|
28 |
def launch():
|
29 |
iface.launch()
|
30 |
-
|
31 |
-
if __name__ == "__main__":
|
32 |
-
launch()
|
|
|
27 |
|
28 |
def launch():
|
29 |
iface.launch()
|
|
|
|
|
|
app.py
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from ai_video_cli.gradio import launch
|
2 |
+
|
3 |
+
if __name__ == "__main__":
|
4 |
+
launch()
|
requirements.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
moviepy==1.0.3
|
2 |
+
numpy==1.26.0
|
3 |
+
pillow==9.0.0
|
4 |
+
opencv-python==4.10.0.84
|
5 |
+
ultralytics==8.3.13
|
6 |
+
gradio==5.1.0
|