mirror of
https://github.com/RustAudio/rodio
synced 2024-12-13 13:42:34 +00:00
Add music_ogg example
This commit is contained in:
parent
aa74d06bb7
commit
e49d8e1b32
1 changed files with 12 additions and 0 deletions
12
examples/music_ogg.rs
Normal file
12
examples/music_ogg.rs
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
extern crate rodio;
|
||||||
|
|
||||||
|
use std::io::BufReader;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let endpoint = rodio::get_default_endpoint().unwrap();
|
||||||
|
|
||||||
|
let file = std::fs::File::open("examples/music.ogg").unwrap();
|
||||||
|
let _music = rodio::play_once(&endpoint, BufReader::new(file));
|
||||||
|
|
||||||
|
std::thread::sleep_ms(60000);
|
||||||
|
}
|
Loading…
Reference in a new issue