Spaces:
Sleeping
Sleeping
File size: 8,234 Bytes
d07649b fb0aff8 d07649b 88eff10 d07649b fb0aff8 081af21 d07649b fb0aff8 88eff10 081af21 fb0aff8 6eac9cc 081af21 d07649b 6eac9cc 88eff10 6eac9cc fb0aff8 88eff10 6eac9cc fb0aff8 88eff10 fb0aff8 6eac9cc fb0aff8 ed2234c 081af21 d07649b | 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 | import argparse
import asyncio
import wave
from pathlib import Path
from typing import Any
from urllib.request import urlopen
import edge_tts
import numpy as np
from kokoro_onnx import Kokoro
from supertonic import TTS
DEFAULT_TEXT = "Hello. This is the default sample used to validate edge-tts output."
DEFAULT_VOICE = "en-US-AriaNeural"
DEFAULT_KOKORO_VOICE = "af_heart"
DEFAULT_KOKORO_LANG = "en-us"
KOKORO_MODEL_URL = "https://github.com/thewh1teagle/kokoro-onnx/releases/download/model-files-v1.0/kokoro-v1.0.onnx"
KOKORO_VOICES_URL = "https://github.com/thewh1teagle/kokoro-onnx/releases/download/model-files-v1.0/voices-v1.0.bin"
KOKORO_MODELS_DIR = Path(__file__).resolve().parent / "models" / "kokoro"
KOKORO_MODEL_FILE = KOKORO_MODELS_DIR / "kokoro-v1.0.onnx"
KOKORO_VOICES_FILE = KOKORO_MODELS_DIR / "voices-v1.0.bin"
KOKORO_VOICE_NAMES = [
"af_alloy", "af_aoede", "af_bella", "af_heart", "af_jessica", "af_kore", "af_nicole", "af_nova", "af_river",
"af_sarah", "af_sky", "am_adam", "am_echo", "am_eric", "am_fenrir", "am_liam", "am_michael", "am_onyx",
"am_puck", "am_santa", "bf_alice", "bf_emma", "bf_isabella", "bf_lily", "bm_daniel", "bm_fable", "bm_george",
"bm_lewis", "ef_dora", "em_alex", "em_santa", "ff_siwis", "hf_alpha", "hf_beta", "hm_omega", "hm_psi",
"if_sara", "im_nicola", "jf_alpha", "jf_gongitsune", "jf_nezumi", "jf_tebukuro", "jm_kumo", "pf_dora",
"pm_alex", "pm_santa", "zf_xiaobei", "zf_xiaoni", "zf_xiaoxiao", "zf_xiaoyi", "zm_yunjian", "zm_yunxi",
"zm_yunxia", "zm_yunyang",
]
SUPERTONIC_VOICE_NAMES = [
"F1", "F2", "F3", "F4", "F5",
"M1", "M2", "M3", "M4", "M5",
]
_KOKORO_ENGINES: dict[str, Kokoro] = {}
_SUPERTONIC_ENGINE: TTS | None = None
def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser(description="Edge TTS test utility.")
parser.add_argument("--text", help="Text content to synthesize.")
parser.add_argument("--file", type=Path, help="Load synthesis text from a file.")
parser.add_argument("--voice", default=DEFAULT_VOICE, help="Edge TTS voice name.")
parser.add_argument("--rate", default="+0%", help="Speech rate, for example: +10%%")
parser.add_argument("--volume", default="+0%", help="Speech volume, for example: +0%%")
parser.add_argument("--pitch", default="+0Hz", help="Speech pitch, for example: +0Hz")
parser.add_argument("--output", type=Path, default=Path("output.mp3"), help="Output audio file path.")
parser.add_argument("--list-voices", action="store_true", help="List available voices.")
parser.add_argument("--filter", help="Filter voices by keyword, for example: en-US")
return parser.parse_args()
def load_text(args: argparse.Namespace) -> str:
if args.text:
return args.text.strip()
if args.file:
return args.file.read_text(encoding="utf-8").strip()
return DEFAULT_TEXT
async def get_voices(keyword: str | None = None) -> list[dict[str, Any]]:
voices = await edge_tts.list_voices()
if keyword:
keyword = keyword.lower()
voices = [
voice
for voice in voices
if keyword in voice["ShortName"].lower() or keyword in voice["Locale"].lower()
]
return voices
def _kokoro_group_from_voice(voice_name: str) -> str:
normalized = (voice_name or DEFAULT_KOKORO_VOICE).strip().lower()
return normalized.split("_", 1)[0] if "_" in normalized else "af"
def _download_file(url: str, destination: Path) -> None:
destination.parent.mkdir(parents=True, exist_ok=True)
if destination.is_file():
return
with urlopen(url, timeout=90) as response:
destination.write_bytes(response.read())
def _ensure_kokoro_engine(voice_name: str = DEFAULT_KOKORO_VOICE) -> Kokoro:
group = _kokoro_group_from_voice(voice_name)
cached = _KOKORO_ENGINES.get(group)
if cached is not None:
return cached
_download_file(KOKORO_MODEL_URL, KOKORO_MODEL_FILE)
_download_file(KOKORO_VOICES_URL, KOKORO_VOICES_FILE)
engine = Kokoro(model_path=str(KOKORO_MODEL_FILE), voices_path=str(KOKORO_VOICES_FILE))
_KOKORO_ENGINES[group] = engine
return engine
def get_kokoro_voices(keyword: str | None = None) -> list[dict[str, Any]]:
names = KOKORO_VOICE_NAMES
voices = [
{
"ShortName": name,
"Locale": "multi",
"Gender": "Unknown",
"FriendlyName": f"Kokoro {name}",
}
for name in names
]
if not keyword:
return voices
needle = keyword.lower()
return [v for v in voices if needle in v["ShortName"].lower()]
def _write_float_audio_to_wav(output: Path, samples: np.ndarray, sample_rate: int) -> None:
pcm = np.clip(samples, -1.0, 1.0)
pcm_int16 = (pcm * 32767.0).astype(np.int16)
with wave.open(str(output), "wb") as wav_file:
wav_file.setnchannels(1)
wav_file.setsampwidth(2)
wav_file.setframerate(sample_rate)
wav_file.writeframes(pcm_int16.tobytes())
async def synthesize_kokoro_to_file(
*,
text: str,
output: Path,
voice: str = DEFAULT_KOKORO_VOICE,
speed: float = 1.0,
lang: str = DEFAULT_KOKORO_LANG,
) -> Path:
if not text:
raise ValueError("Input text cannot be empty.")
output.parent.mkdir(parents=True, exist_ok=True)
engine = _ensure_kokoro_engine(voice)
audio, sample_rate = engine.create(text=text, voice=voice, speed=speed, lang=lang)
_write_float_audio_to_wav(output=output, samples=audio, sample_rate=sample_rate)
return output.resolve()
def prewarm_kokoro() -> None:
_ensure_kokoro_engine(DEFAULT_KOKORO_VOICE)
def _ensure_supertonic_engine() -> TTS:
global _SUPERTONIC_ENGINE
if _SUPERTONIC_ENGINE is None:
_SUPERTONIC_ENGINE = TTS(auto_download=True)
return _SUPERTONIC_ENGINE
def get_supertonic_voices(keyword: str | None = None) -> list[dict[str, Any]]:
names = SUPERTONIC_VOICE_NAMES
voices = [
{
"ShortName": name,
"Locale": "en",
"Gender": "Female" if name.startswith("F") else "Male",
"FriendlyName": f"Supertonic {name}",
}
for name in names
]
if not keyword:
return voices
needle = keyword.lower()
return [v for v in voices if needle in v["ShortName"].lower()]
async def synthesize_supertonic_to_file(
*,
text: str,
output: Path,
voice: str = "M1",
lang: str = "en",
) -> Path:
if not text:
raise ValueError("Input text cannot be empty.")
output.parent.mkdir(parents=True, exist_ok=True)
engine = _ensure_supertonic_engine()
style = engine.get_voice_style(voice_name=voice)
wav, duration = engine.synthesize(text, voice_style=style, lang=lang)
engine.save_audio(wav, str(output))
return output.resolve()
async def list_voices(keyword: str | None) -> None:
voices = await get_voices(keyword)
if not voices:
print("No matching voice was found.")
return
for voice in voices:
print(f'{voice["ShortName"]} | {voice["Locale"]} | {voice["Gender"]}')
async def synthesize_to_file(
*,
text: str,
output: Path,
voice: str = DEFAULT_VOICE,
rate: str = "+0%",
volume: str = "+0%",
pitch: str = "+0Hz",
) -> Path:
if not text:
raise ValueError("Input text cannot be empty.")
output.parent.mkdir(parents=True, exist_ok=True)
communicate = edge_tts.Communicate(
text=text,
voice=voice,
rate=rate,
volume=volume,
pitch=pitch,
)
await communicate.save(str(output))
return output.resolve()
async def generate_tts(args: argparse.Namespace) -> None:
output_path = await synthesize_to_file(
text=load_text(args),
output=args.output,
voice=args.voice,
rate=args.rate,
volume=args.volume,
pitch=args.pitch,
)
print(f"Audio file generated: {output_path}")
print(f"Voice: {args.voice}")
async def async_main() -> None:
args = parse_args()
if args.list_voices:
await list_voices(args.filter)
return
await generate_tts(args)
if __name__ == "__main__":
asyncio.run(async_main())
|