timbre 0.3.0

A library for audio processing with composable effects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Effects that transform or combine [`AudioSource`](crate::AudioSource)s.

mod basic_mixer;
mod echo;
mod high_pass;
mod low_pass;

pub use basic_mixer::{BasicMixer, BasicMixerSource};
pub use echo::Echo;
pub use high_pass::HighPass;
pub use low_pass::LowPass;