mirror of
https://github.com/RustAudio/rodio
synced 2024-12-13 21:52:38 +00:00
4bb832ba30
The inner Mutex does not require this.
37 lines
1 KiB
Rust
37 lines
1 KiB
Rust
extern crate rodio;
|
|
|
|
use std::io::BufReader;
|
|
use std::thread;
|
|
use std::time::Duration;
|
|
|
|
fn main() {
|
|
let device = rodio::default_output_device().unwrap();
|
|
|
|
let file = std::fs::File::open("examples/beep.wav").unwrap();
|
|
let beep1 = rodio::play_once(&device, BufReader::new(file)).unwrap();
|
|
beep1.set_volume(0.2);
|
|
println!("Started beep1");
|
|
|
|
thread::sleep(Duration::from_millis(1500));
|
|
|
|
let file = std::fs::File::open("examples/beep2.wav").unwrap();
|
|
rodio::play_once(&device, BufReader::new(file))
|
|
.unwrap()
|
|
.detach();
|
|
println!("Started beep2");
|
|
|
|
thread::sleep(Duration::from_millis(1500));
|
|
let file = std::fs::File::open("examples/beep3.ogg").unwrap();
|
|
let beep3 = rodio::play_once(&device, file).unwrap();
|
|
println!("Started beep3");
|
|
|
|
thread::sleep(Duration::from_millis(1500));
|
|
drop(beep1);
|
|
println!("Stopped beep1");
|
|
|
|
thread::sleep(Duration::from_millis(1500));
|
|
drop(beep3);
|
|
println!("Stopped beep3");
|
|
|
|
thread::sleep(Duration::from_millis(1500));
|
|
}
|