2个版本
0.1.1 | 2023年4月8日 |
---|---|
0.1.0 | 2023年4月8日 |
#1012 in 音频
10KB
145 行
Rust
示例
use voicevox_client::Client;
use reqwest::Result;
use std::{io::Write, fs::File};
#[tokio::main]
async fn main() -> Result<()> {
let client = Client::new("https://127.0.0.1:50021".to_string());
let audio_query = client
.create_audio_query("こんにちは", 1, None)
.await?;
let audio = audio_query.synthesis(1).await?;
let mut file = File::create("examples/hello.wav").unwrap();
file.write_all(&audio).unwrap();
Ok(())
}
依赖项
~4–17MB
~265K SLoC