Robo Speaker is a simple Python-based text-to-speech (TTS) application that converts text into spoken words. It uses the `pyttsx3` library to provide offline TTS functionality. You can use this tool to make your computer speak any text you input.
- Convert text to speech using a simple Python script.
- Works offline with the
pyttsx3
library. - Adjustable speech rate and volume.
- Easy-to-use command-line interface.
- Python 3.x
pyttsx3
library
- Clone the Repository:
git clone https://github.com/your-username/robo-speaker.git cd robo-speaker
- Install Required Packages: You need to install pyttsx3. You can do this using pip:
pip install pyttsx3
- Run the robo_speaker.py script:
python robo_speaker.py
- Enter the text you want the Robo Speaker to speak when prompted.:
- Type exit to quit the program.:
Below given is the example.
Enter what you want me to say (or 'exit' to quit): Hello, I am Robo Speaker!
# The computer will speak: "Hello, I am Robo Speaker!"
Enter what you want me to say (or 'exit' to quit): exit
# Exiting Robo Speaker. Goodbye!