Skip to main content

Package for realistic voice synthesis

Project description

voicesynth

Voice Synthesizing Library

[!NOTE] The project uses Silero TTS

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, show_available_models

show_available_models() # Showcase of all tts models available

# initializing the model
# setting show_download to False does not show model downloading progress
model = Model("v3_en", model_path="model.pt", show_download=False)  
model.set_speaker("en_73")

# creating a synthesizer instance
synthesizer = Synthesizer(model)
synthesizer.say("This is a good way to spend my day!")

Instead of using .say() method, you can synthesize an audio and then play it whenever you want

import time

synthesizer.synthesize("Whats'up!", path="audio.wav")
time.sleep(3)
synthesizer.audio.play_playsound("audio.wav")

There are multiple ways to play a synthesized audio:

model = Model("v4_ru", "model_ru.pt")
synthesizer = Synthesizer(model)

synthesizer.say("Как дела?", module="pygame") # Using pygame.mixer to play the audio
synthesizer.say("Хорошо, а твои как?", module="pydub") # Using pydub to play the audio

There are three ways to play the audio:

synthesizer.audio.play_playsound("audio.wav")
synthesizer.audio.play_pygame("audio.wav")
synthesizer.audio.play_pydub("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 disable it

from voicesynth import disable_logging

disable_logging()

Project details


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.2.2.post2.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

voicesynth-0.2.2.post2-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file voicesynth-0.2.2.post2.tar.gz.

File metadata

  • Download URL: voicesynth-0.2.2.post2.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.6

File hashes

Hashes for voicesynth-0.2.2.post2.tar.gz
Algorithm Hash digest
SHA256 1f37affce1456c35c7326d7df2d714f16a65d075470c325fb7b59037e8f2aa4a
MD5 959f0ab6627af356d48aec3cee36f36d
BLAKE2b-256 e6629293c8164a861ada16b623b33479ee043450b7bd86fbc918af85cdad612b

See more details on using hashes here.

File details

Details for the file voicesynth-0.2.2.post2-py3-none-any.whl.

File metadata

File hashes

Hashes for voicesynth-0.2.2.post2-py3-none-any.whl
Algorithm Hash digest
SHA256 6d619448a2e3378a798a91edd6fbd89112c854d453d9081f2060bd79ab8d3dbb
MD5 8c877f9312f22db17369677390c5a6fa
BLAKE2b-256 f23ff97322049f4d124c84722cf5e1b28dafeded1ab4a4b6fe9765cc0f61c9a4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page