mirror of
https://github.com/RustAudio/rodio
synced 2024-11-10 14:14:21 +00:00
11 lines
334 B
Rust
11 lines
334 B
Rust
use std::io::BufReader;
|
|
|
|
fn main() {
|
|
let (_stream, handle) = rodio::OutputStream::try_default().unwrap();
|
|
let sink = rodio::Sink::try_new(&handle).unwrap();
|
|
|
|
let file = std::fs::File::open("examples/music.flac").unwrap();
|
|
sink.append(rodio::Decoder::new(BufReader::new(file)).unwrap());
|
|
|
|
sink.sleep_until_end();
|
|
}
|