mirror of
https://github.com/RustAudio/rodio
synced 2024-12-13 21:52:38 +00:00
15 lines
392 B
Rust
15 lines
392 B
Rust
extern crate rodio;
|
|
|
|
use std::io::BufReader;
|
|
use std::thread;
|
|
use std::time::Duration;
|
|
|
|
fn main() {
|
|
let endpoint = rodio::get_default_endpoint().unwrap();
|
|
let sink = rodio::Sink::new(&endpoint);
|
|
|
|
let file = std::fs::File::open("examples/music.ogg").unwrap();
|
|
sink.append(rodio::Decoder::new(BufReader::new(file)).unwrap());
|
|
|
|
thread::sleep(Duration::from_millis(60000));
|
|
}
|