mirror of
https://github.com/RustAudio/rodio
synced 2024-12-13 21:52:38 +00:00
13 lines
326 B
Rust
13 lines
326 B
Rust
extern crate rodio;
|
|
|
|
use std::io::BufReader;
|
|
|
|
fn main() {
|
|
let endpoint = rodio::get_default_endpoint().unwrap();
|
|
let sink = rodio::Sink::new(&endpoint);
|
|
|
|
let file = std::fs::File::open("examples/music.ogg").unwrap();
|
|
sink.append(rodio::Decoder::new(BufReader::new(file)));
|
|
|
|
std::thread::sleep_ms(60000);
|
|
}
|