Last active
December 1, 2017 14:43
-
-
Save amishshah/ee9af0e0516d3db41b67356289357249 to your computer and use it in GitHub Desktop.
builds omxplayer on rpi3 stretch lite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get update | |
apt-get install -y git libasound2-dev libavutil-dev libpcre3-dev libboost-dev | |
git clone https://github.com/popcornmix/omxplayer.git | |
cd omxplayer | |
./prepare-native-raspbian.sh | |
make ffmpeg | |
make -j$(nproc) | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment