Spaces:
Runtime error
Runtime error
Moibe
commited on
Commit
•
b1b5fc5
1
Parent(s):
9aaa5be
Fix Launch
Browse files
app.py
CHANGED
@@ -4,13 +4,14 @@ def greet(input_video):
|
|
4 |
print("Imprimiendo en Consola")
|
5 |
return input_video
|
6 |
|
7 |
-
def carga_consola():
|
8 |
-
return "Hola Mundo"
|
9 |
|
10 |
#iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
|
11 |
#gr.show()
|
12 |
|
13 |
with gr.Blocks() as demo:
|
|
|
14 |
with gr.Row():
|
15 |
input = gr.Video()
|
16 |
output = gr.Video()
|
@@ -20,4 +21,4 @@ with gr.Blocks() as demo:
|
|
20 |
#consola = gr.Textbox()
|
21 |
#demo.load(carga_consola, None, consola)
|
22 |
|
23 |
-
demo.
|
|
|
4 |
print("Imprimiendo en Consola")
|
5 |
return input_video
|
6 |
|
7 |
+
#def carga_consola():
|
8 |
+
# return "Hola Mundo"
|
9 |
|
10 |
#iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
|
11 |
#gr.show()
|
12 |
|
13 |
with gr.Blocks() as demo:
|
14 |
+
print("Imprimiendo en Arranque...")
|
15 |
with gr.Row():
|
16 |
input = gr.Video()
|
17 |
output = gr.Video()
|
|
|
21 |
#consola = gr.Textbox()
|
22 |
#demo.load(carga_consola, None, consola)
|
23 |
|
24 |
+
demo.launch()
|