Skip to content

Instantly share code, notes, and snippets.

@patrick91
Created December 27, 2024 20:58
Show Gist options
  • Save patrick91/45f9452fd4117a5f2ee17f986d68d0c8 to your computer and use it in GitHub Desktop.
Save patrick91/45f9452fd4117a5f2ee17f986d68d0c8 to your computer and use it in GitHub Desktop.
use gstreamer as gst;
use gstreamer::prelude::*;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Initialize GStreamer
gst::init()?;
// Create pipeline
let pipeline = gst::parse::launch(
"playbin uri=https://gstreamer.freedesktop.org/data/media/sintel_trailer-480p.webm video-sink=xvimagesink"
)?;
// Start playing
pipeline.set_state(gst::State::Playing)?;
// Get the bus
let bus = pipeline.bus().unwrap();
// Listen for messages
for msg in bus.iter_timed(gst::ClockTime::NONE) {
use gst::MessageView;
match msg.view() {
MessageView::Eos(..) => {
println!("End of stream");
break;
}
MessageView::Error(err) => {
println!(
"Error from {:?}: {} ({:?})",
err.src().map(|s| s.path_string()),
err.error(),
err.debug()
);
break;
}
_ => (),
}
}
// Cleanup
pipeline.set_state(gst::State::Null)?;
Ok(())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment