You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both services work perfectly separately, but when I start the satellite, openwakeword is killed.
Nov 30 12:55:36 cubox-i systemd[1]: Started wyoming-openwakeword.service - Wyoming openWakeWord.
Nov 30 12:55:39 cubox-i run[3490]: INFO:root:Ready
Nov 30 12:55:39 cubox-i run[3488]: Traceback (most recent call last):
Nov 30 12:55:39 cubox-i run[3488]: File "/mnt/wyoming-openwakeword/script/run", line 12, in
Nov 30 12:55:39 cubox-i run[3488]: subprocess.check_call([context.env_exe, "-m", "wyoming_openwakeword"] + sys.argv[1:])
Nov 30 12:55:39 cubox-i run[3488]: File "/usr/local/lib/python3.9/subprocess.py", line 373, in check_call
Nov 30 12:55:39 cubox-i run[3488]: raise CalledProcessError(retcode, cmd)
Nov 30 12:55:39 cubox-i run[3488]: subprocess.CalledProcessError: Command '['/mnt/wyoming-openwakeword/.venv/bin/python3', '-m', 'wyoming_openwakeword', '--uri', 'tcp://127.0.0.1:10400']' died with <Signals.SIGILL: 4>.
Nov 30 12:55:39 cubox-i systemd[1]: wyoming-openwakeword.service: Main process exited, code=exited, status=1/FAILURE
Nov 30 12:55:39 cubox-i systemd[1]: wyoming-openwakeword.service: Failed with result 'exit-code'.
Nov 30 12:55:39 cubox-i systemd[1]: wyoming-openwakeword.service: Consumed 2.383s CPU time.
Both services work perfectly separately, but when I start the satellite, openwakeword is killed.
Nov 30 12:55:36 cubox-i systemd[1]: Started wyoming-openwakeword.service - Wyoming openWakeWord.
Nov 30 12:55:39 cubox-i run[3490]: INFO:root:Ready
Nov 30 12:55:39 cubox-i run[3488]: Traceback (most recent call last):
Nov 30 12:55:39 cubox-i run[3488]: File "/mnt/wyoming-openwakeword/script/run", line 12, in
Nov 30 12:55:39 cubox-i run[3488]: subprocess.check_call([context.env_exe, "-m", "wyoming_openwakeword"] + sys.argv[1:])
Nov 30 12:55:39 cubox-i run[3488]: File "/usr/local/lib/python3.9/subprocess.py", line 373, in check_call
Nov 30 12:55:39 cubox-i run[3488]: raise CalledProcessError(retcode, cmd)
Nov 30 12:55:39 cubox-i run[3488]: subprocess.CalledProcessError: Command '['/mnt/wyoming-openwakeword/.venv/bin/python3', '-m', 'wyoming_openwakeword', '--uri', 'tcp://127.0.0.1:10400']' died with <Signals.SIGILL: 4>.
Nov 30 12:55:39 cubox-i systemd[1]: wyoming-openwakeword.service: Main process exited, code=exited, status=1/FAILURE
Nov 30 12:55:39 cubox-i systemd[1]: wyoming-openwakeword.service: Failed with result 'exit-code'.
Nov 30 12:55:39 cubox-i systemd[1]: wyoming-openwakeword.service: Consumed 2.383s CPU time.
Openwakeword service:
[Unit]
Description=Wyoming openWakeWord
[Service]
Type=simple
ExecStart=/mnt/wyoming-openwakeword/script/run --uri 'tcp://127.0.0.1:10400'
WorkingDirectory=/mnt/wyoming-openwakeword
Restart=always
RestartSec=1
[Install]
WantedBy=default.target
Satellite service:
[Unit]
Description=Wyoming Satellite
Wants=network-online.target
After=network-online.target
Requires=wyoming-openwakeword.service
[Service]
Type=simple
ExecStart=/mnt/wyoming-satellite/script/run
--name 'My satellite' --uri 'tcp://0.0.0.0:10700'
--mic-command 'arecord -D plughw:CARD=Sound,DEV=0 -r 16000 -c 1 -f S16_LE -t raw'
--snd-command 'aplay -D plughw:CARD=Sound,DEV=0 -r 22050 -c 1 -f S16_LE -t raw'
--mic-auto-gain 5
--mic-noise-suppression 2
--wake-uri 'tcp://127.0.0.1:10400'
--wake-word-name 'hey_jarvis'
--awake-wav '/mnt/wyoming-satellite/sounds/awake.wav'
--done-wav '/mnt/wyoming-satellite/sounds/done.wav'
--timer-finished-wav '/mnt/wyoming-satellite/sounds/timer_finished.wav'
WorkingDirectory=/mnt/wyoming-satellite
Restart=always
RestartSec=1
[Install]
WantedBy=default.target
I welcome any ideas.
The text was updated successfully, but these errors were encountered: