基于TensorFlowTTS的中文CPU实时TTS Demo,在CPU服务器部署后可通过网页交互体验
Docker image for Colab-zh-tts-using-baker-dataset from TensorFlowTTS
使用 @azraelkuan 提供的中文预训练模型(tacotron2 + MB-MelGAN)
$ docker run -it -p 5000:5000 jackiexiao/tensorflowtts:zh_baker
Visit http://localhost:5000 for web interface.
Do HTTP GET at http://localhost:5000/api/tts?text=your%20sentence to get WAV audio back:
$ curl -G --output - \
--data-urlencode 'text=你好,世界!' \
'http://localhost:5000/api/tts' | \
aplayThe Docker image is built using these instructions. See Dockerfile for more details.