Easy and fast AI Waifu voice generation
Project description
AIwaifu Vocal Pipeline
Waifu Voice - Made Easy
an implementation of AIwaifu Vocal Pipeline to make it easier to create a fast and easy-to-use Cute Waifu Voice Text -> TTS -> Voice Conversion -> Done
Usage
# pip install aivoifu
poetry install aivoifu # Recommended using poetry
from AIvoifu import client_pipeline
model = client_pipeline.tts_pipeline(tts_model_selection='gtts', vc_model_selection='ayaka-jp', hubert_model='zomehwh-hubert-base', language='en')
model.tts('Hello This Is A Test Text Anyway', save_path='./test.wav')
How to add your own TTS/Voice Conversion pipeline
First of all we need to understand how AIwaifu Vocal Pipeline was design There's two components
- TTS: This is a typical text to speech model which you can add your own
- Voice_Conversion: This is our Heroine on making TTS sound like a cute girl by converting TTS speech using Voice Conversion which you can train easily
First of all we get TTS voice from TTS pipeline, adn the we do voice conversion on it
Custom TTS
in the TTS folder you'll found
- tts_base_model: folder
- tts.py
if you wish to add your own TTS model please create a class in tts.py and in the function constructor please download the weight and cache it under the tts_base_model along with other cache file
# Example code
class CustomTTS:
def __init__(self) -> None:
from something import tts_library
self.model_link = 'Huggingface_link'
root = os.path.dirname(os.path.abspath(__file__))
self.model_root_path = f'{root}/base_tts_model/'
self.model_name = 'custom_tts'
model_path = f'{self.model_root_path}/{self.model_name}'
if not os.path.exist(model_path)
os.mkdir(model_path)
weigh_path = f'{model_path}/{self.model_name}.pth'
if not os.path.exist(weigh_path):
wget.download(self.model_link, weigh_path)
self.model = tts_library.load(weigh_path)
print(f'model {self.model_name} initialized')
def tts(self, text:str, save:boolean=True, your_args:any):
# some preprocessing
output = self.model.tts(text)
if save:
output.save('save_path')
return output
Custom Voice Conversion
if you're not looking to add new language but just want to custom the model voice easily
Our recommendation is to just Train Voice Conversion pipeline on your own samples and added it to the zoo
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aivoifu-0.1.7.tar.gz
.
File metadata
- Download URL: aivoifu-0.1.7.tar.gz
- Upload date:
- Size: 148.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5f991287dacebeaf62b9823292066a3ab790dabbf4fdea82292a25d45243b8f |
|
MD5 | 5f0db5839a952c92da86ea9a2bda6f23 |
|
BLAKE2b-256 | 3e3967103ae71383c2655ac379112872c491f127fc84fc47d74143a5e35d6c81 |
File details
Details for the file aivoifu-0.1.7-py3-none-any.whl
.
File metadata
- Download URL: aivoifu-0.1.7-py3-none-any.whl
- Upload date:
- Size: 164.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b741b1ce1a75e0b55634b5400adf05a62cfc60842fc75c25ff4b2ad35291c5df |
|
MD5 | b300c33da41c6c8e3bbde8e5c59de086 |
|
BLAKE2b-256 | d2b875754060f29ed14749065e2d74e2b9f3b22863012011acc4b1b82af47290 |