bliss-rs/examples/analyze.rs

18 lines
464 B
Rust
Raw Normal View History

use bliss_audio_symphonia::Song;
2021-05-14 15:35:08 +01:00
use std::env;
/**
* Simple utility to print the result of an Analysis.
*
* Takes a list of files to analyze an the result of the corresponding Analysis.
2021-05-14 15:35:08 +01:00
*/
fn main() {
let args: Vec<String> = env::args().skip(1).collect();
for path in &args {
2022-04-02 18:47:06 +01:00
match Song::from_path(&path) {
Ok(song) => println!("{}: {:?}", path, song.analysis),
2021-05-14 15:35:08 +01:00
Err(e) => println!("{}: {}", path, e),
}
}
}