Metadata-Version: 2.1
Name: clovaTTS
Version: 0.1.2
Summary: A TTS Wrapper for Naver Clova Speech Synthesis API
Home-page: https://github.com/zebehn/clovaTTS
Author: Minsu Jang
Author-email: minsu@etri.re.kr
License: MIT
Description: # clovaTTS
        
        clova-tts performs text-to-speech using [Naver Clova Speech Synthesis API](https://developers.naver.com/products/clova/tts/).
        
        ## Installation
        
          ```
          pip install clovaTTS
          ```
        
        ## Quickstart
          ```
          from clovaTTS import clovaTTS
          
          # clovaTTS can save sound data in an internal cache and reuse it. cache_dir should exist.
          # Default: use_cache=False
          tts = clovaTTS("mijin", "<client_id>", "<client_secret>", use_cache=True, cache_dir="/home/ttscache")
        
          # Input text (in Korean)
          text = "그래요. 많은 분들이 저를 찾고 있지요."
        
          # Perform Text-to-Speech
          speech = tts.tts(text)
        
          # Save the output into a file
          tts.save("output.mp3", speech)
          ```
        
        ## Contact
        Any questions or assistance? Please contact me at minsu(at)etri.re.kr.
        
Keywords: tts naver clova
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
