Metadata-Version: 1.1
Name: parrots
Version: 0.1.4
Summary: Chinese Text To Speech and Speech Recognition
Home-page: https://github.com/shibing624/parrots
Author: XuMing
Author-email: xuming624@qq.com
License: Apache 2.0
Description: 
        ## Usage
        
        ### install
        * pip3 install parrots 
        * Or 
        ```
        git clone https://github.com/shibing624/parrots.git
        cd pyrrots
        python3 setup.py install
        ```
        
        
        ### speech recognition 
        input:
        ```
        import parrots
        
        text = parrots.speech_recognition_from_file('./16k.wav')
        print(text)
        
        ```
        
        output:
        ```
        北京图书馆
        ```
        
        ### tts
        input:
        ```
        import parrots
        
        audio_file_path = parrots.synthesize('北京图书馆')
        print(audio_file_path)
        
        ```
        
        output:
        ```
        北京图书馆 语音文件路径
        ```
        
        
        
Keywords: TTS,chinese text to speech,speech
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Natural Language :: Chinese (Traditional)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP
