mirror of
https://github.com/RustAudio/rodio
synced 2024-11-12 23:17:08 +00:00
12 lines
290 B
Rust
12 lines
290 B
Rust
extern crate rodio;
|
|
|
|
use std::io::BufReader;
|
|
|
|
fn main() {
|
|
let endpoint = rodio::get_default_endpoint().unwrap();
|
|
|
|
let file = std::fs::File::open("examples/music.wav").unwrap();
|
|
let _music = rodio::play_once(&endpoint, BufReader::new(file));
|
|
|
|
std::thread::sleep_ms(10000);
|
|
}
|