A python speech to text library
Project description
Speech to Text (STT) Project
This project leverages Selenium and webdriver_manager to utilize Chrome's built-in text-to-speech feature. It's designed for simplicity and ease of use, allowing you to configure continuous text-to-speech functionality and optional English translation.
Features
- Continuous Speech-to-Speech: Decide if you want the text-to-speech functionality to run continuously.
- Optional English Translation: Choose whether to translate text to English before speaking.
- 100% accuracy: Gives you the 100% accuracy in listening by google chrome's algorithm.
Prerequisites
Seleniumwebdriver_manager
Setup
-
Install dependencies:
pip install selenium webdriver_manager mtranslate
-
Create Configuration Files:
write_text_file_path.txt: This file will be the file in which the text is written by converting from speech.
Parameters
write_text_file_path.txt: This file will be the file in which the text is written by converting from speech.translate(bool): Set to True to translate the text to English before speaking, False otherwise.
Usage
To use the text-to-speech functionality, import the Listener class from python-speech-to-text and initialize it with the appropriate parameters.
If you want the speech-to-text functionality to run continuously, it is recommended to use threading. This will prevent the function from blocking the execution of further code until it is stopped.
Example with Threading
import os
import threading
from python-speech-to-text import Listener
a = Listener(os.path.join(os.getcwd(), "text.txt"))
listener_thread = threading.Thread(target=a.listen) # It is compulsory to use threading or it will just block the execution of other code and also won't stop if needed.
listener_thread.start() # start the thread
# Now for stop listening
a.StopRecognition()
listener_thread.join() # wait until the thread finishes
To make the program listen properly, speak a bit loud and clear words.
This project is managed by Artex AI. Soon an improved and stable version will roll out
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_speech_to_text-0.0.1.tar.gz.
File metadata
- Download URL: python_speech_to_text-0.0.1.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6a2c9cb4aca9112b233b462d24e211c28cb86412e14879ac59470103ca8118f
|
|
| MD5 |
d7c45a8fa7ed8dd2a929c19166631fe3
|
|
| BLAKE2b-256 |
91e653dc744d74579a5e02695484effd8f9302363bb0baf7ffb84218a68bc855
|
File details
Details for the file python_speech_to_text-0.0.1-py3-none-any.whl.
File metadata
- Download URL: python_speech_to_text-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c57abddc541be5cd44cdad515885bc96fad99a7c713e8addde60a78b515feca
|
|
| MD5 |
25107e7e9fc11315cbf5eabfc81531c2
|
|
| BLAKE2b-256 |
d70a0059ac7f78878163bfa8e61c98f1359fe35547e698fd2e1e9a49bf0fd7fc
|