Skip to content

Commit 30380ee

Browse files
committed
update Readme and requirements.txt
1 parent 94fbdbd commit 30380ee

File tree

2 files changed

+18
-20
lines changed

2 files changed

+18
-20
lines changed

Text-to-speech-coverter/Readme.md

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,33 @@
1-
Certainly! Here's an example of a README file that you can use to document the code:
2-
3-
pgsql
4-
Copy
51
# Text-to-Speech Conversion
62

73
This Python program converts text input into speech using the Google Text-to-Speech (gTTS) library and plays the generated audio using the `playsound` library.
84

95
## Requirements
106

117
- Python 3.x
12-
- `gTTS` library (`pip install gTTS`)
13-
- `playsound` library (`pip install playsound`)
8+
- See `requirements.txt` for the required libraries and versions.
9+
10+
## Installation
11+
12+
1. Clone the repository:https://github.com/emranpy/Amazing-Python-Scripts.git
13+
2. Navigate to the project directory: cd Text-to-speech-converter
14+
3. Install the required libraries: pip install -r requirements.txt
1415

1516
## Usage
1617

17-
1. Install the required libraries by running the following commands:
18-
pip install gTTS
19-
pip install playsound
18+
1. Run the `text_to_speech.py` script:
19+
20+
2. Enter the desired text when prompted.
2021

21-
Copy
22+
3. The program will convert the entered text to speech and save it as an MP3 file named `output.mp3`.
2223

23-
2. Run the `text_to_speech.py` script:
24-
```
25-
python text_to_speech.py
26-
Enter the desired text when prompted.
24+
4. The generated speech will be played automatically using the default audio player on your system.
2725

28-
The program will convert the entered text to speech and save it as an MP3 file named output.mp3.
26+
## Customization
2927

30-
The generated speech will be played automatically using the default audio player on your system.
28+
- You can modify the code to change the language or adjust the speech synthesis options by referring to the `gTTS` documentation.
3129

32-
Customization
33-
You can modify the code to change the language or adjust the speech synthesis options by referring to the gTTS documentation.
30+
- To change the output filename, modify the `filename` variable in the code.
3431

35-
To change the output filename, modify the filename variable in the code.
32+
- Feel free to incorporate the text-to-speech functionality into your own projects by importing the `text_to_speech` function.
3633

37-
Feel free to incorporate the text-to-speech functionality into your own projects by importing the text_to_speech function.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
gTTS==2.2.3
2+
playsound==1.2.2

0 commit comments

Comments
 (0)