artificialguybr commited on
Commit
dd20cb8
Β·
1 Parent(s): 5ef3615

Fix: Use correct Whisper model name (whisper-large-v3 instead of whisper-large-v3-turbo)

Browse files

The model 'openai/whisper-large-v3-turbo' does not exist, causing the transcription subprocess to fail with exit status 1. Changed to the correct model 'openai/whisper-large-v3'.

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -131,7 +131,7 @@ def transcribe_audio(file_path):
131
  "insanely-fast-whisper",
132
  "--file-name", file_path,
133
  "--device-id", "0",
134
- "--model-name", "openai/whisper-large-v3-turbo",
135
  "--task", "transcribe",
136
  "--timestamp", "chunk",
137
  "--transcript-path", output_file,
@@ -293,7 +293,7 @@ with gr.Blocks() as demo:
293
 
294
  gr.Markdown("""
295
  ---
296
- **Pipeline:** Whisper large-v3-turbo β†’ Google Translate β†’ Qwen3-TTS voice clone β†’ Wav2Lip (optional)
297
  By [@artificialguybr](https://twitter.com/artificialguybr)
298
  """)
299
 
 
131
  "insanely-fast-whisper",
132
  "--file-name", file_path,
133
  "--device-id", "0",
134
+ "--model-name", "openai/whisper-large-v3",
135
  "--task", "transcribe",
136
  "--timestamp", "chunk",
137
  "--transcript-path", output_file,
 
293
 
294
  gr.Markdown("""
295
  ---
296
+ **Pipeline:** Whisper large-v3 β†’ Google Translate β†’ Qwen3-TTS voice clone β†’ Wav2Lip (optional)
297
  By [@artificialguybr](https://twitter.com/artificialguybr)
298
  """)
299