View Single Post
Posts: 21 | Thanked: 102 times | Joined on Apr 2010
#658
Originally Posted by impeham View Post

[Edit]
after installing "gstreamer0.10-pocketsphinx" this error is gone, but i'm getting a new one when starting voicy.py:

---
Traceback (most recent call last):
File "./voicy.py", line 344, in <module>
app = VoicyGUI()
File "./voicy.py", line 60, in __init__
VoicyCore.__init__(self)
File "/opt/voicy/VoicyCore.py", line 43, in __init__
self.init_gst()
File "/opt/voicy/VoicyCore.py", line 111, in init_gst
asr.connect('result_score', self.asr_result_score)
TypeError: <__main__.GstPocketSphinx object (asr) at 0x4118f0>: unknown signal name: result_score
---
Sorry for that error.
Please either use the patched version of pocketsphinx (it's included in the zip file) or change the line in VoicyCore.py

Code:
asr.connect('result_score', self.asr_result_score)
into
Code:
try:
    asr.connect('result_score', self.asr_result_score)
except:
    self.print_debug("patched version of pocketsphinx not installed")

Last edited by Jannis; 2013-08-18 at 08:43. Reason: typo
 

The Following 6 Users Say Thank You to Jannis For This Useful Post: