Voice Control Menu in Python

Voice Control Menu in Python

Hi there! Today we are going to create a python-based voice-controlled menu program. In this menu, we will integrate some of the basics technologies like AWS, Linux in our menu.

Let's start

In this menu the main modules which have been used are :

  • speech_recognition
  • os
  • subprocess
  • time
  • pyttsx3

You can install these modules using

pip install <module_name>

and check if the modules are installed using

pip list

Now let's write the code for our menu. After writing the code for the menu and it looks like this

Screenshot (1148).png

You can check the repository here

This was our simple voice-controlled menu in python. That's it for this one see you next time ...!!