Text to Speech (TTS) library for Python 3. Works without internet connection or delay. Supports multiple TTS engines, including Sapi5, nsss, and espeak.
Project description
the code is mostly from pyttsx3.
only because the repo pyttsx3 does not update for years and some new feature i want is not here, i cloned this repo.
the changelog:
- add memory support for sapi5
- add memory support for espeak(espeak is not tested). eg:
b = BytesIO()
engine.save_to_file('i am Hello World', b)
engine.runAndWait()
-
fix VoiceAge key error
-
fix for sapi save_to_file when it run on machine without outputsream device.
-
fix save_to_file does not work on mac os ventura error. --3.0.6
-
add pitch support for sapi5(not tested yet). --3.0.8
-
fix nsss engine: Import super from objc to fix AttributeError by @matt-oakes.
-
add tts support: deep-learning text to voice backend:
just say:
engine = pyttsx4.init('coqui_ai_tts')
engine.say('this is an english text to voice test.')
engine.runAndWait()
cloning someones voice:
engine = pyttsx4.init('coqui_ai_tts')
engine.setProperty('speaker_wav', './someones_voice.wav')
engine.say('this is an english text to voice test.')
engine.runAndWait()
NOTE:
if save_to_file with BytesIO, there is no wav header in the BytesIO. the format of the bytes data is that 2-bytes = one sample.
if you want to add a header, the format of the data is: 1-channel. 2-bytes of sample width. 22050-framerate.
how to add a wav header in memory:https://github.com/Jiangshan00001/pyttsx4/issues/2
how to use:
install:
pip install pyttsx4
use:
import pyttsx4
engine = pyttsx4.init()
the other usage is the same as the pyttsx3
Full documentation of the Library
https://pyttsx3.readthedocs.io/en/latest/
Included TTS engines:
- sapi5
- nsss
- espeak
Feel free to wrap another text-to-speech engine for use with pyttsx3
.
Project Links :
- PyPI (https://pypi.python.org)
- GitHub (https://github.com/nateshmbhat/pyttsx3)
- Full Documentation (https://pyttsx3.readthedocs.org)
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 Distributions
Built Distribution
File details
Details for the file pyttsx4-3.0.11-py3-none-any.whl
.
File metadata
- Download URL: pyttsx4-3.0.11-py3-none-any.whl
- Upload date:
- Size: 28.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb19779a40f0e17d0c929c077dbc7ee84fc96a50b2eb6d0df9abaf688f0f27d8 |
|
MD5 | fea4223c35f2096626112f5fe0e328ca |
|
BLAKE2b-256 | 211199cb8caa74f59a34236a2900aed568aa0343407d35577831dbe17434f175 |