mirror of
https://github.com/aidygus/LinVAM.git
synced 2025-04-05 20:28:44 +11:00
Merge 407b3e3d04
into a229683c57
This commit is contained in:
commit
4305273e3b
@ -5,8 +5,7 @@ import threading
|
|||||||
import os, pyaudio
|
import os, pyaudio
|
||||||
import shutil
|
import shutil
|
||||||
import re
|
import re
|
||||||
from pocketsphinx.pocketsphinx import *
|
from pocketsphinx import *
|
||||||
from sphinxbase.sphinxbase import *
|
|
||||||
from soundfiles import SoundFiles
|
from soundfiles import SoundFiles
|
||||||
|
|
||||||
|
|
||||||
@ -22,12 +21,12 @@ class ProfileExecutor(threading.Thread):
|
|||||||
self.m_listening = False
|
self.m_listening = False
|
||||||
self.m_cmdThreads = {}
|
self.m_cmdThreads = {}
|
||||||
|
|
||||||
self.m_config = Decoder.default_config()
|
self.m_config = Config(
|
||||||
self.m_config.set_string('-hmm', os.path.join('model', 'en-us/en-us'))
|
hmm=os.path.join('model', 'en-us/en-us'),
|
||||||
self.m_config.set_string('-dict', os.path.join('model', 'en-us/cmudict-en-us.dict'))
|
dict=os.path.join('model', 'en-us/cmudict-en-us.dict'),
|
||||||
self.m_config.set_string('-kws', 'command.list')
|
kws='command.list',
|
||||||
# you usually don't want all this info stuff as a regular user. it just covers up init messages
|
logfn='/dev/null'
|
||||||
self.m_config.set_string('-logfn', '/dev/null')
|
)
|
||||||
|
|
||||||
self.m_pyaudio = pyaudio.PyAudio()
|
self.m_pyaudio = pyaudio.PyAudio()
|
||||||
self.m_stream = self.m_pyaudio.open(format=pyaudio.paInt16, channels=1, rate=16000, input=True)
|
self.m_stream = self.m_pyaudio.open(format=pyaudio.paInt16, channels=1, rate=16000, input=True)
|
||||||
|
@ -224,14 +224,14 @@ def kws_analysis(dic, kwlist):
|
|||||||
modeldir = "/usr/local/share/pocketsphinx/model/"
|
modeldir = "/usr/local/share/pocketsphinx/model/"
|
||||||
|
|
||||||
# Create a decoder with certain model
|
# Create a decoder with certain model
|
||||||
config = Decoder.default_config()
|
config = Config(
|
||||||
config.set_string('-hmm', os.path.join(modeldir, 'en-us/en-us'))
|
hmm=os.path.join(modeldir, 'en-us/en-us'),
|
||||||
config.set_string('-dict', dic)
|
dict=dic,
|
||||||
config.set_string('-kws', kwlist)
|
kws=kwlist,
|
||||||
config.set_string('-dither', "no")
|
dither="no",
|
||||||
config.set_string('-logfn', '/dev/null')
|
featparams=os.path.join(os.path.join(modeldir, 'en-us/en-us'), "feat.params"),
|
||||||
config.set_string('-featparams', os.path.join(os.path.join(modeldir,
|
logfn='/dev/null'
|
||||||
'en-us/en-us'), "feat.params"))
|
)
|
||||||
|
|
||||||
stream = open(OUTPUT_FILENAME, "rb")
|
stream = open(OUTPUT_FILENAME, "rb")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user