Popular recipes tagged "text_to_speech"http://code.activestate.com/recipes/tags/text_to_speech/2014-03-02T21:35:15-08:00ActiveState Code RecipesPython text-to-speech with pyttsx (Python)
2014-03-02T21:35:15-08:00Vasudev Ramhttp://code.activestate.com/recipes/users/4173351/http://code.activestate.com/recipes/578839-python-text-to-speech-with-pyttsx/
<p style="color: grey">
Python
recipe 578839
by <a href="/recipes/users/4173351/">Vasudev Ram</a>
(<a href="/recipes/tags/python/">python</a>, <a href="/recipes/tags/pyttsx/">pyttsx</a>, <a href="/recipes/tags/speech/">speech</a>, <a href="/recipes/tags/text_to_speech/">text_to_speech</a>).
</p>
<p>This recipe shows how to generate computer speech from text using the pyttsx Python library. Text-to-speech, or speech synthesis, has many useful applications.</p>
Skype chat to speech (Python)
2009-01-25T13:47:33-08:00nigel spinneyhttp://code.activestate.com/recipes/users/4113342/http://code.activestate.com/recipes/576626-skype-chat-to-speech/
<p style="color: grey">
Python
recipe 576626
by <a href="/recipes/users/4113342/">nigel spinney</a>
(<a href="/recipes/tags/chat/">chat</a>, <a href="/recipes/tags/espeak/">espeak</a>, <a href="/recipes/tags/skype/">skype</a>, <a href="/recipes/tags/text_to_speech/">text_to_speech</a>, <a href="/recipes/tags/ubuntu/">ubuntu</a>).
</p>
<p>Using espeak text to speech in Ubuntu, and the skype4py module, this will read out the contents of chat messages recieved-created to help me when away from my PC so if i have my hands full with the younger members of my family I can decide how urgent the chat is without having to go near the computer.</p>
Speech recognition and voice synthesis in Python for Windows (Python)
2008-08-14T16:57:43-07:00Michaelhttp://code.activestate.com/recipes/users/4166101/http://code.activestate.com/recipes/576412-speech-recognition-and-voice-synthesis-in-python-f/
<p style="color: grey">
Python
recipe 576412
by <a href="/recipes/users/4166101/">Michael</a>
(<a href="/recipes/tags/speech/">speech</a>, <a href="/recipes/tags/speech_recognition/">speech_recognition</a>, <a href="/recipes/tags/text_to_speech/">text_to_speech</a>, <a href="/recipes/tags/tts/">tts</a>, <a href="/recipes/tags/voice/">voice</a>, <a href="/recipes/tags/voice_recognition/">voice_recognition</a>).
Revision 10.
</p>
<p>How to use the speech module to use speech recognition and text-to-speech in Windows XP or Vista.</p>
<p>The voice recognition system can listen for specific phrases, or it can listen for general dictation.</p>
<p>You can use speech.input() like you would use raw_input(), to wait for spoken input and get it back as a string. Or, you can set up a callback function to be run on a separate thread whenever speech events are heard. Multiple callbacks can be set up for multiple speech recognition events.</p>
<p>Uses the Python speech module: <a href="http://pyspeech.googlecode.com" rel="nofollow">http://pyspeech.googlecode.com</a> .</p>