No description
Find a file
2025-11-27 01:28:51 +01:00
.github macos new objc test 2023-06-26 22:50:48 +08:00
docs add voice cloning test 2023-06-17 12:53:11 +08:00
example Add pitch support to eSpeak-ng (#173) 2021-01-17 23:15:17 +05:30
pyttsx5 Primer commit desde el fork 2025-11-27 01:28:51 +01:00
.gitignore test macos using github actions 2023-05-11 22:59:52 +08:00
LICENSE Create LICENSE 2021-06-25 16:24:14 +05:30
makefile modified makefile and setup.py 2020-03-14 06:19:23 +05:30
MANIFEST setup.py and MANIFEST changed 2017-06-25 02:14:15 +05:30
pyttsx5_say_test.py Primer commit desde el fork 2025-11-27 01:28:51 +01:00
pyttsx5_test.py Primer commit desde el fork 2025-11-27 01:28:51 +01:00
README.md Primer commit desde el fork 2025-11-27 01:28:51 +01:00
requirements.txt fix test file 2023-06-15 00:29:32 +08:00
setup.cfg Added some files 2017-06-24 23:22:57 +05:30
setup.py fix espeak & nsss engine error 2023-06-23 23:14:52 +08:00

the code is mostly from pyttsx3/pyttsx4.

pyttsx5 is made for the unique purpose of using SAPI5 in a less painful way for loquendo_unix

feature:

supported engines:

1 nsss
2 sapi5
3 espeak
4 coqui_ai_tts

basic features:

1 say

engine = pyttsx5.init()
engine.say('this is an english text to voice test.')
engine.runAndWait()

2 save to file

import pyttsx5

engine = pyttsx5.init()
engine.save_to_file('i am Hello World, i am a programmer. i think life is short.', 'test1.wav')
engine.runAndWait()

extra features:

1 memory support for sapi5, nsss, espeak. NOTE: the memory is just raw adc data, wav header has to be added if you want to save to wav file.

import pyttsx5
from io import BytesIO
from pydub import AudioSegment
from pydub.playback import play
import os
import sys

engine = pyttsx5.init()
b = BytesIO()
engine.save_to_file('i am Hello World', b)
engine.runAndWait()
#the bs is raw data of the audio.
bs=b.getvalue()
# add an wav file format header
b=bytes(b'RIFF')+ (len(bs)+38).to_bytes(4, byteorder='little')+b'WAVEfmt\x20\x12\x00\x00' \
                                                               b'\x00\x01\x00\x01\x00' \
                                                               b'\x22\x56\x00\x00\x44\xac\x00\x00' +\
    b'\x02\x00\x10\x00\x00\x00data' +(len(bs)).to_bytes(4, byteorder='little')+bs
# changed to BytesIO
b=BytesIO(b)
audio = AudioSegment.from_file(b, format="wav")
play(audio)

sys.exit(0)

2 cloning voice

# only coqui_ai_tts engine support cloning voice.
engine = pyttsx5.init('coqui_ai_tts')
engine.setProperty('speaker_wav', './docs/i_have_a_dream_10s.wav')

engine.say('this is an english text to voice test, listen it carefully and tell who i am.')
engine.runAndWait()


voice clone test1:

speaker_wav_test_1 the output1

voice clone test2:

speaker_wav_test_2 the output2


the changelog:

  1. add memory support for sapi5
  2. add memory support for espeak(espeak is not tested). eg:
b = BytesIO()
engine.save_to_file('i am Hello World', b)
engine.runAndWait()
  1. fix VoiceAge key error

  2. fix for sapi save_to_file when it run on machine without outputsream device.

  3. fix save_to_file does not work on mac os ventura error. --3.0.6

  4. add pitch support for sapi5(not tested yet). --3.0.8

  5. fix nsss engine: Import super from objc to fix AttributeError by @matt-oakes.

  6. add tts support: deep-learning text to voice backend:

just say:

engine = pyttsx5.init('coqui_ai_tts')
engine.say('this is an english text to voice test.')
engine.runAndWait()

cloning someones voice:

engine = pyttsx5.init('coqui_ai_tts')
engine.setProperty('speaker_wav', './someones_voice.wav')

engine.say('this is an english text to voice test.')
engine.runAndWait()

demo output:

test2

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/pyttsx5/issues/2

how to use:

install:

pip install pyttsx5

use:

import pyttsx5
engine = pyttsx5.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 pyttsx5.