diff options
author | Clayton G. Hobbs <clay@lakeserv.net> | 2016-04-30 22:03:45 -0400 |
---|---|---|
committer | Clayton G. Hobbs <clay@lakeserv.net> | 2016-04-30 22:03:45 -0400 |
commit | 7e62fce409fee102610762a05a27c851237fe479 (patch) | |
tree | 8e0d28f369af2d452ca544ed10692f46f9bae4b4 /kayleevc/recognizer.py | |
parent | a1f694572a87a697d190f71c6577f44f2d607a9a (diff) |
Update to work with the latest pocketsphinx
Apparently CMU thinks it's a good idea to release a new version of a piece of software that breaks existing APIs without even changing the version number. I find this idea to be highly dubious at best. Nevertheless, I have updated Kaylee to support the latest version of pocketsphinx.
Diffstat (limited to 'kayleevc/recognizer.py')
-rw-r--r-- | kayleevc/recognizer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kayleevc/recognizer.py b/kayleevc/recognizer.py index b54c055..09e14e4 100644 --- a/kayleevc/recognizer.py +++ b/kayleevc/recognizer.py @@ -35,7 +35,7 @@ class Recognizer(GObject.GObject): ' ! audioconvert' + ' ! audioresample' + ' ! pocketsphinx lm=' + config.lang_file + ' dict=' + - config.dic_file + ' configured=true' + + config.dic_file + ' ! appsink sync=false' ) try: |