mirror of
https://github.com/RustAudio/rodio
synced 2024-12-13 13:42:34 +00:00
15 lines
463 B
Rust
15 lines
463 B
Rust
use rodio::Source;
|
|
use std::io::BufReader;
|
|
use std::time::Duration;
|
|
|
|
fn main() {
|
|
let stream = rodio::OutputStream::try_default().unwrap();
|
|
let sink = rodio::Sink::new(&stream);
|
|
|
|
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();
|
|
}
|