Playlist для Omxplayer Raspberry Pi
-
Здравствуйте, появилась задача проигрывания видео роликов из определённой папки и их зацикливание в Omxplayer, нашёл следующий ниже код, но при попытке его запуска в Ubuntu Mate выдаёт ошибку: Syntax error: word unexpected (expecting «do»)
#!/bin/bash
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 $entry > /dev/null
done
fi
done