Merge pull request #435 from Mic92/ipv6

server: also listen to ipv6
This commit is contained in:
Eren Gölge 2021-04-16 20:34:49 +02:00 committed by GitHub
commit e31f174cf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 6 deletions

View File

@ -1,7 +1,7 @@
--- ---
name: 🐛 Bug report name: 🐛 Bug report
about: Create a bug report to help 🐸 improve about: Create a bug report to help 🐸 improve
title: 'Bug: ' title: '[Bug] '
labels: bug labels: bug
assignees: '' assignees: ''

View File

@ -1,7 +1,7 @@
--- ---
name: 🚀 Feature request name: 🚀 Feature request
about: Suggest a feature or an idea for this project about: Suggest a feature or an idea for this project
title: 'Feature request: ' title: '[Feature request] '
labels: feature request labels: feature request
assignees: '' assignees: ''

View File

@ -9,6 +9,8 @@
[![Covenant](https://camo.githubusercontent.com/7d620efaa3eac1c5b060ece5d6aacfcc8b81a74a04d05cd0398689c01c4463bb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f6e7472696275746f72253230436f76656e616e742d76322e3025323061646f707465642d6666363962342e737667)](https://github.com/coqui-ai/TTS/blob/master/CODE_OF_CONDUCT.md) [![Covenant](https://camo.githubusercontent.com/7d620efaa3eac1c5b060ece5d6aacfcc8b81a74a04d05cd0398689c01c4463bb/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f6e7472696275746f72253230436f76656e616e742d76322e3025323061646f707465642d6666363962342e737667)](https://github.com/coqui-ai/TTS/blob/master/CODE_OF_CONDUCT.md)
[![Downloads](https://pepy.tech/badge/tts)](https://pepy.tech/project/tts) [![Downloads](https://pepy.tech/badge/tts)](https://pepy.tech/project/tts)
[![Gitter](https://badges.gitter.im/coqui-ai/TTS.svg)](https://gitter.im/coqui-ai/TTS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Gitter](https://badges.gitter.im/coqui-ai/TTS.svg)](https://gitter.im/coqui-ai/TTS?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![DOI](https://zenodo.org/badge/265612440.svg)](https://zenodo.org/badge/latestdoi/265612440)
📰 [**Subscribe to 🐸Coqui.ai Newsletter**](https://coqui.ai/?subscription=true) 📰 [**Subscribe to 🐸Coqui.ai Newsletter**](https://coqui.ai/?subscription=true)

View File

@ -12,7 +12,7 @@
"ljspeech":{ "ljspeech":{
"tacotron2-DDC": { "tacotron2-DDC": {
"description": "Tacotron2 with Double Decoder Consistency.", "description": "Tacotron2 with Double Decoder Consistency.",
"github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/untagged-f1622e6df45e9f07b766/tts_models--en--ljspeech--tacotron2-DDC.zip", "github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/v0.0.12/tts_models--en--ljspeech--tacotron2-DDC.zip",
"default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2", "default_vocoder": "vocoder_models/en/ljspeech/hifigan_v2",
"commit": "bae2ad0f", "commit": "bae2ad0f",
"author": "Eren Gölge @erogol", "author": "Eren Gölge @erogol",
@ -152,7 +152,7 @@
}, },
"hifigan_v2":{ "hifigan_v2":{
"description": "HiFiGAN_v2 LJSpeech vocoder from https://arxiv.org/abs/2010.05646.", "description": "HiFiGAN_v2 LJSpeech vocoder from https://arxiv.org/abs/2010.05646.",
"github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/untagged-fb45647fd183a241dda1/vocoder_model--en--ljspeech-hifigan_v2.zip", "github_rls_url": "https://github.com/coqui-ai/TTS/releases/download/v0.0.12/vocoder_model--en--ljspeech-hifigan_v2.zip",
"commit": "bae2ad0f", "commit": "bae2ad0f",
"author": "@erogol", "author": "@erogol",
"license": "", "license": "",

View File

@ -117,7 +117,7 @@ def tts():
def main(): def main():
app.run(debug=args.debug, host="0.0.0.0", port=args.port) app.run(debug=args.debug, host="::", port=args.port)
if __name__ == "__main__": if __name__ == "__main__":

View File

@ -18,7 +18,7 @@ if LooseVersion(sys.version) < LooseVersion("3.6") or LooseVersion(sys.version)
) )
version = '0.0.11' version = '0.0.12'
cwd = os.path.dirname(os.path.abspath(__file__)) cwd = os.path.dirname(os.path.abspath(__file__))
class build_py(setuptools.command.build_py.build_py): # pylint: disable=too-many-ancestors class build_py(setuptools.command.build_py.build_py): # pylint: disable=too-many-ancestors