Spaces:
Sleeping
Sleeping
File size: 10,374 Bytes
f5ec497 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
#!/usr/bin/env python3
"""
Command-line interface for TTSFM.
This module provides a command-line interface for the TTSFM package,
allowing users to generate speech from text using various options.
"""
import argparse
import sys
import os
from typing import Optional
from pathlib import Path
from .client import TTSClient
from .models import Voice, AudioFormat
from .exceptions import TTSException, APIException, NetworkException
def create_parser() -> argparse.ArgumentParser:
"""Create and configure the argument parser."""
parser = argparse.ArgumentParser(
prog="ttsfm",
description="TTSFM - Text-to-Speech API Client",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Examples:
ttsfm "Hello, world!" --output hello.mp3
ttsfm "Hello, world!" --voice nova --format wav --output hello.wav
ttsfm "Hello, world!" --url http://localhost:7000 --output hello.mp3
ttsfm --text-file input.txt --output speech.mp3
"""
)
# Text input options (mutually exclusive)
text_group = parser.add_mutually_exclusive_group(required=True)
text_group.add_argument(
"text",
nargs="?",
help="Text to convert to speech"
)
text_group.add_argument(
"--text-file", "-f",
type=str,
help="Read text from file"
)
# Output options
parser.add_argument(
"--output", "-o",
type=str,
required=True,
help="Output file path"
)
# TTS options
parser.add_argument(
"--voice", "-v",
type=str,
default="alloy",
choices=["alloy", "echo", "fable", "onyx", "nova", "shimmer"],
help="Voice to use for speech generation (default: alloy)"
)
parser.add_argument(
"--format",
type=str,
default="mp3",
choices=["mp3", "opus", "aac", "flac", "wav", "pcm"],
help="Audio format (default: mp3)"
)
parser.add_argument(
"--speed",
type=float,
default=1.0,
help="Speech speed (0.25 to 4.0, default: 1.0)"
)
# Client options
parser.add_argument(
"--url", "-u",
type=str,
default="http://localhost:7000",
help="TTS service URL (default: http://localhost:7000)"
)
parser.add_argument(
"--api-key", "-k",
type=str,
help="API key for authentication"
)
parser.add_argument(
"--timeout",
type=float,
default=30.0,
help="Request timeout in seconds (default: 30.0)"
)
parser.add_argument(
"--retries",
type=int,
default=3,
help="Maximum number of retries (default: 3)"
)
# Text length validation options
parser.add_argument(
"--max-length",
type=int,
default=4096,
help="Maximum text length in characters (default: 4096)"
)
parser.add_argument(
"--no-length-validation",
action="store_true",
help="Disable text length validation"
)
parser.add_argument(
"--split-long-text",
action="store_true",
help="Automatically split long text into chunks"
)
# Other options
parser.add_argument(
"--verbose", "-V",
action="store_true",
help="Enable verbose output"
)
parser.add_argument(
"--version",
action="version",
version=f"%(prog)s {get_version()}"
)
return parser
def get_version() -> str:
"""Get the package version."""
try:
from . import __version__
return __version__
except ImportError:
return "unknown"
def read_text_file(file_path: str) -> str:
"""Read text from a file."""
try:
with open(file_path, 'r', encoding='utf-8') as f:
return f.read().strip()
except FileNotFoundError:
print(f"Error: File '{file_path}' not found.", file=sys.stderr)
sys.exit(1)
except Exception as e:
print(f"Error reading file '{file_path}': {e}", file=sys.stderr)
sys.exit(1)
def validate_speed(speed: float) -> float:
"""Validate and return the speed parameter."""
if not 0.25 <= speed <= 4.0:
print("Error: Speed must be between 0.25 and 4.0", file=sys.stderr)
sys.exit(1)
return speed
def get_voice_enum(voice_str: str) -> Voice:
"""Convert voice string to Voice enum."""
voice_map = {
"alloy": Voice.ALLOY,
"echo": Voice.ECHO,
"fable": Voice.FABLE,
"onyx": Voice.ONYX,
"nova": Voice.NOVA,
"shimmer": Voice.SHIMMER,
}
return voice_map[voice_str.lower()]
def get_format_enum(format_str: str) -> AudioFormat:
"""Convert format string to AudioFormat enum."""
format_map = {
"mp3": AudioFormat.MP3,
"opus": AudioFormat.OPUS,
"aac": AudioFormat.AAC,
"flac": AudioFormat.FLAC,
"wav": AudioFormat.WAV,
"pcm": AudioFormat.PCM,
}
return format_map[format_str.lower()]
def handle_long_text(args, text: str, voice: Voice, audio_format: AudioFormat, speed: float) -> None:
"""Handle long text by splitting it into chunks and generating multiple files."""
from .utils import split_text_by_length
import os
# Split text into chunks
chunks = split_text_by_length(text, args.max_length, preserve_words=True)
if not chunks:
print("Error: No valid text chunks found after processing.", file=sys.stderr)
sys.exit(1)
print(f"Split text into {len(chunks)} chunks")
# Create client
try:
client = TTSClient(
base_url=args.url,
api_key=args.api_key,
timeout=args.timeout,
max_retries=args.retries
)
# Generate speech for each chunk
base_name, ext = os.path.splitext(args.output)
for i, chunk in enumerate(chunks, 1):
if args.verbose:
print(f"Processing chunk {i}/{len(chunks)} ({len(chunk)} characters)...")
# Generate filename for this chunk
if len(chunks) == 1:
output_file = args.output
else:
output_file = f"{base_name}_part{i:03d}{ext}"
# Generate speech for this chunk
audio_data = client.generate_speech(
text=chunk,
voice=voice,
response_format=audio_format,
speed=speed,
max_length=args.max_length,
validate_length=False # We already split the text
)
# Save to file
with open(output_file, 'wb') as f:
f.write(audio_data)
print(f"Generated: {output_file}")
if len(chunks) > 1:
print(f"\nGenerated {len(chunks)} audio files from long text.")
print(f"Files: {base_name}_part001{ext} to {base_name}_part{len(chunks):03d}{ext}")
except Exception as e:
print(f"Error processing long text: {e}", file=sys.stderr)
if args.verbose:
import traceback
traceback.print_exc()
sys.exit(1)
def main() -> None:
"""Main CLI entry point."""
parser = create_parser()
args = parser.parse_args()
# Get text input
if args.text:
text = args.text
else:
text = read_text_file(args.text_file)
if not text:
print("Error: No text provided.", file=sys.stderr)
sys.exit(1)
# Validate parameters
speed = validate_speed(args.speed)
voice = get_voice_enum(args.voice)
audio_format = get_format_enum(args.format)
# Create output directory if needed
output_path = Path(args.output)
output_path.parent.mkdir(parents=True, exist_ok=True)
# Check text length and handle accordingly
text_length = len(text)
validate_length = not args.no_length_validation
if args.verbose:
print(f"Text: {text[:50]}{'...' if len(text) > 50 else ''}")
print(f"Text length: {text_length} characters")
print(f"Max length: {args.max_length}")
print(f"Length validation: {'enabled' if validate_length else 'disabled'}")
print(f"Voice: {args.voice}")
print(f"Format: {args.format}")
print(f"Speed: {speed}")
print(f"URL: {args.url}")
print(f"Output: {args.output}")
print()
# Handle long text
if text_length > args.max_length:
if args.split_long_text:
print(f"Text is {text_length} characters, splitting into chunks...")
return handle_long_text(args, text, voice, audio_format, speed)
elif validate_length:
print(f"Error: Text is too long ({text_length} characters). "
f"Maximum allowed is {args.max_length} characters.", file=sys.stderr)
print("Use --split-long-text to automatically split the text, "
"or --no-length-validation to disable this check.", file=sys.stderr)
sys.exit(1)
# Create client
try:
client = TTSClient(
base_url=args.url,
api_key=args.api_key,
timeout=args.timeout,
max_retries=args.retries
)
if args.verbose:
print("Generating speech...")
# Generate speech
audio_data = client.generate_speech(
text=text,
voice=voice,
response_format=audio_format,
speed=speed,
max_length=args.max_length,
validate_length=validate_length
)
# Save to file
with open(args.output, 'wb') as f:
f.write(audio_data)
print(f"Speech generated successfully: {args.output}")
except NetworkException as e:
print(f"Network error: {e}", file=sys.stderr)
sys.exit(1)
except APIException as e:
print(f"API error: {e}", file=sys.stderr)
sys.exit(1)
except TTSException as e:
print(f"TTS error: {e}", file=sys.stderr)
sys.exit(1)
except Exception as e:
print(f"Unexpected error: {e}", file=sys.stderr)
if args.verbose:
import traceback
traceback.print_exc()
sys.exit(1)
if __name__ == "__main__":
main()
|