https://github.com/kalebu/image-to-sound-python-
A python project for converting an Image into audible sound using OCR and speech synthesis
https://github.com/kalebu/image-to-sound-python-
artificial-intelligence computer-vision nlp ocr optical-character-recognition python-3 python-pro python-programming python-project-beginner python-projects python-tanzania speech-synthesis
Last synced: about 2 months ago
JSON representation
A python project for converting an Image into audible sound using OCR and speech synthesis
- Host: GitHub
- URL: https://github.com/kalebu/image-to-sound-python-
- Owner: Kalebu
- Created: 2020-05-07T17:44:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-15T11:35:32.000Z (over 1 year ago)
- Last Synced: 2025-03-29T23:11:16.044Z (3 months ago)
- Topics: artificial-intelligence, computer-vision, nlp, ocr, optical-character-recognition, python-3, python-pro, python-programming, python-project-beginner, python-projects, python-tanzania, speech-synthesis
- Language: Python
- Homepage: https://kalebujordan.dev/convert-an-image-text-sound/
- Size: 160 KB
- Stars: 65
- Watchers: 1
- Forks: 34
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# image-to-sound-python-
Intro
--------
This repo will help you get started on how you can get started with Optical character recognition (*OCR*) and speech synthesis in python by building a simple project that will be converting an image into an audible sounds, combining both **OCR** and **SPeech synthesis** in one applicationFull article
------------
The full article for this source code can be found on [my blog](kalebujordan.com) on an article named [How to convert image to sound in Python ](https://kalebujordan.com/image-to-sound-in-python/).Getting started
-----------------
In order to use this code, firstly clone the repo using **git** or download the zip file manually```bash
$-> git clone https://github.com/Kalebu/image-to-sound-python-
$->cd image-to-sound-python-
$ image-to-sound-python--> python app.py
```Dependancies
-------------
In order to run this code you're supposed to have **pytesseract** and **google text to sound** libary installed
on your machine, you can just use *pip* command to this.```bash
-> pip install pytesseract
-> pip install gTTS
```**Note**: Installing pytesseeract can be an issue sometimes, so there ways in which you could do this effectively, to see how I recommend you going through the article [How to convert image to sound in Python ](https://kalebujordan.com/image-to-sound-in-python/)
.How to run
------------
By default the script will load an image with name **image.jpg** from its current directory
to change it adjust the it to be the your new image name.
Explore it
-----------
Now keep explore it by testing it with various input picture to see what kinda of sound it producesGive it a star
--------------
Did you find this information useful, then give it a starCredits
-----------
All the credits to [kalebu](github.com/kalebu)