jerrypan7 commited on
Commit
eb94645
Β·
verified Β·
1 Parent(s): c1205fc

Update app.py

Browse files

huayun request remove timestamp and model selection

Files changed (1) hide show
  1. app.py +3 -3
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, timestamp_toggle, model_choice], 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(
 
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(