headroom 1.7.2

Audio loudness analyzer and gain adjustment tool for mastering workflows
1
2
3
4
5
6
7
8
9
10
11
mod analyzer;
mod cli;
mod processor;
mod report;
mod scanner;

use anyhow::Result;

fn main() -> Result<()> {
    cli::run()
}