Audio Module for Neon Core. This module can be treated as a replacement for the mycroft-core speech module. This module handles input text, performs TTS, and optionally returns the audio or plays it back locally.
neon-audio
extends mycroft-audio
with the following added functionality:
- Support for translated output languages
- Support for multiple language spoken responses (multiple users and/or multi-language users)
- Messagebus API listeners to handle outside requests for TTS
- Arbitrary configuration supported by passing at module init
Mycroft TTS plugins are compatible with neon-speech
.
The included Dockerfile
may be used to build a docker container for the neon_audio module. The below command may be used
to start the container.
docker run -d \
--network=host \
--name=neon_audio \
-v ~/.config/pulse/cookie:/tmp/pulse_cookie:ro \
-v ${XDG_RUNTIME_DIR}/pulse:${XDG_RUNTIME_DIR}/pulse:ro \
-v /run/dbus/system_bus_socket:/run/dbus/system_bus_socket:rw \
-v /tmp/.X11-unix:/tmp/.X11-unix:ro \
--device=/dev/snd:/dev/snd \
-e PULSE_SERVER=unix:${XDG_RUNTIME_DIR}/pulse/native \
-e PULSE_COOKIE=/tmp/pulse_cookie \
-e DISPLAY=${DISPLAY} \
neon_audio