Skip to content

Commit 0747dcc

Browse files
authored
Merge pull request #836 from sebampuero/update_vosk_model_download_url
Fix vosk's URL model list broken link in error message
2 parents b43441c + 5606d44 commit 0747dcc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

speech_recognition/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ def recognize_vosk(self, audio_data, language='en'):
12531253

12541254
if not hasattr(self, 'vosk_model'):
12551255
if not os.path.exists("model"):
1256-
return "Please download the model from https://github.com/alphacep/vosk-api/blob/master/doc/models.md and unpack as 'model' in the current folder."
1256+
return "Please download the model from https://alphacephei.com/vosk/models and unpack as 'model' in the current folder."
12571257
exit(1)
12581258
self.vosk_model = Model("model")
12591259

0 commit comments

Comments
 (0)