Отключил логирование
This commit is contained in:
parent
653a3933ea
commit
bba686e960
|
@ -1,4 +1,4 @@
|
|||
from vosk import Model, KaldiRecognizer
|
||||
from vosk import Model, KaldiRecognizer, SetLogLevel
|
||||
import pyaudio
|
||||
import os # Для проверки наличия папки языковой модели
|
||||
import json
|
||||
|
@ -18,6 +18,8 @@ def init_listener():
|
|||
print ("Модель можно скачать по адресу https://alphacephei.com/vosk/models")
|
||||
exit(1) # Если модель не найдена - завершаем работу
|
||||
|
||||
SetLogLevel(-1) # Отключение отладки в консоль
|
||||
|
||||
model = Model(model_dir) # Загружаем языковую модель
|
||||
kaldi = KaldiRecognizer(model, 16000) # Разпознование речи
|
||||
|
||||
|
|
Loading…
Reference in New Issue