Update media_player.vlc.markdown

adding homeassistant user to audio group is needed to make it work, see details here https://community.home-assistant.io/t/vlc-with-google-tts-on-raspberry-pi/10418
This commit is contained in:
Molodax 2017-01-25 20:25:38 +01:00 committed by GitHub
parent fd0a2c0c47
commit 5048b92d01

View File

@ -52,3 +52,11 @@ On macOS phython-vlc wont find the VLC plugin directory unless you add this t
```bash
export VLC_PLUGIN_PATH=$VLC_PLUGIN_PATH:/Applications/VLC.app/Contents/MacOS/plugins
```
##### {% linkable_title Additional configuration for Rasperry Pi %}
You need to add `homeassistant` user to `audio` group:
```bash
sudo usermod -a -G audio homeassistant
```