Package for realistic voice synthesis
Project description
README for voicesynth
Voice Synthesizing Library
How to use:
First, install the package
pip install voicesynth
Then import it into your code and go ahead and use it:
from voicesynth import Model, Synthesizer, available_models
available_models() # Showcase of all tts models available
# initializing the model
model = Model("v4_ru")
model.set_speaker("eugene")
# creating a synthesizer instance
synthesizer = Synthesizer(model)
synthesizer.say("Я представить себе не могу, что это действительно случилось!")
Instead of using .say() method, you can synthesize an audio and then play it whenever you want
import time
synthesizer.synthesize("Всем привет!", path="audio.wav")
time.sleep(3)
synthesizer.play("audio.wav")
All models support simple ssml tags:
synthesizer.say("В н+едрах т+ундры в+ыдры п+ели п+есни", prosody_rate=90)
# I added prosody as a parameter, so that people who are not familiar with ssml tags
# could change speaking speed without knowing how to manually do it
By default, logging is enabled. If it bothers you, you can set logging to False.
import voicesynth
voicesynth.log_enable = False
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
voicesynth-0.0.2.tar.gz
(4.6 kB
view details)
File details
Details for the file voicesynth-0.0.2.tar.gz
.
File metadata
- Download URL: voicesynth-0.0.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e492c50fd6fe669fcabae5b02bc89c0f7bb52cbe7f64504441a3fcfed418519 |
|
MD5 | 01a4dbd10f26ca0a0706fc241eca61f7 |
|
BLAKE2b-256 | 1aed3b2268d88e75b30170dc874b7decf0964a81722f0d907d01e7f5c124f179 |