Spaces:
Runtime error
Runtime error
Commit
·
7c14f9b
1
Parent(s):
ef2021d
added label to dropdown
Browse files
app.py
CHANGED
@@ -32,11 +32,11 @@ footer {visibility: hidden}
|
|
32 |
}
|
33 |
"""
|
34 |
|
35 |
-
with gr.Blocks(title="
|
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"):
|