Update app.py
Browse fileshuayun request remove timestamp and model selection
app.py
CHANGED
@@ -137,8 +137,8 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
137 |
audio_input = gr.Audio(sources=['microphone', 'upload'], type="filepath", label="Audio Input")
|
138 |
youtube_input = gr.Textbox(label="YouTube URL", placeholder="Or paste a YouTube URL here...")
|
139 |
video_player = gr.HTML(visible=False)
|
140 |
-
timestamp_toggle = gr.Checkbox(label="Include Timestamps", value=False)
|
141 |
-
model_choice = gr.Radio(["local_whisper", "whisper_v3"], label="Model Selection", value="local_whisper")
|
142 |
with gr.Column(scale=3):
|
143 |
result = gr.Textbox(
|
144 |
label="Transcription Result",
|
@@ -147,7 +147,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
147 |
)
|
148 |
|
149 |
run_button = gr.Button("π Transcribe Audio", variant="primary", interactive=False)
|
150 |
-
run_button.click(run_asr, inputs=[audio_input, youtube_input,
|
151 |
|
152 |
# Update video player, clear transcription and audio input, and enable run button when YouTube URL is entered
|
153 |
youtube_input.change(
|
|
|
137 |
audio_input = gr.Audio(sources=['microphone', 'upload'], type="filepath", label="Audio Input")
|
138 |
youtube_input = gr.Textbox(label="YouTube URL", placeholder="Or paste a YouTube URL here...")
|
139 |
video_player = gr.HTML(visible=False)
|
140 |
+
#timestamp_toggle = gr.Checkbox(label="Include Timestamps", value=False)
|
141 |
+
#model_choice = gr.Radio(["local_whisper", "whisper_v3"], label="Model Selection", value="local_whisper")
|
142 |
with gr.Column(scale=3):
|
143 |
result = gr.Textbox(
|
144 |
label="Transcription Result",
|
|
|
147 |
)
|
148 |
|
149 |
run_button = gr.Button("π Transcribe Audio", variant="primary", interactive=False)
|
150 |
+
run_button.click(run_asr, inputs=[audio_input, youtube_input, False, 'local_whisper'], outputs=[result])
|
151 |
|
152 |
# Update video player, clear transcription and audio input, and enable run button when YouTube URL is entered
|
153 |
youtube_input.change(
|