🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

polyglot-tts

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

polyglot-tts

A Python module for text translation and audio generation using OpenAI's API and ElevenLabs

0.1.0
PyPI
Maintainers
1

Polyglot TTS

A Python module for translating text using OpenAI's API with optional audio generation using ElevenLabs.

Features

  • Text translation to any language using OpenAI's GPT-3.5 model
  • Optional audio generation of translated text using ElevenLabs API
  • Simple, easy-to-use interface
  • Supports environment variable configuration

Installation

pip install polyglot-tts

Configuration

Create a .env file in your project root with your API keys:

OPENAI_API_KEY=your-openai-api-key-here
ELEVENLABS_API_KEY=your-elevenlabs-api-key-here  # Optional, for audio generation

Alternatively, set them as environment variables:

export OPENAI_API_KEY='your-openai-api-key-here'
export ELEVENLABS_API_KEY='your-elevenlabs-api-key-here'  # Optional

Usage

Basic Translation

from polyglot-tts import translate

# Basic translation
translated_text, _ = translate("Hello, how are you?", "Spanish", generate_audio=False)
print(translated_text)  # "¡Hola, cómo estás?"

# Translation with audio generation
translated_text, audio_path = translate("Hello, how are you?", "French")
print(translated_text)  # "Bonjour, comment allez-vous?"
print(audio_path)  # Path to the generated audio file

Function Parameters

  • message (str): The text to translate
  • output_lang (str): The target language for translation
  • generate_audio (bool, optional): Whether to generate audio for the translation. Defaults to True.
  • voice_id (str, optional): The ElevenLabs voice ID to use for audio generation. Defaults to "EXAVITQu4vr4xnSDxMaL" (Bella voice).
  • save_audio (bool, optional): Whether to save the generated audio file. Defaults to False. If True, the audio file will be saved in the "output" directory in the current working directory.

Return Value

Returns a tuple containing:

  • The translated text (str)
  • The path to the generated audio file (str or None if audio generation is disabled or fails)

Requirements

  • Python 3.7+
  • OpenAI API key (required)
  • ElevenLabs API key (optional, for audio generation)

Error Handling

The module will raise:

  • ValueError if required API keys are not set
  • Exception if translation or audio generation fails

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License

Keywords

translation

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