|
| 1 | + |
| 2 | +# Speech-to-Text Converter |
| 3 | +<!--Remove the below lines and add yours --> |
| 4 | +This Python script converts the Speech input into Text using NLP(Natural Langauge Processing). |
| 5 | + |
| 6 | +### Requirements |
| 7 | +<!--Remove the below lines and add yours --> |
| 8 | +**Installation Required** : |
| 9 | + |
| 10 | + Python Speech Recognition module: |
| 11 | + |
| 12 | + `pip install speechrecognition` |
| 13 | + |
| 14 | + PyAudio: Use the following command for linux users |
| 15 | + |
| 16 | + `sudo apt-get install python3-pyaudio` |
| 17 | + |
| 18 | + Windows users can install pyaudio by executing the following command in a terminal |
| 19 | + |
| 20 | + `pip install pyaudio` |
| 21 | + |
| 22 | + Python pyttsx3 module: |
| 23 | + |
| 24 | + `pip install pyttsx3` |
| 25 | + |
| 26 | +### How to run the script |
| 27 | +<!--Remove the below lines and add yours --> |
| 28 | + |
| 29 | +- Enter the audio input by speaking into the microphone. |
| 30 | +- Run converter_terminal.py script |
| 31 | +- Output Text will be displayed |
| 32 | + |
| 33 | + |
| 34 | +## *Author Name* |
| 35 | +<!--Remove the below lines and add yours --> |
| 36 | +Devansh Agarwal |
| 37 | + |
0 commit comments