Skip to main content

Convert text to speech using OpenAI's Text-to-Speech API

Project description

quick-tts

Convert text to speech using OpenAI's Text-to-Speech API. A simple, effective Python package that works as both a library and command-line tool.

Installation

pip install quick-tts

Usage

As a Library

from quick_tts import text_to_speech

# Basic usage
text_to_speech("Hello, world!", "hello.mp3")

# With custom options
text_to_speech(
    text="Good morning!",
    output_file="morning.wav",
    model="tts-1-hd",
    voice="nova"
)

As a Command-Line Tool

# Basic usage
quick-tts "Hello, world!" -o hello.mp3

# Read from file
quick-tts -f input.txt -o output.mp3

# Custom voice and model
quick-tts "Welcome!" --voice nova --model tts-1-hd -o welcome.mp3

# See all options
quick-tts --help

Configuration

Option 1: .env File (Recommended)

Create a .env file in your project directory:

# .env
OPENAI_API_KEY=sk-your-api-key-here

The package automatically loads .env files - no additional setup required!

Option 2: Environment Variable

export OPENAI_API_KEY=sk-your-api-key-here

Option 3: Direct Parameter

text_to_speech("Hello!", "hello.mp3", api_key="sk-your-api-key")

API Reference

text_to_speech(text, output_file="speech.mp3", model="tts-1-hd", voice="alloy", api_key=None)

Convert text to speech using OpenAI's API.

Parameters:

  • text (str): The text to convert to speech
  • output_file (str|Path): Path to save the audio file (default: "speech.mp3")
  • model (str): OpenAI TTS model ("tts-1" or "tts-1-hd", default: "tts-1-hd")
  • voice (str): Voice to use ("alloy", "echo", "fable", "onyx", "nova", "shimmer", default: "alloy")
  • api_key (str, optional): OpenAI API key (uses OPENAI_API_KEY env var if not provided)

Returns:

  • str: Absolute path to the generated audio file

Supported Voices

  • alloy - Balanced, versatile voice
  • echo - Clear, professional tone
  • fable - Warm, storytelling quality
  • onyx - Deep, authoritative voice
  • nova - Bright, engaging tone
  • shimmer - Soft, pleasant voice

Models

  • tts-1 - Standard quality, faster generation
  • tts-1-hd - High definition quality, more detailed audio

Requirements

  • Python 3.8+
  • OpenAI API key
  • openai>=1.86.0
  • python-dotenv>=1.1.0

License

MIT License - see LICENSE file for details.

Contributing

Issues and pull requests welcome at GitHub.

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

quick_tts-0.1.2.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

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

quick_tts-0.1.2-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file quick_tts-0.1.2.tar.gz.

File metadata

  • Download URL: quick_tts-0.1.2.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for quick_tts-0.1.2.tar.gz
Algorithm Hash digest
SHA256 961898ee27bf6144fe4b064bbad8efcdd66a82e8aed6fb45da2a2b4ffd0ee99e
MD5 9a1fe0afa7b6d546999264ed3d95b250
BLAKE2b-256 571350b89af75fb7138cbd06ba86dcb3fa5c269f224584c0dec76d48c330083f

See more details on using hashes here.

File details

Details for the file quick_tts-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: quick_tts-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for quick_tts-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b0556c907b7685d2365a51b9dc6e3c905b0e105c015d66506f4f0b54003d5301
MD5 8a2d570c38805d514deda9e520ee2acf
BLAKE2b-256 fc326b87095cf580b4e0dc3e10f5b6faf7101220d3bfa8ac248377878593fdea

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