From 060af0c18703697aef01f09af974df653cea3fc2 Mon Sep 17 00:00:00 2001 From: tuna2134 Date: Wed, 13 Nov 2024 11:43:52 +0000 Subject: [PATCH] format --- sbv2_core/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbv2_core/src/main.rs b/sbv2_core/src/main.rs index 8665b3d..d60311b 100644 --- a/sbv2_core/src/main.rs +++ b/sbv2_core/src/main.rs @@ -17,7 +17,8 @@ fn main_inner() -> anyhow::Result<()> { )?; tts_holder.load_sbv2file(ident, fs::read(env::var("MODEL_PATH")?)?)?; - let audio = tts_holder.easy_synthesize(ident, &text, 0, 0, tts::SynthesizeOptions::default())?; + let audio = + tts_holder.easy_synthesize(ident, &text, 0, 0, tts::SynthesizeOptions::default())?; fs::write("output.wav", audio)?; Ok(())