cstr commited on
Commit
a08eefe
·
verified ·
1 Parent(s): 55c03a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -7
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
- audio_input = gr.Audio(label="Upload or Record Audio", sources=["upload", "microphone"], type="filepath")
713
- audio_url = gr.Textbox(label="Or Enter URL of audio file or video")
714
-
715
- tos_checkbox = gr.Checkbox(
716
- 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.",
717
- value=False
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