Line 109:
Line 109:
# or find an alternative, that was what helped me here modprobe uvcvideo
# or find an alternative, that was what helped me here modprobe uvcvideo
# if this is the module for your cam <nowiki>https://forums.zoneminder.com/viewtopic.php?t=23361</nowiki>
# if this is the module for your cam <nowiki>https://forums.zoneminder.com/viewtopic.php?t=23361</nowiki>
+
'''syslog error when using vlclib:'''<syntaxhighlight lang="bash">
+
ALSA lib confmisc.c:550:(snd_determine_driver) could not open control for card 0ALSA lib conf.c:3463:(_snd_config_evaluate) function snd_func_card_driver returned error: Permission denied
+
</syntaxhighlight>see https://forums.gentoo.org/viewtopic-t-319220-highlight-alsa+permission.html<syntaxhighlight lang="bash">
+
usermod -a -G audio www
+
</syntaxhighlight>also create and add in /etc/udev/rules.d/50-udev.rules<syntaxhighlight lang="bash">
+
# alsa devices
+
SUBSYSTEM="sound", GROUP="audio"
+
KERNEL="controlC[0-9]*", NAME="snd/%k", GROUP="audio"
+
KERNEL="hw[CD0-9]*", NAME="snd/%k", GROUP="audio"
+
KERNEL="pcm[CD0-9cp]*", NAME="snd/%k", GROUP="audio"
+
KERNEL="midiC[D0-9]*", NAME="snd/%k", GROUP="audio"
+
KERNEL="timer", NAME="snd/%k", GROUP="audio"
+
KERNEL="seq", NAME="snd/%k", GROUP="audio"
+
</syntaxhighlight>
'''NFR :'''
'''NFR :'''