B.Goode wrote: ↑Sat Oct 14, 2017 5:33 pm
Please give suggestions
PiPresents and Minimal Kiosk Browser are two more options for Digital Signage.
For further options, a search with an internet search tool for a string like "raspberry pi digital signage" will return a number of hits worth investigating.
I did it without any os for signage just used raspbian and omxplayer pre-installed by default
Created folder and put all mp4 videos there
Created bash script named videoplayer.sh to run after boot directly
Code: Select all
#!/bin/sh
# get rid of the cursor so we don't see it when videos are running
setterm -cursor off
# set here the path to the directory containing your videos
VIDEOPATH="/mnt/storage/videos"
# you can normally leave this alone
SERVICE="omxplayer"
# now for our infinite loop!
while true; do
if ps ax | grep -v grep | grep $SERVICE > /dev/null
then
sleep 1;
else
for entry in $VIDEOPATH/*
do
clear
omxplayer -r $entry > /dev/null
done
fi
done
Then booted thr bash script by putting this line in /etc/rc.local
Before exit 0 line
Finally ssh is enabled to access and upload videos via sftp using filezila