ysay 0.3.2

speech with siliconflow speech api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod cli;
mod error;
mod play;
mod tts;

use structopt::StructOpt;

fn main() {
    env_logger::init();

    let cli_args = cli::SayCli::from_args();
    let result = cli::handle_say(&cli_args);
    if let Err(err) = result {
        log::error!("== err: {:?}", err);
    }
}