mirror of
https://github.com/RustAudio/rodio
synced 2024-11-12 23:17:08 +00:00
Add a reverb example
This commit is contained in:
parent
32c75caed1
commit
14cdd05bae
1 changed files with 17 additions and 0 deletions
17
examples/reverb.rs
Normal file
17
examples/reverb.rs
Normal file
|
@ -0,0 +1,17 @@
|
|||
extern crate rodio;
|
||||
|
||||
use rodio::Source;
|
||||
use std::io::BufReader;
|
||||
use std::time::Duration;
|
||||
|
||||
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();
|
||||
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();
|
||||
}
|
Loading…
Reference in a new issue