datasciencedojo commited on
Commit
7c14f9b
·
1 Parent(s): ef2021d

added label to dropdown

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -32,11 +32,11 @@ footer {visibility: hidden}
32
  }
33
  """
34
 
35
- with gr.Blocks(title="Wikipedia Article Scrape | Data Science Dojo", css = css) as demo:
36
 
37
 
38
  input1 = gr.Textbox(label="Enter YouTube Link",value='',lines=1)
39
- input2 = gr.Dropdown(opts)
40
  with gr.Tab("Transcript"):
41
  output1 = gr.Textbox(label="Transcript",lines=10)
42
  with gr.Tab("Translated Transcript"):
 
32
  }
33
  """
34
 
35
+ with gr.Blocks(title="YouTube Video Transcript Generator | Data Science Dojo", css = css) as demo:
36
 
37
 
38
  input1 = gr.Textbox(label="Enter YouTube Link",value='',lines=1)
39
+ input2 = gr.Dropdown(label="Select Transcript Translation Language", choices=opts)
40
  with gr.Tab("Transcript"):
41
  output1 = gr.Textbox(label="Transcript",lines=10)
42
  with gr.Tab("Translated Transcript"):