gstreamer-cheat-sheet/README.md
2022-07-20 21:23:04 +01:00

3.5 KiB

GStreamer command-line cheat sheet

GStreamer is a powerful library for manipulating audio and video - including live streams. This repo provides:

  • a cheat sheet for GStreamer on the command-line, and
  • a few Python examples.

Whilst the command line is great, programmatic usage (in Python or another language) allows you to dynamically manipulate the A/V streams.

Contents

Sources and references

Other cheat-sheets

Interacting with the GStreamer pipeline

If you want to interact with GStreamer after it's started (e.g. respond to an event, or dynamically change a pipeline), the command-line GStreamer doesn't really cut it. Instead, here are some options:

Python with GStreamer

Python is an easy language, so it's no surprise that it's good way to develop using GStreamer.

Some example scripts can be found in the python_examples/ directory.

Other good GStreamer Python resources that I've found:

C/C++ with GStreamer

My favourite reference is Valadoc

Problems or suggestions with this guide?

If you spot anything incorrect or incomplete, reports are welcome, either using issues or pull requests

My GStreamer project

Creating this guide gave me enough GStreamer understanding to make a prototype Brave, a live video editor for the cloud. (Regrettably this prototype has not been updated in a few years.)