from gtts import gTTS import os tts = gTTS(text='Hello World', lang='en') tts.save("hello.mp3") os.system("mpg321 hello.mp3") python logo jarvis python code Python hosting: Host, run, and code Python in the cloud! I thought it would be cool to create a personal assistant in Python. If you are into movies you may have heard of Jarvis, an A.I. based character in the Iron Man films. In this tutorial we will create a robot. In this tutorial you get started with coding your own Jarvis, the voice activated assistant in Iron Man. Jarvis is a voice assistant, similar to Apple’s Siri or Google Now. In this tutorial we use the power of the Python programming language and a text-to-speech service. I’m going to be using Ubuntu Linux for this project but you should be able to use it in Windows or Mac as well. However, since there’s quite a bit of command line work required, I’d recommend doing this on a Linux machine. The features I want to have are: Recogni...
Posts
Showing posts from August, 2022