mirror of
https://github.com/RustAudio/rodio
synced 2024-12-12 21:22:36 +00:00
13 lines
329 B
Rust
13 lines
329 B
Rust
extern crate rodio;
|
|
|
|
use std::io::BufReader;
|
|
|
|
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());
|
|
|
|
sink.sleep_until_end();
|
|
}
|