GStreamer multimedia framework
Go to file
Tim-Philipp Müller 5b801e2f0e Don't try to build ges if required dep isn't found
We shouldn't error out all of gst-build by default
if one of ges's required deps is not there.
2017-08-03 23:45:52 +01:00
subprojects glib.wrap: meson support has been merged into master branch 2017-07-17 22:39:15 +01:00
.gitignore add gstreamer-vaapi as a possible subproject 2017-02-09 16:15:31 -03:00
.gitmodules Remove meson/ submodule 2016-10-20 17:47:07 -03:00
common.py Prefer MESONINTROSPECT env var to find mesonintrospect if set 2017-04-10 01:07:38 +01:00
git-update git-update: Update submodules too 2017-01-11 17:29:33 +05:30
gst-uninstalled.py uninstalled: Do not concider not installed dynamic libs as possible plugins 2017-06-07 17:38:59 -04:00
LICENSE Initial commit 2016-08-25 15:26:28 -03:00
meson.build Don't try to build ges if required dep isn't found 2017-08-03 23:45:52 +01:00
meson_options.txt Allow disabling introspection from toplevel gst-build 2017-04-11 12:05:20 -03:00
msys2_setup.py msys2: Allow disabling failures on warning 2016-12-13 21:42:11 -03:00
README.md Enable custom subprojects option 2017-03-08 00:36:03 +01:00
setup.py setup.py: Print the detected Ninja and quote build_dir 2017-01-03 23:01:02 +05:30

gst-build

GStreamer meson based repositories aggregrator

You can build GStreamer and all its modules at once using meson and its subproject feature.

Getting started

Install meson and ninja

You should get meson through your package manager or using:

$ pip3 install --user meson

You should get ninja using your package manager or downloading it from here.

Build GStreamer and its modules

You can get all GStreamer built running:

mkdir build/ && meson build && ninja -C build/

NOTE: on fedora (and maybe other distributions) replace ninja with ninja-build

Development environment

Uninstalled environment

gst-build also contains a special uninstalled target that lets you enter an uninstalled development environment where you will be able to work on GStreamer easily. You can get into that environment running:

ninja -C build/ uninstalled

If your operating system handles symlinks, built modules source code will be available at the root of gst-build/ for example GStreamer core will be in gstreamer/. Otherwise they will be present in subprojects/. You can simply hack in there and to rebuild you just need to rerun ninja -C build/.

Update git subprojects

We added a special update target to update subprojects (it uses git pull --rebase meaning you should always make sure the branches you work on are following the right upstream branch, you can set it with git branch --set-upstream-to origin/master if you are working on gst-build master branch).

Update all GStreamer modules and rebuild:

ninja -C build/ update

Update all GStreamer modules without rebuilding:

ninja -C build/ git-update

Custom subprojects

We also added a meson option, 'custom_subprojects', that allows the user to provide a comma-separated list of subprojects that should be built alongside the default ones.

To use it:

cd subprojects
git clone my_subproject
cd ../build
rm -rf * && meson .. -Dcustom_subprojects=my_subproject
ninja

Run tests

You can easily run the test of all the components:

mesontest -C build

To list all available tests:

mesontest -C build --list

To run all the tests of a specific component:

mesontest -C build --suite gst-plugins-base

Or to run a specific test:

mesontest -C build/ --suite gstreamer gst/gstbuffer

Add information about GStreamer development environment in your prompt line

Bash prompt

We automatically handle bash and set $PS1 accordingly

Zsh prompt

In your .zshrc, you should add something like:

export PROMPT="$GST_ENV-$PROMPT"

Using powerline

In your powerline theme configuration file (by default in {POWERLINE INSTALLATION DIR}/config_files/themes/shell/default.json) you should add a new environment segment as follow:

{
  "function": "powerline.segments.common.env.environment",
  "args": { "variable": "GST_ENV" },
  "priority": 50
},