Existance commited on
Commit
3d6b53c
·
1 Parent(s): 633f420

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -9
app.py CHANGED
@@ -16,20 +16,16 @@ def _return_yt_html_embed(yt_url):
16
  return HTML_str
17
 
18
 
19
- with gr.Blocks(title='YT-Video-Viewer') as demo:
20
- gr.Markdown("YT-Video-Viewer")
21
-
22
- URL = gr.Textbox("Enter URL here", interactive=True,label="Youtube URL")
23
-
24
- gr.Interface(
25
  fn=_return_yt_html_embed,
26
- inputs=[URL],
27
  # outputs=["html", "text"],
28
- outputs=["html"],
29
  layout="horizontal",
30
  theme="huggingface",
31
  title="YouTube Video Viwer",
32
  description=("YouTube Video Viwer"),
33
  allow_flagging="never",
34
  )
35
- demo.queue(max_size=20).launch(debug=True)
 
 
16
  return HTML_str
17
 
18
 
19
+ demo = gr.Interface(
 
 
 
 
 
20
  fn=_return_yt_html_embed,
21
+ inputs="text",
22
  # outputs=["html", "text"],
23
+ outputs="html",
24
  layout="horizontal",
25
  theme="huggingface",
26
  title="YouTube Video Viwer",
27
  description=("YouTube Video Viwer"),
28
  allow_flagging="never",
29
  )
30
+
31
+ demo.queue(max_size=20).launch(debug=True,share=True)