Single speaker Bangla Male/Female models
These are single-speaker VITS models with a 22050hz sampling rate.
By 👑 @mobassir94
Original repo: https://github.com/mobassir94/comprehensive-bangla-tts
Male Model
tts --model_name tts_models/bn/custom/vits-male --text "এটি ডেমো করার উদ্দেশ্যে একটি ডেমো"
from TTS.api import TTS
tts = TTS(model_name="tts_models/bn/custom/vits-male")
tts.tts_to_file(text="এটি ডেমো করার উদ্দেশ্যে একটি ডেমো", file_path="output.wav")
# TTS with voice conversion to a reference speaker in `target_speaker.wav`
tts_with_vc_to_file(text="এটি ডেমো করার উদ্দেশ্যে একটি ডেমো", speaker_wav="target_speaker.wav", file_path="output.wav")
Female Model
tts --model_name tts_models/bn/custom/vits-female --text "এটি ডেমো করার উদ্দেশ্যে একটি ডেমো"
from TTS.api import TTS
tts = TTS(model_name="tts_models/bn/custom/vits-female")
tts.tts_to_file(text="এটি ডেমো করার উদ্দেশ্যে একটি ডেমো", file_path="output.wav")
# TTS with voice conversion to a reference speaker in `target_speaker.wav`
tts_with_vc_to_file(text="এটি ডেমো করার উদ্দেশ্যে একটি ডেমো", speaker_wav="target_speaker.wav", file_path="output.wav")