adk-audio 0.5.0

Audio intelligence and pipeline orchestration for ADK-Rust agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Built-in audio processors (DSP effects).
//!
//! Requires the `fx` feature flag.

mod compressor;
mod noise;
mod normalizer;
mod pitch;
mod resampler;
mod trimmer;

pub use compressor::DynamicRangeCompressor;
pub use noise::NoiseSuppressor;
pub use normalizer::LoudnessNormalizer;
pub use pitch::PitchShifter;
pub use resampler::Resampler;
pub use trimmer::SilenceTrimmer;