mirror of
https://github.com/RustAudio/rodio
synced 2024-11-10 06:04:16 +00:00
69a7f416a7
* Move sound to `assets/`; Exclude it from package * Exclude tests from package
11 lines
331 B
Rust
11 lines
331 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("assets/music.ogg").unwrap();
|
|
sink.append(rodio::Decoder::new(BufReader::new(file)).unwrap());
|
|
|
|
sink.sleep_until_end();
|
|
}
|