Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aristech-tts-client

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aristech-tts-client

A Python client library for the Aristech Text-to-Speech API

  • 1.0.1
  • PyPI
  • Socket score

Maintainers
1

Aristech TTS-Client for Python

This is the Python client implementation for the Aristech TTS-Server.

Installation

pip install aristech-tts-client

Usage

from aristech_tts_client import TtsClient, SpeechRequest, SpeechRequestOption

client = TtsClient(host='tts.example.com')
data = client.synthesize(SpeechRequest(
    text='Hello, world!',
    options=SpeechRequestOption(
      voice_id='some-voice-id'
    )
))
with open('output.wav', 'wb') as f:
    f.write(data)

There are several examples in the examples directory:

  • file.py: Pretty much the same as the example above.
  • streaming.py: Demonstrates how to stream audio to a sox process which plays the audio as it is being streamed.
  • voices.py: Demonstrates how to get the available voices from the server.
  • phoneset.py: Demonstrates how to get the phoneset for a voice.
  • transcribe.py: Demonstrates how to get how a voice would pronounce a given word.

You can run the examples directly using python like this:

  1. Create a .env file in the python directory:
HOST=tts.example.com
# The credentials are optional but probably required for most servers:
TOKEN=your-token
SECRET=your-secret

# The following are optional:
# ROOT_CERT=your-root-cert.pem # If the server uses a self-signed certificate
# VOICE_ID=some-available-voice-id
  1. Run the examples, e.g.:
python examples/streaming.py

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc