Nailik / rhasspy_mobile

Rhasspy is a voice assistant software. This repository implements the functionality of a Rhasspy satellite, with local wake word recognition.
65 stars 4 forks source link

Voice feedback does not work #293

Closed manducagiuseppe closed 1 year ago

manducagiuseppe commented 1 year ago

First of all, I would like to compliment you on creating the app. I have installed the app on my smartphone and everything is working correctly, the only problem is that the voice feedback of the assistant is not working. Why is that? How can I solve it?

Nailik commented 1 year ago

Can you please clarify what about the voice feedback is not working?

manducagiuseppe commented 1 year ago

Here is my configuration

My App Configuration:

My Rhasspy Base configuration

{
    "dialogue": {
        "satellite_site_ids": "mobile",
        "system": "rhasspy"
    },
    "handle": {
        "satellite_site_ids": "mobile",
        "system": "hass"
    },
    "home_assistant": {
        "access_token": "*********",
        "url": "http://192.168.1.254:8123"
    },
    "intent": {
        "remote": {
            "url": "http://192.168.1.254:12101/api/text-to-intent"
        },
        "satellite_site_ids": "mobile",
        "system": "fsticuffs"
    },
    "microphone": {
        "pyaudio": {
            "siteId": "mobile",
            "udp_audio_host": "192.168.1.123",
            "udp_audio_port": "12202"
        },
        "system": "pyaudio"
    },
    "mqtt": {
        "enabled": "",
        "host": "192.168.1.254",
        "password": "*****",
        "username": "*****"
    },
    "sounds": {
        "aplay": {
            "device": "default"
        },
        "remote": {
            "url": "http://192.168.1.123:12101/api/play-wav"
        },
        "system": "remote"
    },
    "speech_to_text": {
        "remote": {
            "url": "http://192.168.1.254:12101/api/speech-to-text"
        },
        "satellite_site_ids": "mobile",
        "system": "kaldi"
    },
    "text_to_speech": {
        "remote": {
            "url": "http://192.168.1.123:12101/api/text-to-speech"
        },
        "satellite_site_ids": "mobile",
        "system": "nanotts"
    },
    "wake": {
        "porcupine": {
            "keyword_path": "porcupine_linux.ppn",
            "udp_audio": "12202"
        },
        "satellite_site_ids": "mobile"
    }
}
Nailik commented 1 year ago

How do you trigger your text-to-speech service?

manducagiuseppe commented 1 year ago

i don't know if they are the correct answers, from app with wake word portcupine and rhasspy config with nanotts if that's what you mean

Nailik commented 1 year ago

hmm no ^^ how do you create your response text? home assistant? node-red?

Nailik commented 1 year ago

Should be fixed with the newest release V_0.5. You can consolidate newly updated Wiki for more help.

Mqtt now also supports say endpoint.

Please comment when there are still any issues.