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 Fabian Affolter
parent 5c19144a02
commit 97f9e64708
No known key found for this signature in database
GPG Key ID: E23CD2DD36A4397F

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
```