Metadata-Version: 1.1
Name: py-picotts
Version: 0.1.2
Summary: Python interface for SVOX Pico TTS pico2wave
Home-page: https://github.com/gooofy/py-picotts
Author: Guenter Bartsch
Author-email: guenter@zamia.org
License: Apache
Description-Content-Type: UNKNOWN
Description: py-picotts
        ==========
        
        Some simple wrappers around SVOX Pico TTS intended to make using this
        TTS for wave file generation as convenient as possible.
        
        Target audience are developers who would like to use SVOX Pico TTS as-is
        for speech synthesis in their Python application on GNU/Linux operating
        systems.
        
        Constructive comments, patches and pull-requests are very welcome.
        
        Examples
        --------
        
        First, imports:
        
            import wave
            import StringIO
            from picotts import PicoTTS
        
        english (default) synthesis:
        
            picotts = PicoTTS()
            wavs = picotts.synth_wav('Hello World!')
            wav = wave.open(StringIO.StringIO(wavs))
            print wav.getnchannels(), wav.getframerate(), wav.getnframes()
        
        result:
        
            1 16000 22720
        
        try a different language:
        
            picotts.voice = 'de-DE'
            wavs = picotts.synth_wav('Hallo Welt!')
            wav = wave.open(StringIO.StringIO(wavs))
            print wav.getnchannels(), wav.getframerate(), wav.getnframes()
        
        result:
        
            1 16000 22464
        
        ### List Available Voices
        
            l = picotts.voices
        
        result:
        
            ['de-DE', 'en-GB', 'en-US', 'es-ES', 'fr-FR', 'it-IT']
        
        Links
        -----
        
        -   <https://packages.debian.org/jessie/libttspico0> [Debian Package]
        
        Requirements
        ------------
        
        -   Python 2.7
        
        -   pico2wave binary installed and in PATH
        
        License
        -------
        
        My own code is Apache-2.0 licensed unless otherwise noted in the
        script’s copyright headers.
        
        Author
        ------
        
        Guenter Bartsch \<<guenter@zamia.org>\>
        
Platform: Linux
Classifier: Topic :: Multimedia :: Sound/Audio :: Sound Synthesis
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
