forked from adafruit/pi_video_looper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·56 lines (42 loc) · 1.37 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/sh
# Error out if anything fails.
set -e
# Make sure script is run as root.
if [ "$(id -u)" != "0" ]; then
echo "Must be run as root with sudo! Try: sudo ./install.sh"
exit 1
fi
echo "Installing dependencies..."
echo "=========================="
apt update && apt -y install python3 python3-pip python3-pygame supervisor omxplayer ntfs-3g exfat-fuse
if [ "$*" != "no_hello_video" ]
then
echo "Installing hello_video..."
echo "========================="
apt -y install git build-essential python3-dev
git clone https://github.com/adafruit/pi_hello_video
cd pi_hello_video
./rebuild.sh
cd hello_video
make install
cd ../..
rm -rf pi_hello_video
else
echo "hello_video was not installed"
echo "=========================="
fi
echo "Installing video_looper program..."
echo "=================================="
# change the directoy to the script location
cd "$(dirname "$0")"
mkdir -p /mnt/usbdrive0 # This is very important if you put your system in readonly after
mkdir -p /home/pi/video # create default video directory
chown pi:pi /home/pi/video
pip3 install setuptools
python3 setup.py install --force
cp ./assets/video_looper.ini /boot/video_looper.ini
echo "Configuring video_looper to run on start..."
echo "==========================================="
cp ./assets/video_looper.conf /etc/supervisor/conf.d/
service supervisor restart
echo "Finished!"