charliebaby2023 commited on
Commit
533bbc3
1 Parent(s): bf91790

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -8,10 +8,11 @@ def app(video_link):
8
 
9
  interface = gr.Interface(
10
  fn=app,
 
11
  inputs=gr.Textbox(data, label="Enter YouTube link"),
12
  outputs=gr.Video(label = "video_path")
13
  )
14
-
15
  interface.launch(debug=True)
16
 
17
 
 
8
 
9
  interface = gr.Interface(
10
  fn=app,
11
+
12
  inputs=gr.Textbox(data, label="Enter YouTube link"),
13
  outputs=gr.Video(label = "video_path")
14
  )
15
+ gr.Interface.queue(api_open=True)
16
  interface.launch(debug=True)
17
 
18