All Projects → azraelkuan → FFTNet

azraelkuan / FFTNet

Licence: other
FFTNet: a Real-Time Speaker-Dependent Neural Vocoder

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to FFTNet

LVCNet
LVCNet: Efficient Condition-Dependent Modeling Network for Waveform Generation
Stars: ✭ 67 (+6.35%)
Mutual labels:  text-to-speech, vocoder
vietTTS
Vietnamese Text to Speech library
Stars: ✭ 78 (+23.81%)
Mutual labels:  text-to-speech, vocoder
melgan
MelGAN implementation with Multi-Band and Full Band supports...
Stars: ✭ 54 (-14.29%)
Mutual labels:  text-to-speech, vocoder
Fre-GAN-pytorch
Fre-GAN: Adversarial Frequency-consistent Audio Synthesis
Stars: ✭ 73 (+15.87%)
Mutual labels:  text-to-speech, vocoder
Tts
🤖 💬 Deep learning for Text to Speech (Discussion forum: https://discourse.mozilla.org/c/tts)
Stars: ✭ 5,427 (+8514.29%)
Mutual labels:  text-to-speech, vocoder
pytorch FFTNet
A pytorch implementation of FFTNet.
Stars: ✭ 35 (-44.44%)
Mutual labels:  vocoder, fftnet
Tensorflowtts
😝 TensorFlowTTS: Real-Time State-of-the-art Speech Synthesis for Tensorflow 2 (supported including English, French, Korean, Chinese, German and Easy to adapt for other languages)
Stars: ✭ 2,382 (+3680.95%)
Mutual labels:  text-to-speech, vocoder
wavenet-like-vocoder
Basic wavenet and fftnet vocoder model.
Stars: ✭ 20 (-68.25%)
Mutual labels:  vocoder, fftnet
Wavegrad
Implementation of Google Brain's WaveGrad high-fidelity vocoder (paper: https://arxiv.org/pdf/2009.00713.pdf). First implementation on GitHub.
Stars: ✭ 245 (+288.89%)
Mutual labels:  text-to-speech
brasiltts
Brasil TTS é um conjunto de sintetizadores de voz, em português do Brasil, que lê telas para portadores de deficiência visual. Transforma texto em áudio, permitindo que pessoas cegas ou com baixa visão tenham acesso ao conteúdo exibido na tela. Embora o principal público-alvo de sistemas de conversão texto-fala – como o Brasil TTS – seja formado…
Stars: ✭ 34 (-46.03%)
Mutual labels:  text-to-speech
Go Astibob
Golang framework to build an AI that can understand and speak back to you, and everything else you want
Stars: ✭ 222 (+252.38%)
Mutual labels:  text-to-speech
ttsflow
tensorflow speech synthesis c++ inference for voicenet
Stars: ✭ 17 (-73.02%)
Mutual labels:  text-to-speech
myG2P
Myanmar (Burmese) Language Grapheme to Phoneme (myG2P) Conversion Dictionary for speech recognition (ASR) and speech synthesis (TTS).
Stars: ✭ 43 (-31.75%)
Mutual labels:  text-to-speech
Hantts
Chinese Text-to-Speech web service
Stars: ✭ 241 (+282.54%)
Mutual labels:  text-to-speech
vits
VITS: Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech
Stars: ✭ 1,604 (+2446.03%)
Mutual labels:  text-to-speech
Tts Cube
End-2-end speech synthesis with recurrent neural networks
Stars: ✭ 213 (+238.1%)
Mutual labels:  text-to-speech
Ronor
Sonos smart speaker controller API and command-line tools
Stars: ✭ 212 (+236.51%)
Mutual labels:  text-to-speech
soundpad-text-to-speech
Text-To-Speech for Soundpad
Stars: ✭ 29 (-53.97%)
Mutual labels:  text-to-speech
MouseTooltipTranslator
chrome extension - When mouse hover on text, it shows translated tooltip using google translate
Stars: ✭ 93 (+47.62%)
Mutual labels:  text-to-speech
hawking
The retro text-to-speech bot for Discord
Stars: ✭ 24 (-61.9%)
Mutual labels:  text-to-speech

FFTNet

a TensorFlow implementation of the FFTNet

Quick Start

  1. install requirements
pip install -r requirements.txt
  1. Download data click here

  2. Extract Features

python preprocess.py \
    --name cmu_arctic \
    --in_dir your_data_dir \
    --out_dir the_feature_dir \
    --hparams "input_type=mulaw-quantize"  # mulaw_quantize is better in my test
  1. Training Process

you can split your train.txt into two parts in you data_dir

python train.py \
    --train_file "your_data_dir/train.txt" \
    --val_file "your_data_dir/val.txt" \
    --name "upsample_slt"
  1. Synthesis Process
python synthesis.py \
    --checkpoint_path "your_checkpoint_dir" \
    --output "your_output_dir" \
    --local_path "local_condtion_path"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].