import os import shutil import zipfile import gradio as gr os.system('gdown https://drive.google.com/uc?id=1Flw6Z0K2QdRrTn5F-gVt6HdR9TRPiaKy') with zipfile.ZipFile('VQMIVC-pretrained models.zip', 'r') as zip_ref: zip_ref.extractall('.') shutil.move('VQMIVC-pretrained models/checkpoints/', '.') shutil.move('VQMIVC-pretrained models/vocoder/', '.') def inference(audio1, audio2): os.rename(audio1.name, '1.wav') os.rename(audio2.name, '2.wav') os.system('ls') os.system("python convert_example.py -s 1.wav -r 2.wav -c converted -m 'checkpoints/useCSMITrue_useCPMITrue_usePSMITrue_useAmpTrue/VQMIVC-model.ckpt-500.pt'") out = "1_converted_gen.wav" return out inputs = [gr.inputs.Audio(label="Source Audio", type='file'),gr.inputs.Audio(label="Reference Audio", type='file')] outputs = gr.outputs.Audio(label="Output Audio", type='file') title = "VITS" description = "demo for VITS: Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech. To use it, simply add your text, or click one of the examples to load them. Read more at the links below." article = "

Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech | Github Repo

" examples = [ ["We propose VITS, Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech."], ["Our method adopts variational inference augmented with normalizing flows and an adversarial training process, which improves the expressive power of generative modeling."] ] gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples).launch()