2016-08-07 14 views
0

Houndify PythonとC++をそれぞれ試してみました。 +コンパイルしてうまく動作するようにC++サンプルを入手しました。 + sample_text.pyはうまく動作します。Houndify:sample_wave.pyエラー: "%: 'bytes'と 'int'のオペランドタイプがサポートされていません"

sample_wave.pyとsample_stdin.py両方が同じエラーで失敗:

$ ./sample_wave.py '...my client ID here...' '...my client key here...' test_audio/whattimeisitindenver.wav 

============== test_audio/whattimeisitindenver.wav =================== 
Traceback (most recent call last): 
    File "./sample_wave.py", line 72, in <module> 
    client.start(MyListener()) 
    File "/home/system/catkin_ws/src/houndify/houndify_python3_sdk_0.3.0/houndify.py", line 179, in start 
    self._send(audio_header) 
    File "/home/system/catkin_ws/src/houndify/houndify_python3_sdk_0.3.0/houndify.py", line 288, in _send 
    self.conn.send(b'%x\r\n' % len(msg)) 
TypeError: unsupported operand type(s) for %: 'bytes' and 'int' 

答えて

0

うわー、それは問題を解決しました!私はちょうどSDKをあまりにも早く試みたと思います!ありがとう!

関連する問題