0

Houndify Python と C++ をダウンロードして、それぞれを試してみました。+ コンパイルして正常に実行するための C++ サンプルを取得しました。+ sample_text.py は正常に動作します。

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'
4

1 に答える 1

0

これは Python SDK のバグのようですが、最新バージョンの 0.3.1 ( https://docs.houndify.com/sdks#python ) で修正されています。

于 2016-08-08T16:25:37.390 に答える