Skip to main content

MegaTTS 3 - A lightweight and efficient TTS system with ultra high-quality voice cloning

Project description

MegaTTS 3

Official PyTorch Implementation

Key features

  • 🚀Lightweight and Efficient: The backbone of the TTS Diffusion Transformer has only 0.45B parameters.
  • 🎧Ultra High-Quality Voice Cloning: See the demo video below! We also report results of recent TTS models on the Seed test sets in the following table. 🎉Submit a sample on link2 to receive voice latents you can use locally.
  • 🌍Bilingual Support: Supports both Chinese and English, and code-switching.
  • ✍️Controllable: Supports accent intensity control ✅ and fine-grained pronunciation/duration adjustment (coming soon).

MegaTTS 3 Demo Video

🎯Roadmap

  • [2025-03-22] Our project has been released!

Installation

Requirements (for Linux)

# Create a python 3.9 conda env (you could also use virtualenv)
conda create -n megatts3-env python=3.9
conda activate megatts3-env
pip install -r requirements.txt

# Set the root directory
export PYTHONPATH="/path/to/MegaTTS3:$PYTHONPATH" #Linux/Mac
# If you encounter bugs with pydantic in inference, you should check the version of pydantic and gradio.

Requirements (for Windows)

# [The Windows version is currently under testing]
# Comment below dependence in requirements.txt:
# # WeTextProcessing==1.0.4.1

# Create a python 3.10 conda env (you could also use virtualenv)
conda create -n megatts3-env python=3.10
conda activate megatts3-env
pip install -r requirements.txt
conda install -y -c conda-forge pynini==2.1.5
pip install WeTextProcessing==1.0.3

# [Optional] If you want GPU inference, you may need to install specific version of PyTorch for your GPU from https://pytorch.org/.
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu126

# Install specific version of gradio
# If you encounter bugs with pydantic in inference, you should check the version of pydantic and gradio.
pip install gradio==4.12.0 gradio_client==0.8.0

# Set environment variable
set PYTHONPATH="C:\path\to\MegaTTS3;%PYTHONPATH%" #Windows
# [Optional] Set GPU
set CUDA_VISIBLE_DEVICES=0

Requirements (for Docker)

# [The Docker version is currently under testing]
# ! You should download the pretrained checkpoint before running the following command
docker build . -t megatts3:latest

# For GPU inference
docker run -it -p 7929:7929 --gpus all -e CUDA_VISIBLE_DEVICES=0 megatts3:latest
# For CPU inference
docker run -it -p 7929:7929  megatts3:latest

# Visit http://0.0.0.0:7929/ for gradio.

Model Download

The pretrained checkpoint can be found at Google Drive or Huggingface. Please download them and put them to ./checkpoints/xxx.

[!IMPORTANT]
For security issues, we do not upload the parameters of WaveVAE encoder to the above links. You can only use the pre-extracted latents from link1 for inference. If you want to synthesize speech for speaker A, you need "A.wav" and "A.npy" in the same directory. If you have any questions or suggestions for our model, please email us.

This project is primarily intended for academic purposes. For academic datasets requiring evaluation, you may upload them to the voice request queue in link2 (within 24s for each clip). After verifying that your uploaded voices are free from safety issues, we will upload their latent files to link1 as soon as possible.

In the coming days, we will also prepare and release the latent representations for some common TTS benchmarks.

Inference

Command-Line Usage (Standard)

# p_w (intelligibility weight), t_w (similarity weight). Typically, prompt with more noises requires higher p_w and t_w
CUDA_VISIBLE_DEVICES=0 python tts/infer_cli.py --input_wav 'assets/Chinese_prompt.wav'  --input_text "另一边的桌上,一位读书人嗤之以鼻道,'佛子三藏,神子燕小鱼是什么样的人物,李家的那个李子夜如何与他们相提并论?'" --output_dir ./gen

# As long as audio volume and pronunciation are appropriate, increasing --t_w within reasonable ranges (2.0~5.0)
# will increase the generated speech's expressiveness and similarity (especially for some emotional cases).
CUDA_VISIBLE_DEVICES=0 python tts/infer_cli.py --input_wav 'assets/English_prompt.wav' --input_text 'As his long promised tariff threat turned into reality this week, top human advisers began fielding a wave of calls from business leaders, particularly in the automotive sector, along with lawmakers who were sounding the alarm.' --output_dir ./gen --p_w 2.0 --t_w 3.0

