Metadata-Version: 1.1
Name: yandex_speech
Version: 0.2
Summary: A library for Yandex speech kit
Home-page: https://github.com/art1415926535/Yandex_speech
Author: Artem Fedotov
Author-email: art1415926535@ya.ru
License: MIT
Description: ============================
        Yandex speech kit for Python
        ============================
        
        Generation of speech using `Yandex SpeechKit
        <https://tech.yandex.ru/speechkit/>`_.
        
        1. Import module
            ``from yandex_speech import tts``
        
        2. Call a function
            ``tts.generate_voice("РџСЂРёРІРµС‚", "mp3", "jane", "60589d42-0e42-b742-8942-thekeyisalie")``
        
            *Required parameters:*
        
            - ``text`` - Text to speech: "Р·+Р°РјРѕРє" (before the stressed vowel can be put "+"; the restriction on line length: 2000 bytes);
            - ``extension`` - Audio file format: "mp3", "wav", "opus";
            - ``speaker`` - Speaker
                - female: "jane", "oksana", "alyss", "omazh";
                - male: "zahar", "ermil";
            - ``key`` - `APIвЂ‘key <https://developer.tech.yandex.ru>`_.
        
            *Optional parameters:*
        
            - ``lang`` - Language: "ruвЂ‘RU", "en-US", "tr-TR", "uk-UK";
            - ``path`` - A path to save file: "test", "dirname/test", "test.mp3", "dirname/test.mp3";
            - ``emotion`` - The color of the voice: "neutral" (by default), "evil", "good";
            - ``speed`` - Speech tempo: a value between 0.1 (slowest) to 3.0 (fastest).
        
            Returns the path.
        
        References
        ----------
        `SpeechKit Cloud API
        <https://tech.yandex.ru/speechkit/cloud/doc/intro/overview/concepts/about-docpage/>`_
        
        `Overview technology
        <https://tech.yandex.ru/speechkit/cloud/doc/dg/concepts/speechkit-dg-overview-technology-tts-docpage/>`_
        
        `The format of request and response
        <https://tech.yandex.ru/speechkit/cloud/doc/dg/concepts/speechkit-dg-tts-docpage/>`_
        
        `SpeechKit Key
        <https://developer.tech.yandex.ru>`_
        
Keywords: yandex speech kit text-to-speech tts
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Russian
Classifier: Natural Language :: English
Classifier: Natural Language :: Turkish
Classifier: Natural Language :: Ukranian
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
