mirror of
https://github.com/RustAudio/rodio
synced 2024-12-14 22:22:44 +00:00
18 lines
483 B
Rust
18 lines
483 B
Rust
|
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();
|
||
|
}
|