Emerick Herve

Results 39 comments of Emerick Herve

Hello, You can follow the exact same procedure as in a console: just open a terminal app (Raspbian is shipped with LXterminal if I remember well?) and follow the installation...

Hello, You have 2 solutions: * You can use pulse, and so the config is done with `pavucontrol` for example, not in `config.yaml`, just: ``` input_device: "pulse" output: "pulse" output_device:...

http://lmgtfy.com/?q=pavucontrol > PulseAudio Volume Control (pavucontrol) is a simple GTK based volume control tool ("mixer") for the PulseAudio sound server.

Hello, Totally don't know if it's going to work but try replacing this line: https://github.com/alexa-pi/AlexaPi/blob/83f71d458dc832cac0f9b0d3807d6d2359d52c8e/src/alexapi/device_platforms/magicmirrorplatform.py#L25 With: ```Python class MagicmirrorPlatform(RaspberrypiPlatform): ``` Or ```Python class MagicmirrorPlatform(RPiLikePlatform): ``` (and use magicmirror platform)

Hello, Yes it is a little bit normal because of the way AlexaPi is working: * **pocketsphinx** script is listening for the word "Alexa" * The app starts saving what...

Not possible due to old API 1.0 used by AlexaPi... May be done by adding a new trigger when speaking but very complicated.

For vlc: https://github.com/alexa-pi/AlexaPi/issues/436 @jleaders You can also remove `pyyaml` from requirements.txt and install yourself. Remember that it's an unmaintained project... @Zibri It's an apt problem not Alexapi one, try removing...

Follow: [My audio is not working (Alsa)](https://emerickh.github.io/AlexaPi-config/debug/mute/alsa.html) [Setup audio](https://github.com/alexa-pi/AlexaPi/wiki/Audio-setup-&-debugging) (less detailed)

I don't think ATS is implemented in AlexaPi... No active development is made on it so consider switching to [a project like this one](https://github.com/alexa/alexa-avs-sample-app) for example (actually in maintenance but...

Firsts ideas for creating a new customizable color class: (pseudo-code, not functional of course) ```C++ enum ColorDisplay { R, G, B, W, WW, A, // Controls opacity MASTER, // Controls...