mirror of
https://github.com/iluvcapra/bwavfile.git
synced 2026-05-17 12:43:25 +00:00
Examples interface
Notes on Bext
This commit is contained in:
@@ -4,16 +4,17 @@
|
||||
//! This program demonstrats combining several wave files into a single
|
||||
//! polyphonic wave file.
|
||||
|
||||
extern crate clap;
|
||||
|
||||
use std::io;
|
||||
|
||||
#[macro_use]
|
||||
extern crate clap;
|
||||
use clap::{Arg, App};
|
||||
|
||||
fn main() -> io::Result<()> {
|
||||
|
||||
let matches = App::new("wave-deinter")
|
||||
.version("0.1")
|
||||
.author("Jamie Hardt")
|
||||
.version(crate_version!())
|
||||
.author(crate_authors!())
|
||||
.about("Extract each channel of a polyphonic wave file as a new monoaural wave file.")
|
||||
.arg(Arg::with_name("OUTPUT")
|
||||
.long("output")
|
||||
|
||||
Reference in New Issue
Block a user