Skip to main content

High-level interface for RHVoice library

Project description

High-level interface for RHVoice library

API PyPI version Python versions PyPI - Format Build Status Build status

Generate speech stream from text without re-initializing engine. This very fast and more convenient than call RHVoice-test.

Supported audio formats: wav, mp3, opus, flac and pcm (raw RHVoice output).

Install

pip3 install rhvoice-wrapper

This package NOT provide RHvoice. You must be build (or install) RHVoice, languages and voices manually. In Windows you must specify the paths for work.

rhvoice-wrapper-bin

Warning! rhvoice-wrapper-bin not working in macOS, install RHVoice manually.

Instead of RHVoice you may install rhvoice-wrapper-bin. This is best way for Windows. If the rhvoice-wrapper-bin is installed, its libraries and data will be used automatically.

pip3 install rhvoice-wrapper-bin

Documentation

First create TTS object:

from rhvoice_wrapper import TTS

tts = TTS(threads=1)

You may set options when creating or through variable environments (UPPER REGISTER). Options override variable environments. To set the default value use None:

  • threads or THREADED. If equal to 1, created one thread object, if more running in multiprocessing mode and create a lot of processes. Default 1.
  • force_process or PROCESSES_MODE: If True engines run in multiprocessing mode, if False in threads mode. Default False if threads == 1, else True. Threads mode and threads > 1 causes a segmentation faults or may return corrupted data
  • lib_path or RHVOICELIBPATH: Path to RHVoice library. Default libRHVoice.so in Linux, libRHVoice.dylib in macOS and RHVoice.dll in Windows.
  • data_path or RHVOICEDATAPATH: Path to folder, containing voices and languages folders. Default /usr/local/share/RHVoice.
  • resources or RHVOICERESOURCES: A list of paths to language and voice data. It should be used when it is not possible to collect all the data in one place. Default [].
  • lame_path or LAMEPATH: Path to lame, optional. Lame must be present for mp3 support. Default lame.
  • opus_path or OPUSENCPATH: Path to opusenc, optional. File must be present for opus support. Default opusenc.
  • flac_path or FLACPATH: Path to flac, optional. File must be present for flac support. Default flac.
  • quiet or QUIET: If True don't info output. Default False.

Usage

Start synthesis generator and get audio data, chunk by chunk:

def generator_audio(text, voice='anna', format_='wav', buff=4096, sets=None):
    with tts.say(text, voice, format_, buff, sets) as gen:
        for chunk in gen:
            yield chunk

Or just save to file:

tts.to_file(filename='esperanto.ogg', text='Saluton mondo', voice='spomenka', format_='opus', sets=None)

sets may set as dict containing synthesis parameters as in set_params. This parameters only work for current phrase. Default None.

If buff equal None or 0, for pcm and wav chunks return as is (probably little faster). For others used default chunk size (4 KiB).

Text as iterable object

If text iterable object, all its fragments will processing successively. This is a good method for processing incredibly large texts. Remember, the generator cannot be transferred to another process. Example:

def _text():
    with open('wery_large_book.txt') as fp:
        text = fp.read(5000)
        while text:
            yield text
            text = fp.read(5000)

def generator_audio():
    with tts.say(_text()) as gen:
        for chunk in gen:
            yield chunk

Other methods

set_params

Changes voice synthesizer settings:

tts.set_params(**kwargs)

Allow: absolute_rate, relative_rate, absolute_pitch, relative_pitch, absolute_volume, relative_volume, punctuation_mode, capitals_mode. See RHVoice documentation for details.

Return True if change, else False.

get_params

Get voice synthesizer settings:

tts.get_params(param=None)

If param is None return all settings in dict, else parameter value by name as numeric. If parameter not found return None.

join

Join thread or processes. Don't use object after join:

tts.join()

Properties

  • TTS.formats: List of supported formats, pcm and wav always present.
  • TTS.thread_count: Number of synthesis threads.
  • TTS.process: If True, TTS running in multiprocessing mode.
  • TTS.voices: List of supported voices.
  • TTS.voices_info: Dictionary of supported voices with voices information.
  • TTS.api_version: Supported RHVoice library version. If different from lib_version, may incorrect work.
  • TTS.lib_version: RHVoice library version.
  • TTS.cmd: Dictionary of external calls, as it is.

Examples

Requirements

  • OS: Linux, Windows, macOS
  • RHvoice library, languages and voices
  • Python 3.4 +

Links

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

rhvoice-wrapper-0.5.2.tar.gz (24.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rhvoice_wrapper-0.5.2-py3-none-any.whl (24.9 kB view details)

Uploaded Python 3

File details

Details for the file rhvoice-wrapper-0.5.2.tar.gz.

File metadata

  • Download URL: rhvoice-wrapper-0.5.2.tar.gz
  • Upload date:
  • Size: 24.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.7

File hashes

Hashes for rhvoice-wrapper-0.5.2.tar.gz
Algorithm Hash digest
SHA256 20020a59b121c472ffef307f58554f79585985b4ffaaf97553e3711421e70b3b
MD5 eb66572531025ab6e9712ab3089ab878
BLAKE2b-256 eb7678af540380528ade00a6309f97eb573baf1386aa91138318cd9e79af7af2

See more details on using hashes here.

File details

Details for the file rhvoice_wrapper-0.5.2-py3-none-any.whl.

File metadata

  • Download URL: rhvoice_wrapper-0.5.2-py3-none-any.whl
  • Upload date:
  • Size: 24.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.7

File hashes

Hashes for rhvoice_wrapper-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 50b1f1a0248e978b88c5bb13b587ec40cf2fcebe38fbed6971e81221c4892bf4
MD5 28cf8453cdd44b4423d6f208269f96a4
BLAKE2b-256 bcaf09f824ec421461484c492e73854358ff57f77e31c692fb7637ffe6604fb4

See more details on using hashes here.

Supported by

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