From 5a944237bdc6bdbdb3d630be8819373c3b9508dd Mon Sep 17 00:00:00 2001 From: "Clayton G. Hobbs" Date: Sun, 27 Dec 2015 11:56:08 -0500 Subject: Beginning work moving from YAML to JSON Mostly working for the options file now. Still some difficulty with command-line arguments, though; they're overriding the config file even when not specified. If I made them simply not get stored at all when not specified, there would be further problems when a configuration file is not present. Maybe I should make a whole new class to handle this. --- recognizer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recognizer.py') diff --git a/recognizer.py b/recognizer.py index bb35480..0a65b7a 100755 --- a/recognizer.py +++ b/recognizer.py @@ -29,9 +29,9 @@ class Recognizer(GObject.GObject): audio_src = 'autoaudiosrc' # Build the pipeline - cmd = audio_src+' ! audioconvert ! audioresample ! pocketsphinx name=asr ! appsink sync=false' + cmd = audio_src + ' ! audioconvert ! audioresample ! pocketsphinx name=asr ! appsink sync=false' try: - self.pipeline=Gst.parse_launch( cmd ) + self.pipeline = Gst.parse_launch( cmd ) except Exception as e: print(e.message) print("You may need to install gstreamer1.0-pocketsphinx") -- cgit 1.4.1