gstreamer 0.2.3

Idiomatic bindings for GStreamer
docs.rs failed to build gstreamer-0.2.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: gstreamer-0.22.4

#Gstreamer 1.0 Rust bindings

Idiomatic bindings for Gstreamer on Rust.

To use it you need to install GStreamer first, in linux it's usually installed with the distribution or avaliable through the package manager in other platforms from: http://gstreamer.freedesktop.org/data/pkg/

The wrapped objects do the ref/unref of the native GObjects themselves when references are dropped.

Most of the communication with the library can be done through mpsc::Receivers to get messages, samples...

To build the examples:

cargo test

target/examples/appsink

  • creates a pipeline that opens the default audio input and calculates the rms of the incomming sound.

target/examples/appsrc

  • creates a pipeline using an appsrc that allows to send data into the pipeline. In this case it generates video in rust code that is visualized through a default autovideosink.

target/examples/gst-launch gstreamer-pìpeline

  • creates any gstreamer pipeline, to test for example: target/examples/gst-launch videotestsrc ! autovideosink

target/examples/playbin mediafile

  • creates a playbin opening and playing back the path passed as argument

target/examples/v4l2

  • linux only, opens the default camera and shows the output through the default video sink (uses autovideosink)

The docs can be found at http://ci.arturocastro.net/rust/doc/gst