https://github.com/willwade/pyreadaloud
A simple app to read aloud the text in a text box. Will highlight each word. Allows you to read sentence by sentence or word or para
https://github.com/willwade/pyreadaloud
Last synced: 12 months ago
JSON representation
A simple app to read aloud the text in a text box. Will highlight each word. Allows you to read sentence by sentence or word or para
- Host: GitHub
- URL: https://github.com/willwade/pyreadaloud
- Owner: willwade
- License: mit
- Created: 2024-05-01T07:52:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-14T06:33:45.000Z (over 1 year ago)
- Last Synced: 2025-03-13T03:14:38.904Z (about 1 year ago)
- Language: Python
- Size: 258 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
pyReadAloud
-----------
A small app that reads words, sentences or paragraphs aloud. Should work cross platform.
NOTE: highlighting unreliable to impossible with anything other than a system voice
NOTE: No idea why this crashes silently on a mac..
**Requirements**
```
# tested on py 3.11.4
pip install -r requirements.txt
python pyRreadAloud.py
```
**Creating Voice JSON files**
First edit the `.env` file in tools with your various API keys
```
# tested on py 3.11.4
cd tools
pip install -r requirements.txt
python getAllVoiceJSONFiles.py
```
## License
MorseWriter is licensed under the MIT License:
Copyright (c) 2012 Will Wade (http://sourceymonkey.com/)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.