Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
#
# Build gstreamer for Raspberry Pi
# Edit the SRC and DEST environment variables at the top and then
# run this script. You'll need to add the following two envronment
# variables to your .profile
#
# LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${PREFIX}/lib"
# PATH="${PATH}:${PREFIX}/bin"
#
@yuyou
yuyou / build-gstreamer.sh
Last active April 6, 2020 11:44 — forked from damiandixon/build-gstreamer.sh
Build gstreamer from source with Qt plugin and Nvidia NVENC support
#!/bin/bash
# Set your target branch
BRANCH="1.16.2"
exec > >(tee build-gstreamer.log)
exec 2>&1
sudo apt-get install -y build-essential autotools-dev automake autoconf \