Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -709,13 +709,17 @@ with gr.Blocks() as iface:
|
|
| 709 |
gr.Markdown("Transcribe audio using multiple pipelines and (Faster) Whisper models.")
|
| 710 |
|
| 711 |
with gr.Row():
|
| 712 |
-
|
| 713 |
-
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
|
| 718 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 719 |
|
| 720 |
transcribe_button = gr.Button("Transcribe")
|
| 721 |
|
|
|
|
| 709 |
gr.Markdown("Transcribe audio using multiple pipelines and (Faster) Whisper models.")
|
| 710 |
|
| 711 |
with gr.Row():
|
| 712 |
+
# Left Side
|
| 713 |
+
with gr.Column():
|
| 714 |
+
audio_input = gr.Audio(label="Upload or Record Audio", sources=["upload", "microphone"], type="filepath")
|
| 715 |
+
|
| 716 |
+
# Right Side
|
| 717 |
+
with gr.Column():
|
| 718 |
+
audio_url = gr.Textbox(label="Or Enter URL of audio file or video")
|
| 719 |
+
tos_checkbox = gr.Checkbox(
|
| 720 |
+
label="I confirm that I have the right to download this content and am complying with the platform's Terms of Service and applicable copyright laws.",
|
| 721 |
+
value=False
|
| 722 |
+
)
|
| 723 |
|
| 724 |
transcribe_button = gr.Button("Transcribe")
|
| 725 |
|