gst-plugins-rs/tutorial
Sebastian Dröge ab14c50d1c Ignore clippy::non_send_fields_in_send_ty lint
It's useless in its current shape and wrongly triggering on all types.

See https://github.com/rust-lang/rust-clippy/issues/8045
2022-01-14 12:09:57 +02:00
..
img Drop gst-plugin- prefix in plugin directory name 2020-04-05 19:10:47 +00:00
src Ignore clippy::non_send_fields_in_send_ty lint 2022-01-14 12:09:57 +02:00
build.rs fix-getters-calls 0.3.0 pass 2021-04-20 18:19:58 +02:00
Cargo.toml Update to Rust edition 2021 and minimum supported Rust version to 1.56 2021-10-31 17:40:05 +02: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 Update for GLib/GStreamer API changes 2021-11-06 09:34:10 +02:00
tutorial-2.md Update for GLib/GStreamer API changes 2021-11-06 09:34:10 +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.