mirror of
https://github.com/RustAudio/rodio
synced 2025-01-05 16:28:44 +00:00
13 lines
325 B
Rust
13 lines
325 B
Rust
extern crate rodio;
|
|
|
|
use std::io::BufReader;
|
|
|
|
fn main() {
|
|
let endpoint = rodio::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();
|
|
}
|