irgen 0.1.5

Create IR files to enhance the signal of acoustic instrument pickups
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use clap::Parser;

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
struct Args {
    /// Stereo input .waf data (left: pickup, right: mic)
    #[arg(short, long)]
    input_file: String,

    /// Output IR .wav file.
    #[arg(short, long)]
    output_file: String,
}

pub fn main() {
    let args = Args::parse();
    irgen::generate_from_wav(args.input_file, Some(args.output_file), Default::default());
}