This Python script converts the Speech input into Text using NLP(Natural Langauge Processing).
Installation Required :
Python Speech Recognition module:
`pip install speechrecognition`
PyAudio: Use the following command for linux users
`sudo apt-get install python3-pyaudio`
Windows users can install pyaudio by executing the following command in a terminal
`pip install pyaudio`
Python pyttsx3 module:
`pip install pyttsx3`
- Enter the audio input by speaking into the microphone.
- Run converter_terminal.py script
- Output Text will be displayed
Devansh Agarwal