Moibe commited on
Commit
d125f21
1 Parent(s): c1faa16

Another try

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -7,6 +7,7 @@ def greet(input_video):
7
  # Guardar el video en un archivo
8
  #video_origen.save("video_guardado.mp4")
9
  consola.value = "Hola mundo"
 
10
  return input_video
11
 
12
  #iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
@@ -19,5 +20,5 @@ with gr.Blocks() as demo:
19
  btn = gr.Button("Run")
20
  btn.click(greet, input, output)
21
  consola = gr.Textbox()
22
-
23
  demo.launch()
 
7
  # Guardar el video en un archivo
8
  #video_origen.save("video_guardado.mp4")
9
  consola.value = "Hola mundo"
10
+ consola.update()
11
  return input_video
12
 
13
  #iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
 
20
  btn = gr.Button("Run")
21
  btn.click(greet, input, output)
22
  consola = gr.Textbox()
23
+
24
  demo.launch()