Add examples

merge-requests/7/merge
T. Okubo 2015-11-29 17:30:19 +09:00
parent b806f3b07c
commit a02354278a
3 changed files with 63 additions and 1 deletions

View File

@ -36,5 +36,7 @@ fn main() {
}
```
Other examples are in the examples directory.
## License
MIT
MIT (Examples are licensed under CC0)

View File

@ -0,0 +1,50 @@
// This file is an example for vlc-rs, licensed under CC0.
// https://creativecommons.org/publicdomain/zero/1.0/deed
extern crate vlc;
use std::sync::mpsc::channel;
use vlc::{Instance, Media, MediaPlayer, Event, EventType, State};
fn main() {
let args: Vec<String> = std::env::args().collect();
let path = match args.get(1) {
Some(s) => s,
None => {
println!("Usage: cli_audio_player path_to_a_media_file");
return;
}
};
let instance = Instance::new().unwrap();
let md = Media::new_path(&instance, path).unwrap();
let mdp = MediaPlayer::new(&instance).unwrap();
let (tx, rx) = channel::<()>();
let em = md.event_manager();
let _ = em.attach(EventType::MediaStateChanged, move |e, _| {
match e {
Event::MediaStateChanged(s) => {
println!("State : {:?}", s);
if s == State::Ended || s == State::Error {
tx.send(()).unwrap();
}
},
_ => (),
}
});
mdp.set_media(&md);
// Start playing
mdp.play().unwrap();
// Wait for end state
rx.recv().unwrap();
}

View File

@ -0,0 +1,10 @@
// This file is an example for vlc-rs, licensed under CC0.
// https://creativecommons.org/publicdomain/zero/1.0/deed
extern crate vlc;
fn main() {
println!("Version : {}", vlc::version());
println!("Compiler : {}", vlc::compiler());
}