gst-plugins-rs/tutorial
Sebastian Dröge 9bb3e75fb9 Update to use the new pad builders for safely setting pad functions
Only two uses of unsafely setting the pad functions is left:
- fallbacksrc for overriding the chain function of the proxy pad of a
  ghost pad
- threadshare for overriding the pad functions after creationg, which
  probably needs some fixing at some point
2020-06-22 11:28:19 +03:00
..
img Drop gst-plugin- prefix in plugin directory name 2020-04-05 19:10:47 +00:00
src Update to use the new pad builders for safely setting pad functions 2020-06-22 11:28:19 +03:00
build.rs Fix various new clippy warnings with clippy 1.43 2020-04-24 13:55:01 +03:00
Cargo.toml Configure crate-type to cdylib/rlib consistently in Cargo.toml 2020-04-24 15:02:12 +03:00
README.md Drop gst-plugin- prefix in plugin directory name 2020-04-05 19:10:47 +00:00
tutorial-1.md Update all documentation to point to the updated repository name 2020-04-05 19:10:47 +00:00
tutorial-2.md Drop gst-plugin- prefix in plugin directory name 2020-04-05 19:10:47 +00: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.