Metadata-Version: 2.1
Name: mycroft-tts-plugin-azure
Version: 0.1
Summary: A tts plugin for mycroft, using Azure Cognitive Services
Home-page: http://github.com/dalgwen/mycroft-tts-plugin-azure
Author: Gwendal Roulleau
Author-email: private@private.org
License: Apache-2.0
Description: ### mycroft-tts-plugin-azure
        
        This TTS service for Mycroft requires a subscription to Microsoft Azure and the creation of a Speech resource (https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/overview#create-the-azure-resource)
        
        The free plan is more than able to handle domestic usage (5 million character per month, or 0.5 million with neural tts).
        You can choose your voice here in the column "voice name" (https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/language-support#text-to-speech)
        
        Configuration parameters (only the api_key is mandatory, other are defaulted as in the following) :
        
        ```json
        "tts": {
            "module": "azure_tts",
            "azure": {
                "api_key": "insert_your_key_here",
                "voice": "en-US-JennyNeural",  # optional, default "en-US-Guy24kRUS"
                "region": "westus" # optional, if your region is westus
            }
        }
        ```
        
        ##### Installation
        
        `mycroft-pip install mycroft-tts-plugin-azure`
        
        ##### LICENSE :
        
        Apache-2.0
Keywords: mycroft plugin tts
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Linguistic
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
