Skip to content

ta9ya/python-voicetext

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-voicetext

Voice synthesiser using VoiceText Web API

To use this software, first you need to complete the user registration and get the API key.

Installation

$ pip install python-voicetext

or

$ git clone [email protected]:youtalk/python-voicetext.git
$ cd python-voicetext
$ python setup.py install

Dependencies

Ubuntu

$ sudo apt-get install python-pyaudio

OSX

$ brew install portaudio

Usage

$ ipython
>> from voicetext import VoiceText
>> vt = VoiceText('YOUR_API_KEY')
>> vt.speak('こんにちは。')
>> vt.speaker('takeru').emotion('angry').speak('こんばんは。')
>> with open('greet.wav', 'wb') as f:
.... f.write(vt.to_wave('おはよう。'))

For more information, see also test/test_voicetext.py

About

Voice synthesiser with VoiceText Web API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%