GameReview commited on
Commit
fbdc246
1 Parent(s): a70cd5e

Added thumbnail title

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -192,7 +192,7 @@ with gr.Blocks() as app:
192
  with gr.Tab("Video Details"):
193
  input = gr.Textbox(label="Youtube URL", placeholder = "Place link here")
194
  title = gr.Textbox(label="Title")
195
- thumbnail = gr.Image()
196
  info_btn = gr.Button("Get Video Info!")
197
  info_btn.click(fn=get_vid_details, inputs=input, outputs=[title,thumbnail])
198
  app.launch()
 
192
  with gr.Tab("Video Details"):
193
  input = gr.Textbox(label="Youtube URL", placeholder = "Place link here")
194
  title = gr.Textbox(label="Title")
195
+ thumbnail = gr.Image(label="Thumbnail")
196
  info_btn = gr.Button("Get Video Info!")
197
  info_btn.click(fn=get_vid_details, inputs=input, outputs=[title,thumbnail])
198
  app.launch()