This major update brings comprehensive multilingual support to Orpheus-FASTAPI: • Added 16 new voice actors across 7 languages (French, German, Korean, Hindi, Mandarin, Spanish, Italian) • Released 6 language-specific optimized models for superior pronunciation and fluency • Enhanced UI with dynamic language selector and voice filtering • Updated Docker Compose workflow to simplify language-specific model deployment • Reorganized code architecture with language-aware voice mappings All voices support the same emotion tags and audio quality features as the original English voices, maintaining compatibility with existing applications while expanding international usability.
17 lines
442 B
Python
17 lines
442 B
Python
"""
|
|
TTS Engine package for Orpheus text-to-speech system.
|
|
|
|
This package contains the core components for audio generation:
|
|
- inference.py: Token generation and API handling
|
|
- speechpipe.py: Audio conversion pipeline
|
|
"""
|
|
|
|
# Make key components available at package level
|
|
from .inference import (
|
|
generate_speech_from_api,
|
|
AVAILABLE_VOICES,
|
|
DEFAULT_VOICE,
|
|
VOICE_TO_LANGUAGE,
|
|
AVAILABLE_LANGUAGES,
|
|
list_available_voices
|
|
)
|