Spaces:
Sleeping
Sleeping
Fix: Resolve SyntaxError in app.py and add demo link to README
Browse files- README.md +2 -0
- backend/app.py +1 -5
README.md
CHANGED
@@ -10,3 +10,5 @@ pinned: false
|
|
10 |
---
|
11 |
|
12 |
This Space hosts a Gradio application for video analysis, exposing tools for Multi-Channel Processing (MCP).
|
|
|
|
|
|
10 |
---
|
11 |
|
12 |
This Space hosts a Gradio application for video analysis, exposing tools for Multi-Channel Processing (MCP).
|
13 |
+
|
14 |
+
Hackathon Demo Video: https://www.loom.com/share/0ea7a160a3b240a399344d25b1d23a05?sid=28891b9f-7290-469f-b193-6c006277658c
|
backend/app.py
CHANGED
@@ -134,11 +134,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
134 |
# BACKEND_VIDEO_URL = "https://your-modal-or-backend-url/process_video_analysis"
|
135 |
# BACKEND_TOPIC_URL = "https://your-modal-or-backend-url/analyze_topic"
|
136 |
|
137 |
-
demo.launch()
|
138 |
-
"https://sample-videos.com/zip/10/mp4/SampleVideo_1280x720_1mb.mp4"
|
139 |
-
],
|
140 |
-
inputs=input_text
|
141 |
-
)
|
142 |
gr.Markdown("**Processing can take several minutes** depending on video length and model inference times. The cache on the Modal backend will speed up repeated requests for the same video.")
|
143 |
|
144 |
with gr.Tab("Demo (for Manual Testing)"):
|
|
|
134 |
# BACKEND_VIDEO_URL = "https://your-modal-or-backend-url/process_video_analysis"
|
135 |
# BACKEND_TOPIC_URL = "https://your-modal-or-backend-url/analyze_topic"
|
136 |
|
137 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
138 |
gr.Markdown("**Processing can take several minutes** depending on video length and model inference times. The cache on the Modal backend will speed up repeated requests for the same video.")
|
139 |
|
140 |
with gr.Tab("Demo (for Manual Testing)"):
|