MyGit

v0.14.1

coqui-ai/TTS

版本发布时间: 2023-06-05 17:30:45

coqui-ai/TTS最新发布版本:v0.22.0(2023-12-12 23:11:16)

What's Changed

New Contributors

Full Changelog: https://github.com/coqui-ai/TTS/compare/v0.14.0...v0.14.1

Example text to speech using Fairseq models in ~1100 languages 🤯.

For these models use the following name format: tts_models/<lang-iso_code>/fairseq/vits.

You can find the list of language ISO codes here and learn about the Fairseq models here.

from TTS.api import TTS
api = TTS(model_name="tts_models/eng/fairseq/vits", gpu=True)
api.tts_to_file("This is a test.", file_path="output.wav")

# TTS with on the fly voice conversion
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"
)

相关地址:原始地址 下载(tar) 下载(zip)

查看:2023-06-05发行的版本