reedmayhew commited on
Commit
51608b7
·
verified ·
1 Parent(s): 44de141

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -153,8 +153,8 @@ with gr.Blocks(title="Insanely Fast Whisper") as demo:
153
  description=description,
154
  article=article,
155
  inputs=[
156
- gr.Dropdown(choices=whisper_models, value="distil-whisper/distil-large-v2", label="Model", info="Select whisper model", interactive = True,),
157
- gr.Dropdown(choices=["Automatic Detection"] + sorted(get_language_names()), value="Automatic Detection", label="Language", info="Select audio voice language", interactive = True,),
158
  gr.Text(label="URL", info="(YouTube, etc.)", interactive = True),
159
  gr.File(label="Upload Files", file_count="multiple"),
160
  gr.Audio(sources=["upload", "microphone",], type="filepath", label="Input", waveform_options = waveform_options),
 
153
  description=description,
154
  article=article,
155
  inputs=[
156
+ gr.Dropdown(choices=whisper_models, value="openai/whisper-large-v3", label="Model", info="Select whisper model", interactive = True,),
157
+ gr.Dropdown(choices=["Automatic Detection"] + sorted(get_language_names()), value="English", label="Language", info="Select audio voice language", interactive = True,),
158
  gr.Text(label="URL", info="(YouTube, etc.)", interactive = True),
159
  gr.File(label="Upload Files", file_count="multiple"),
160
  gr.Audio(sources=["upload", "microphone",], type="filepath", label="Input", waveform_options = waveform_options),