Skip to content

Instantly share code, notes, and snippets.

View ccckblaze's full-sized avatar
🎯
Focusing

Steve Han ccckblaze

🎯
Focusing
  • Sucheon
  • Xiamen, Fujian, China
View GitHub Profile
@ccckblaze
ccckblaze / gstreamer-build.sh
Last active June 26, 2017 13:34 — forked from sphaero/gstreamer-build.sh
Install & build gstreamer from git
#!/bin/bash --debugger
set -e
BRANCH="master"
if grep -q BCM2708 /proc/cpuinfo; then
echo "RPI BUILD!"
RPI="1"
fi
[ -n "$1" ] && BRANCH=$1