Command-Line Usage (for TTS with Accents)

# When p_w (intelligibility weight) ≈ 1.0, the generated audio closely retains the speaker’s original accent. As p_w increases, it shifts toward standard pronunciation. 
# t_w (similarity weight) is typically set 0–3 points higher than p_w for optimal results.
# Useful for accented TTS or solving the accent problems in cross-lingual TTS.
CUDA_VISIBLE_DEVICES=0 python tts/infer_cli.py --input_wav 'assets/English_prompt.wav' --input_text '这是一条有口音的音频。' --output_dir ./gen --p_w 1.0 --t_w 3.0

CUDA_VISIBLE_DEVICES=0 python tts/infer_cli.py --input_wav 'assets/English_prompt.wav' --input_text '这条音频的发音标准一些了吗?' --output_dir ./gen --p_w 2.5 --t_w 2.5

Web UI Usage

# We also support cpu inference, but it may take about 30 seconds (for 10 inference steps).
CUDA_VISIBLE_DEVICES=0 python tts/gradio_api.py

Submodules

[!TIP] In addition to TTS, some submodules in this project may also have additional usages. See ./tts/frontend_fuction.py and ./tts/infer_cli.py for example code.

Aligner

Description: a robust speech-text aligner model trained using pseudo-labels generated by a large number of MFA expert models.

Usage: 1) Prepare the finetuning dataset for our model; 2) Filter the large-scale speech dataset (if the aligner fails to align a certain speech clip, it is likely to be noisy); 3) Phoneme recognition; 4) Speech segmentation.

Graphme-to-Phoneme Model

Description: a Qwen2.5-0.5B model finetuned for robust graphme-to-phoneme conversion.

Usage: Graphme-to-phoneme conversion.

WaveVAE

Description: a strong waveform VAE that can compress 24 kHz speeche into 25 Hz acoustic latent and reconstruct the original wave almost losslessly.

Usage: 1) Acoustic latents can provide a more compact and discriminative training target for speech synthesis models compared to mel-spectrograms, accelerating convergence; 2) Used as acoustic latents for voice conversion; 3) High-quality vocoder.

Security

If you discover a potential security issue in this project, or think you may have discovered a security issue, we ask that you notify Bytedance Security via our security center or sec@bytedance.com.

Please do not create a public GitHub issue.

License

This project is licensed under the Apache-2.0 License.

Citation

This repo contains forced-align version of Sparse Alignment Enhanced Latent Diffusion Transformer for Zero-Shot Speech Synthesis and the WavVAE is mainly based on Wavtokenizer: an efficient acoustic discrete codec tokenizer for audio language modeling. Compared to the model described in paper, the repository includes additional models. These models not only enhance the stability and cloning capabilities of the algorithm but can also be independently utilized to serve a wider range of scenarios.

@article{jiang2025sparse,
  title={Sparse Alignment Enhanced Latent Diffusion Transformer for Zero-Shot Speech Synthesis},
  author={Jiang, Ziyue and Ren, Yi and Li, Ruiqi and Ji, Shengpeng and Ye, Zhenhui and Zhang, Chen and Jionghao, Bai and Yang, Xiaoda and Zuo, Jialong and Zhang, Yu and others},
  journal={arXiv preprint arXiv:2502.18924},
  year={2025}
}

@article{ji2024wavtokenizer,
  title={Wavtokenizer: an efficient acoustic discrete codec tokenizer for audio language modeling},
  author={Ji, Shengpeng and Jiang, Ziyue and Wang, Wen and Chen, Yifu and Fang, Minghui and Zuo, Jialong and Yang, Qian and Cheng, Xize and Wang, Zehan and Li, Ruiqi and others},
  journal={arXiv preprint arXiv:2408.16532},
  year={2024}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

megatts-3.0.0-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file megatts-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: megatts-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.31.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.66.5 CPython/3.8.10

File hashes

Hashes for megatts-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5cef4375448c82f35b56a81d3ad2c26fe6183b09fa288eb1031aa53c13d5f78d
MD5 69e64ee91c83466bf22c29e1e13187a1
BLAKE2b-256 94017fac829d20593a9d64ec0cb39f57a604df96d879ef83fa0d726bdc7490f8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page