headroom 2.1.0

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

use anyhow::Result;

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