Build gstreamer from source
This file contains 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 | |
# Set your target branch | |
BRANCH="1.14.2" | |
exec > >(tee build-gstreamer.log) | |
exec 2>&1 | |
[ ! -d orc ] && git clone git://anongit.freedesktop.org/git/gstreamer/orc | |
[ ! -d gstreamer ] && git clone git://anongit.freedesktop.org/git/gstreamer/gstreamer | |
[ ! -d gst-plugins-base ] && git clone git://anongit.freedesktop.org/git/gstreamer/gst-plugins-base | |
[ ! -d gst-plugins-good ] && git clone git://anongit.freedesktop.org/git/gstreamer/gst-plugins-good | |
[ ! -d gst-plugins-bad ] && git clone git://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad | |
[ ! -d gst-libav ] && git clone git://anongit.freedesktop.org/git/gstreamer/gst-libav | |
[ ! -d gst-plugins-ugly ] && git clone git://anongit.freedesktop.org/git/gstreamer/gst-plugins-ugly | |
[ ! -d gst-python ] && git clone git://anongit.freedesktop.org/git/gstreamer/gst-python | |
export LD_LIBRARY_PATH=/usr/local/lib/ | |
cd orc | |
./autogen.sh --disable-gtk-doc | |
make | |
sudo make install | |
cd .. | |
cd gstreamer | |
git checkout $BRANCH | |
./autogen.sh --disable-gtk-doc | |
make | |
sudo make install | |
cd .. | |
cd gst-plugins-base | |
git checkout $BRANCH | |
./autogen.sh --disable-gtk-doc | |
make | |
sudo make install | |
cd .. | |
cd gst-libav | |
git checkout $BRANCH | |
./autogen.sh --disable-gtk-doc --enable-orc | |
make | |
sudo make install | |
cd .. | |
cd gst-plugins-good | |
git checkout $BRANCH | |
./autogen.sh --disable-gtk-doc | |
make | |
sudo make install | |
cd .. | |
cd gst-plugins-bad | |
git checkout $BRANCH | |
./autogen.sh --disable-gtk-doc --enable-orc | |
make | |
sudo make install | |
cd .. | |
cd gst-plugins-ugly | |
git checkout $BRANCH | |
./autogen.sh --disable-gtk-doc --enable-orc | |
make | |
sudo make install | |
cd .. | |
# export PYTHON=/usr/bin/python3 (Specify required python version) | |
cd gst-python | |
git checkout $BRANCH | |
./autogen.sh --disable-gtk-doc --noconfigure | |
# with-libpython-dir -> location of libpython*.so | |
./configure --with-libpython-dir="/usr/lib/x86_64-linux-gnu" | |
make | |
sudo make install | |
cd .. | |
sudo ldconfig |
@rmsoto To use meson:
pip3 install meson
sudo apt install ninja-build
cd orc/build
meson ..
ninja
ninja install
Note that you'll need to set LD_LIBRARY_PATH
to include /usr/local/lib/{arch}-linux-gnu
(e.g. /usr/local/lib/aarch64-linux-gnu) otherwise orc will throw a fit when you try and run it. Make sure you can run: orcc
without errors.
Hi @ALL,
The working version of orc seems to be orc-0.4.25. With this version, we can still use ./autogen.sh to build it and there will be no warning or error about mismatched version of orc while compiling the plugins.
Best regards,
Pascal.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jefflgaol do you have an example for meson/ninja commandline?