From e42a72eb790936c2774ae9e802b51f68911fa5d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 4 Jul 2023 12:14:54 +0200 Subject: [PATCH] Fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 231120db..f9605355 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ tts = TTS("tts_models/de/thorsten/tacotron2-DDC") tts.tts_with_vc_to_file( "Wie sage ich auf Italienisch, dass ich dich liebe?", speaker_wav="target/speaker.wav", - file_path="ouptut.wav" + file_path="output.wav" ) # Example text to speech using [🐸Coqui Studio](https://coqui.ai) models. @@ -255,7 +255,7 @@ api = TTS("tts_models/deu/fairseq/vits") api.tts_with_vc_to_file( "Wie sage ich auf Italienisch, dass ich dich liebe?", speaker_wav="target/speaker.wav", - file_path="ouptut.wav" + file_path="output.wav" ) ```