This commit is contained in:
Masato Kikuchi
2025-03-27 13:18:22 +09:00
parent e915e2bc84
commit 2687af1a9b

View File

@@ -31,7 +31,7 @@ fn main_inner() -> anyhow::Result<()> {
}
let audio =
tts_holder.easy_synthesize(ident, &text, 0, 0, tts::SynthesizeOptions::default())?;
tts_holder.easy_synthesize(ident, text, 0, 0, tts::SynthesizeOptions::default())?;
fs::write("output.wav", audio)?;
Ok(())