gst-plugins-rs/tutorial
Guillaume Desmottes 8bc2e5ebb8 use cargo-c to produce cdy and static libs
cargo-c will produce a pkg-config file making it easier to statically
link plugins.

Also add 'static' features for plugins depending on < 1.14 as this is the
minimal required version to use static linking because of ABI changes in
core.
2021-01-04 12:26:45 +01:00
..
img Drop gst-plugin- prefix in plugin directory name 2020-04-05 19:10:47 +00:00
src Update for macro renames 2020-12-20 20:43:45 +02:00
build.rs Fix various new clippy warnings with clippy 1.43 2020-04-24 13:55:01 +03:00
Cargo.toml use cargo-c to produce cdy and static libs 2021-01-04 12:26:45 +01:00
LICENSE-APACHE Add LICENSE files to each individual crate 2020-07-10 13:06:28 +03:00
LICENSE-MIT Add LICENSE files to each individual crate 2020-07-10 13:06:28 +03:00
README.md Drop gst-plugin- prefix in plugin directory name 2020-04-05 19:10:47 +00:00
tutorial-1.md tutorial/1: gst_plugin_define! is renamed to gst::plugin_define! 2021-01-02 17:55:06 +01:00
tutorial-2.md tutorial: Sync doc link with gstreamer crates 2020-12-22 17:13:55 +09: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.