Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 406 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 406 Bytes

speech

Python functions that wrap the speech_recognition library. Making recognizing spoken speech a 1 line process.

DEPENDENCIES

speech_recognition (pip)

tts.exe, or any TTS program that takes an argument and converts it to computer spoken audio.

USAGE

Obtaining Speech

import speech

print speech.get()

TTS

import speech

speech.say("Hello world!")