From 97f9e64708afb98e7357e3bdaae8cdcc1014d34f Mon Sep 17 00:00:00 2001 From: Molodax Date: Wed, 25 Jan 2017 20:25:38 +0100 Subject: [PATCH] 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 --- source/_components/media_player.vlc.markdown | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/_components/media_player.vlc.markdown b/source/_components/media_player.vlc.markdown index 8a9b6b48522..f3bd0064399 100644 --- a/source/_components/media_player.vlc.markdown +++ b/source/_components/media_player.vlc.markdown @@ -52,3 +52,11 @@ On macOS phython-vlc won’t 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 +```