mirror of
https://github.com/RustAudio/rodio
synced 2024-12-12 13:12:30 +00:00
13 lines
326 B
Rust
13 lines
326 B
Rust
extern crate rodio;
|
|
|
|
use std::io::BufReader;
|
|
|
|
fn main() {
|
|
let device = rodio::default_output_device().unwrap();
|
|
let sink = rodio::Sink::new(&device);
|
|
|
|
let file = std::fs::File::open("examples/music.mp3").unwrap();
|
|
sink.append(rodio::Decoder::new(BufReader::new(file)).unwrap());
|
|
|
|
sink.sleep_until_end();
|
|
}
|