gst-plugins-rs/gst-plugin-tutorial
2020-01-06 11:22:40 +02:00
..
img gst-plugin-tutorial: Add markdown of tutorial from blog post and updating to latest version 2019-06-03 13:20:32 +03:00
src tutorial: Add enum property to control output on progress bin 2020-01-06 11:22:40 +02:00
build.rs Add build.rs that provides a version number, release date and other details 2019-06-03 11:11:29 +00:00
Cargo.toml Move debug categories from an instance member to lazy_static 2019-10-31 23:35:11 +01:00
README.md tutorial: Add enum property to control output on progress bin 2020-01-06 11:22:40 +02:00
tutorial-1.md gst-plugin-tutorial: Update markdown for using lazy_static! to declare the debug category 2019-12-17 09:35:21 +02:00
tutorial-2.md gst-plugin-tutorial: Update markdown for using lazy_static! to declare the debug category 2019-12-17 09:35:21 +02:00

Tutorial on how to write GStreamer plugins in Rust

This tutorial is for the gst-plugin-tutorial plugin. This plugin provides 4 features. There are seperate turoials for rgb2gray and sinesrc feature for now and there will be more in future.

  1. Part 1: rgb2gray - A Video Filter for converting RGB to grayscale
  2. Part 2: sinesrc - A raw audio sine wave source
  3. Part 3: identity
  4. Part 4: progressBin - Prints progress information. Also showcases how to implement an enum-property on a plugin.