Spaces:
Running
Running
app.py
#4
by boka773 - opened
app.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def cineflow_info():
|
| 4 |
+
return "CineFlow Studio is a client-side video generator using FFmpeg.js."
|
| 5 |
+
|
| 6 |
+
with gr.Blocks() as demo:
|
| 7 |
+
gr.Markdown("## 🎬 CineFlow Studio")
|
| 8 |
+
gr.Markdown("This Space runs entirely client-side with FFmpeg.js. No DeepSite dependency.")
|
| 9 |
+
gr.Button("Check Status").click(cineflow_info, None, gr.Textbox())
|
| 10 |
+
|
| 11 |
+
if __name__ == "__main__":
|
| 12 |
+
demo.launch()
|