Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SnowboyDetect will not take unicode strings in Python 3 #20

Open
jacobtomlinson opened this issue Mar 25, 2017 · 0 comments
Open

SnowboyDetect will not take unicode strings in Python 3 #20

jacobtomlinson opened this issue Mar 25, 2017 · 0 comments
Labels

Comments

@jacobtomlinson
Copy link
Member

When starting up in Python 3 the following traceback happens because the model path is being passed as a unicode string. It needs to be passed as an old fashioned string.

Traceback (most recent call last):
  File "/usr/local/Cellar/python3/3.5.1/Frameworks/Python.framework/Versions/3.5/lib/python3.5/runpy.py", line 170, in _run_module_as_main
    "__main__", mod_spec)
  File "/usr/local/Cellar/python3/3.5.1/Frameworks/Python.framework/Versions/3.5/lib/python3.5/runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "/Users/jacob/Projects/opsdroid/opsdroid-audio/opsdroidaudio/__main__.py", line 243, in <module>
    main()
  File "/Users/jacob/Projects/opsdroid/opsdroid-audio/opsdroidaudio/__main__.py", line 239, in main
    oaudio.start()
  File "/Users/jacob/Projects/opsdroid/opsdroid-audio/opsdroidaudio/__main__.py", line 52, in start
    self.detector = audio.HotwordDetector(self.model, sensitivity=0.4)
  File "/Users/jacob/Projects/opsdroid/opsdroid-audio/opsdroidaudio/audio.py", line 117, in __init__
    model_str=model_str.encode())
  File "/Users/jacob/Projects/opsdroid/opsdroid-audio/snowboydetect/snowboydetect.py", line 101, in __init__
    this = _snowboydetect.new_SnowboyDetect(resource_filename, model_str)
TypeError: in method 'new_SnowboyDetect', argument 1 of type 'std::string const &'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant