mirror of
https://github.com/RustAudio/rodio
synced 2024-12-12 13:12:30 +00:00
0517ee7216
* Remove static/global facilities.
17 lines
486 B
Rust
17 lines
486 B
Rust
extern crate rodio;
|
|
|
|
use rodio::Source;
|
|
use std::io::BufReader;
|
|
use std::time::Duration;
|
|
|
|
fn main() {
|
|
let device = rodio::RodioDevice::default_output().unwrap();
|
|
let sink = rodio::Sink::new(&device);
|
|
|
|
let file = std::fs::File::open("examples/music.ogg").unwrap();
|
|
let source = rodio::Decoder::new(BufReader::new(file)).unwrap();
|
|
let with_reverb = source.buffered().reverb(Duration::from_millis(40), 0.7);
|
|
sink.append(with_reverb);
|
|
|
|
sink.sleep_until_end();
|
|
}
|