OVOS dated today: the blebop after I say Hey Mcroft #224
-
OVOS dated today: the blebop after I say Hey Mcroft - that volume is very low. the answer the MC speaks is at a high volume (I reviews ALSAMIXER and all it goofd. what dictates the volume for the bleep after I say HEY MC ? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 10 replies
-
Acknowledge sound is a Got this behaviour with a Google AIY Voice Kit V1. |
Beta Was this translation helpful? Give feedback.
-
Can you tell me the paths for the source file and the destination file and
then how would I set that volume using any of the methods that may be an
action? I am consuming the standard OVOS raspberry pie image, so I don’t
know what my actual speaking engine is. How do I find out what that may be?
Thank you.
…On Wed, Feb 28, 2024 at 3:53 AM Gaëtan Trellu ***@***.***> wrote:
Acknowledge sound is a .wav file handled by default by aplay (ALSA) but
depending your TTS, sometime the generated files will be .mp3 which might
be handled by paplay (PulseAudio) or pw-play (PipeWire) which could have
different sound levels depending the hardware.
Got this behaviour with a Google AIY Voice Kit V1.
—
Reply to this email directly, view it on GitHub
<#224 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABS6UT7GIWSM2IB3V2OS743YV4LDBAVCNFSM6AAAAABD5JL4JSVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DMMJXGQ3TE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
Default TTS will be Piper provided by the OVOS TTS public servers: https://github.com/OpenVoiceOS/status I think on RaspOVOS, the path to the file is RaspOVOS still use PulseAudio so you will have to set https://github.com/OpenVoiceOS/ovos-config/blob/dev/ovos_config/mycroft.conf#L59-L64 "play_wav_cmdline": "paplay --volume 65536 %1 ",
"play_mp3_cmdline": "paplay --volume 65536 %1", This will set the volume as 100%. |
Beta Was this translation helpful? Give feedback.
-
interesting fact: mpg123 has the low volume issue. aplay is same volume as
ovos :)
…On Sun, Mar 3, 2024 at 9:11 AM JarbasAI ***@***.***> wrote:
OVOs will use whatever your OS uses, it could be pulseaudio, pipewire or
in ancient setups just pure alsa
OVOS only uses the playback commands and then let's the OS do it's usual
thing without requiring any specific audio interface
—
Reply to this email directly, view it on GitHub
<#224 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABS6UT3AUQLS6HCYAB7FSOLYWNKVBAVCNFSM6AAAAABD5JL4JSVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DMNJYG43TA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
Default TTS will be Piper provided by the OVOS TTS public servers: https://github.com/OpenVoiceOS/status
I think on RaspOVOS, the path to the file is
~/.venvs/ovos/lib/python3.11/site-packages/ovos_audio/res/snd/start_listening.wav
.RaspOVOS still use PulseAudio so you will have to set
play_wav_cmdline
andplay_mp3_cmdline
in yourmycroft.conf
topaplay
with the--volume
argument (0 = mute, 65536 = 100%)https://github.com/OpenVoiceOS/ovos-config/blob/dev/ovos_config/mycroft.conf#L59-L64
This will set the volume as 100%.