I am installing wyoming satellite on a new pi. My speaker/mic is a Jabra 410. Below is the command I am running to start the script and the error I receive. Could anyone help point me in the right direction to fix the issue?
I am connecting to Home Assistant Core 2024.11.3
script/run --name 'Office Satellite' --uri 'tcp://0.0.0.0:10700' --mic-command 'arecord -r 16000 -c 1 -f S16_LE -t raw' --snd-command 'aplay -r 16000 -c 1 -f S16_LE -t raw'
INFO:root:Ready
INFO:root:Connected to services
Recording raw data 'stdin' : Signed 16 bit Little Endian, Rate 16000 Hz, Mono
INFO:root:Connected to server
INFO:root:Streaming audio
WARNING:root:Did not receive ping response within timeout
INFO:root:Disconnected from server
ERROR:asyncio:Task exception was never retrieved
future: <Task finished name='wyoming event handler' coro=<AsyncEventHandler.run() done, defined at /data/wyoming-satellite/.venv/lib/python3.11/site-packages/wyoming/server.py:31> exception=ConnectionResetError(104, 'Connection reset by peer')>
Traceback (most recent call last):
File "/data/wyoming-satellite/.venv/lib/python3.11/site-packages/wyoming/server.py", line 37, in run
event = await async_read_event(self.reader)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/data/wyoming-satellite/.venv/lib/python3.11/site-packages/wyoming/event.py", line 79, in async_read_event
json_line = await reader.readline()
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/asyncio/streams.py", line 545, in readline
line = await self.readuntil(sep)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/asyncio/streams.py", line 637, in readuntil
await self._wait_for_data('readuntil')
File "/usr/lib/python3.11/asyncio/streams.py", line 522, in _wait_for_data
await self._waiter
File "/usr/lib/python3.11/asyncio/selector_events.py", line 995, in _read_ready__data_received
data = self._sock.recv(self.max_size)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ConnectionResetError: [Errno 104] Connection reset by peer