RandomVideo/RandomVideo.sh

45 lines
800 B
Bash
Raw Normal View History

#!/bin/sh
2020-09-19 23:43:23 +02:00
folder="/mnt/video"
2020-09-22 18:16:47 +02:00
player="cvlc"
2020-09-22 22:05:36 +02:00
playerparam="--play-and-exit --quiet --no-osd -A alsa --alsa-audio-device=front:CARD=Device,DEV=0"
2020-09-22 18:25:58 +02:00
pgrepplayer="vlc"
2020-09-19 23:33:19 +02:00
swupgpio=23
swdowngpio=25
2020-09-19 23:49:29 +02:00
swupstat=$($(command -v gpio) read $swupgpio)
2020-09-19 23:33:19 +02:00
if [ $# -eq 0 ]; then
echo "Parameter fehlt"
exit 1
fi
if [ $# -gt 1 ]; then
echo "Zu viele Parameter"
exit 1
fi
2020-09-19 23:43:23 +02:00
if [ $swupstat -eq 1 ]; then
2020-09-19 23:33:19 +02:00
exit 1
fi
if [ "buzzer" != "$1" ] && [ "cron" != "$1" ]; then
echo "Parameter muss \"buzzer\" oder \"cron\" sein"
exit 1
fi
2020-09-22 19:47:16 +02:00
if $(command -v pgrep) "$pgrepplayer" > /dev/null; then
if [ "$1" = "buzzer" ]; then
2020-09-22 18:25:58 +02:00
$(command -v pkill) "$pgrepplayer"
elif [ "$1" = "cron" ]; then
exit 1
fi
else
2020-09-22 18:16:47 +02:00
$(command -v "$player") $playerparam "$(find "$folder" -maxdepth 1 -type f |sort -R |head -n1)" &
fi