Created
July 3, 2016 06:27
-
-
Save Dilden/4db9dc8224821690142ce653459a60bb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from espeak import espeak | |
import time | |
while True: | |
response = input(">> ") | |
espeak.synth(response) | |
time.sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To install, make sure that the package espeak is installed. To install espeak, run:
Then, to run the script, run
Idea taken from summer projects in Linux Voice 18