rodio/examples/music_mp3.rs

12 lines
309 B
Rust
Raw Normal View History

2018-05-26 23:39:03 +00:00
use std::io::BufReader;
fn main() {
let stream = rodio::OutputStream::try_default().unwrap();
let sink = rodio::Sink::new(&stream);
2018-05-26 23:39:03 +00:00
let file = std::fs::File::open("examples/music.mp3").unwrap();
sink.append(rodio::Decoder::new(BufReader::new(file)).unwrap());
sink.sleep_until_end();
}