Skip to content

Instantly share code, notes, and snippets.

@andriiburka
Last active December 20, 2019 18:43
Show Gist options
  • Save andriiburka/12a25c51bfab10fecc5d30c1c1a71547 to your computer and use it in GitHub Desktop.
Save andriiburka/12a25c51bfab10fecc5d30c1c1a71547 to your computer and use it in GitHub Desktop.
clear
echo "Starting Motioneye Installation"
sleep 1
clear
cd /home/pi
sudo wget http://goo.gl/DVJZn8 -O motioneye
sudo sh motioneye
clear
echo "Starting HomeKit camera Installation"
sleep 1
clear
cd /home/pi/HAP-NodeJS
nodeV="$(node -v)"
if [ "$nodev" != "v4.4.4" ]; then
clear
echo "Updating Node to Latest Version"
sudo npm install n -g
sudo n 4.4.4
sudo npm install forever -g
fi
clear
echo "Ensuring HAP-NodeJS has all up-to-date prerequisites"
sleep 1
clear
sudo npm install
sudo npm install node-cmd
clear
echo "Installing camera-specific files"
sleep 1
clear
sudo wget http://goo.gl/pZT3xA -O task
sudo chmod +x task
sudo systemctl stop motioneye
sudo wget http://goo.gl/B1w9DR -O ffmpeg.deb
sudo dpkg -i ffmpeg.deb
sudo rm -rf ffmpeg.deb
sudo systemctl start motioneye
cd lib/
sudo mv Camera.js OriginalCamera.js.bak
sudo wget http://goo.gl/X7WQgs -O Camera.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment