lasprs 0.14.0

Library for Acoustic Signal Processing (Rust edition, with optional Python bindings via pyo3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Real time signal analysis blocks, used for visual inspection and showing
//! data 'on the fly'. Examples are real time power spectra plotting
//! (Spectrograms, Auto powers, ..., or )
mod ppm;
mod rtaps;
mod rtslm;
mod rtview;
mod simpleclip;
pub use ppm::{ClipState, PPM, PPMDropSpeed};

#[cfg(feature = "python-bindings")]
pub use ppm::PPMWrapper;

pub use rtaps::{RtAps, RtApsResult};
pub use rtslm::{RtSlm, RtSlmResult};
pub use rtview::RtViewer;
pub use simpleclip::SimpleClipDetector;