Spaces:
Sleeping
Sleeping
layout update
Browse files
app.py
CHANGED
@@ -129,6 +129,7 @@ with gr.Blocks() as demo:
|
|
129 |
with gr.Row():
|
130 |
audio_input = gr.Audio(sources=["upload", "microphone"], type="filepath", label="Audio Input")
|
131 |
|
|
|
132 |
# Transcribe button below the audio input (Added this section to place the button below the playback)
|
133 |
with gr.Row(): # Added this Row to position the button below the audio input
|
134 |
transcribe_button = gr.Button("Transcribe Audio")
|
@@ -136,7 +137,6 @@ with gr.Blocks() as demo:
|
|
136 |
original_text = gr.Textbox(label="Original Transcription", interactive=False, lines=5)
|
137 |
corrected_text = gr.Textbox(label="Corrected Transcription", interactive=True, lines=5)
|
138 |
|
139 |
-
step2 = gr.Markdown("Step 2: Review & Edit Transcription")
|
140 |
step3 = gr.Markdown("Step 3: User Information")
|
141 |
|
142 |
with gr.Row():
|
|
|
129 |
with gr.Row():
|
130 |
audio_input = gr.Audio(sources=["upload", "microphone"], type="filepath", label="Audio Input")
|
131 |
|
132 |
+
step2 = gr.Markdown("Step 2: Review & Edit Transcription")
|
133 |
# Transcribe button below the audio input (Added this section to place the button below the playback)
|
134 |
with gr.Row(): # Added this Row to position the button below the audio input
|
135 |
transcribe_button = gr.Button("Transcribe Audio")
|
|
|
137 |
original_text = gr.Textbox(label="Original Transcription", interactive=False, lines=5)
|
138 |
corrected_text = gr.Textbox(label="Corrected Transcription", interactive=True, lines=5)
|
139 |
|
|
|
140 |
step3 = gr.Markdown("Step 3: User Information")
|
141 |
|
142 |
with gr.Row():
|