grigi / talkey

Simple Text-To-Speech (TTS) interface library with multi-language and multi-engine support.
MIT License
24 stars 3 forks source link

Add Windows support to Talkey #1

Closed grigi closed 9 years ago

grigi commented 9 years ago

As per @Largopipas bugreport. Add Windows support:

grigi commented 9 years ago

Hi @Largopipas

I released a new version with basic Windows support.

Please update, install the engine requirements as per the README, and test.

The following sample script speaks using standard eSpeak, mbrola en1 voice, and google tts.

import talkey

tts = talkey.Talkey()
tts.say('Old McDonald has a farm')

tts = talkey.Talkey(espeak={
    'languages': {
        'en': {
            'voice': 'english-mb-en1',
            'words_per_minute': 130
        },
    }
})
tts.say('Old McDonald has a farm')

tts = talkey.Talkey(google={'options': {'enabled': True}})
tts.say('Old McDonald has a farm')

I hope this resolved your issue :-)