rodio/examples/music_mp3.rs
2024-11-10 00:10:36 +04:00

11 lines
331 B
Rust

use std::io::BufReader;
fn main() {
let (_stream, handle) = rodio::OutputStream::default().unwrap();
let sink = rodio::Sink::connect_new(&handle).unwrap();
let file = std::fs::File::open("assets/music.mp3").unwrap();
sink.append(rodio::Decoder::new(BufReader::new(file)).unwrap());
sink.sleep_until_end();
}