vlc-rs 0.3.0

Rust bindings for libVLC media framework.
Documentation
  • Coverage
  • 0.83%
    6 out of 724 items documented0 out of 62 items with examples
  • Size
  • Source code size: 93.11 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 31.83 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 19s Average build duration of successful builds.
  • all releases: 19s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • garkimasera/vlc-rs
    70 19 8
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • garkimasera mfkl

vlc-rs

Rust bindings for libVLC media framework.

Status

Many missing functions and wrappers.

Use

Please add the following dependencies to your Cargo.toml.

[dependencies]
vlc-rs = "0.3"

Or:

[dependencies.vlc-rs]
git = "https://github.com/garkimasera/vlc-rs.git"

Example

Play for 10 seconds from a media file.

extern crate vlc;
use vlc::{Instance, Media, MediaPlayer};
use std::thread;

fn main() {
    // Create an instance
    let instance = Instance::new().unwrap();
    // Create a media from a file
    let md = Media::new_path(&instance, "path_to_a_media_file.ogg").unwrap();
    // Create a media player
    let mdp = MediaPlayer::new(&instance).unwrap();
    mdp.set_media(&md);

    // Start playing
    mdp.play().unwrap();

    // Wait for 10 seconds
    thread::sleep(::std::time::Duration::from_secs(10));
}

Other examples are in the examples directory.

License

MIT (Examples are licensed under CC0)