mirror of
https://github.com/RustAudio/rodio
synced 2024-12-12 21:22:36 +00:00
13 lines
410 B
Rust
13 lines
410 B
Rust
|
//! Plays a tone alternating between right and left ears, with right being first.
|
||
|
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/RL.ogg").unwrap();
|
||
|
sink.append(rodio::Decoder::new(BufReader::new(file)).unwrap());
|
||
|
|
||
|
sink.sleep_until_end();
|
||
|
}
|