File size: 11,716 Bytes
66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 66b1d91 837f7c4 |
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 |
from fastapi import FastAPI, HTTPException, Form, BackgroundTasks
from fastapi.responses import FileResponse
import gradio as gr
from kokoro_onnx import Kokoro
import tempfile
import os
import bcrypt
from datetime import datetime, timedelta
from supabase import create_client, Client
import soundfile as sf
# ============== CONFIG ==============
SUPABASE_URL = os.getenv("SUPABASE_URL")
SUPABASE_KEY = os.getenv("SUPABASE_KEY")
if not SUPABASE_URL or not SUPABASE_KEY:
raise ValueError("SUPABASE_URL and SUPABASE_KEY environment variables must be set")
DAILY_QUOTA = 50 # Increased since Kokoro is much faster
MAX_CHARS = 4500 # ~5 minutes of audio (speaking rate: ~900 chars/min)
MIN_CHARS = 5
MAX_AUDIO_DURATION = 300 # 5 minutes of audio
# Admin credentials
ADMIN_USERNAME = "madhab"
ADMIN_PASSWORD = "Madhab@Studify2024!"
# ============== SUPABASE ==============
supabase: Client = create_client(SUPABASE_URL, SUPABASE_KEY)
def init_admin():
"""Create admin user if not exists"""
try:
result = supabase.table("tts_users").select("username").eq("username", ADMIN_USERNAME).execute()
if not result.data:
password_hash = bcrypt.hashpw(ADMIN_PASSWORD.encode(), bcrypt.gensalt()).decode()
supabase.table("tts_users").insert({
"username": ADMIN_USERNAME,
"password_hash": password_hash,
"role": "admin",
"daily_limit": -1,
"is_active": True
}).execute()
print(f"β
Admin user created: {ADMIN_USERNAME}")
else:
print(f"β
Admin user exists: {ADMIN_USERNAME}")
except Exception as e:
print(f"β οΈ Error creating admin: {e}")
# ============== KOKORO TTS MODEL ==============
print("π€ Loading Kokoro TTS model...")
try:
kokoro = Kokoro("kokoro-v0_19.onnx", "voices")
print("β
Kokoro TTS loaded successfully!")
except Exception as e:
print(f"β οΈ Kokoro not found locally. Will download on first use.")
kokoro = None
app = FastAPI(title="Kokoro TTS API - Professional & Fast")
@app.on_event("startup")
def startup():
global kokoro
if kokoro is None:
print("π₯ Downloading Kokoro TTS model...")
kokoro = Kokoro("kokoro-v0_19.onnx", "voices")
print("β
Kokoro TTS loaded!")
init_admin()
# ============== AUTH ==============
def verify_password(plain_password: str, hashed_password: str) -> bool:
try:
return bcrypt.checkpw(plain_password.encode(), hashed_password.encode())
except:
return False
def authenticate_user(username: str, password: str) -> dict:
result = supabase.table("tts_users").select("*").eq("username", username).execute()
if not result.data or len(result.data) == 0:
raise HTTPException(status_code=401, detail="Access denied. User not found in database.")
user = result.data[0]
if not user.get('is_active', True):
raise HTTPException(status_code=403, detail="Account is disabled. Contact admin.")
if not verify_password(password, user['password_hash']):
raise HTTPException(status_code=401, detail="Invalid credentials.")
return user
def check_quota(username: str, daily_limit: int, role: str) -> dict:
if role == 'admin' or daily_limit == -1:
return {"used": 0, "remaining": -1, "is_unlimited": True}
since = (datetime.utcnow() - timedelta(hours=24)).isoformat()
result = supabase.table("tts_usage_logs").select("id", count="exact").eq("username", username).gte("created_at", since).execute()
used = result.count or 0
remaining = daily_limit - used
if remaining <= 0:
raise HTTPException(status_code=429, detail=f"Daily quota exceeded. Used {used}/{daily_limit}. Resets in 24h.")
return {"used": used, "remaining": remaining, "is_unlimited": False}
def log_usage(username: str, text_length: int, language: str):
supabase.table("tts_usage_logs").insert({
"username": username,
"text_length": text_length,
"language": language,
"created_at": datetime.utcnow().isoformat()
}).execute()
# ============== HELPERS ==============
def cleanup_file(path: str):
try:
if os.path.exists(path):
os.unlink(path)
except:
pass
def generate_speech(text: str, voice: str = "af_heart", speed: float = 1.0) -> str:
"""
Generate speech using Kokoro TTS
Available voices: af (American Female), am (American Male), bf (British Female), etc.
"""
if len(text) < MIN_CHARS:
raise ValueError(f"Text too short. Minimum {MIN_CHARS} characters.")
if len(text) > MAX_CHARS:
raise ValueError(f"Text too long. Maximum {MAX_CHARS} characters.")
# Generate audio samples
samples, sample_rate = kokoro.create(
text=text,
voice=voice,
speed=speed,
lang="en-us" # Kokoro supports: en-us, en-gb, ja, etc.
)
# Save to temporary file
with tempfile.NamedTemporaryFile(suffix=".wav", delete=False) as tmp:
sf.write(tmp.name, samples, sample_rate)
return tmp.name
# ============== API ENDPOINTS ==============
@app.get("/health")
def health():
return {
"status": "healthy",
"model": "Kokoro TTS 82M",
"speed": "10x faster than XTTS",
"authentication": "required",
"default_quota": DAILY_QUOTA
}
@app.post("/api/generate")
async def generate_tts(
background_tasks: BackgroundTasks,
username: str = Form(...),
password: str = Form(...),
text: str = Form(...),
voice: str = Form("af_heart"), # American Female - Heart
speed: float = Form(1.0)
):
"""
Generate TTS with Kokoro (Fast & Emotional)
Performance:
- Max audio length: 5 minutes
- Speaking rate: ~900 chars/minute
- Max chars: 4500 (~5 min audio)
- Generation time: ~20-30 seconds on CPU
Available voices:
- af_heart: American Female (warm)
- af_bella: American Female (professional)
- am_adam: American Male (confident)
- am_michael: American Male (friendly)
- bf_emma: British Female (elegant)
- bf_isabella: British Female (storytelling) β
Usage:
curl -X POST https://your-service.hf.space/api/generate \
-F "username=madhab" \
-F "password=Madhab@Studify2024!" \
-F "text=Hello world. This is much faster!" \
-F "voice=bf_isabella" \
-F "speed=1.0" \
--output output.wav
"""
user = authenticate_user(username, password)
quota = check_quota(user['username'], user['daily_limit'], user['role'])
try:
output_path = generate_speech(text.strip(), voice, speed)
if not quota['is_unlimited']:
log_usage(user['username'], len(text), "en")
background_tasks.add_task(cleanup_file, output_path)
response = FileResponse(output_path, media_type="audio/wav", filename="kokoro_tts.wav")
response.headers["X-Quota-Used"] = str(quota["used"] + (0 if quota["is_unlimited"] else 1))
response.headers["X-Quota-Remaining"] = "unlimited" if quota["is_unlimited"] else str(quota["remaining"] - 1)
response.headers["X-Model"] = "Kokoro-82M"
return response
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
raise HTTPException(status_code=500, detail=f"TTS generation failed: {str(e)}")
@app.post("/api/quota")
async def check_user_quota(username: str = Form(...), password: str = Form(...)):
user = authenticate_user(username, password)
quota = check_quota(user['username'], user['daily_limit'], user['role'])
return {
"username": user['username'],
"role": user['role'],
"used_today": quota["used"],
"remaining": "unlimited" if quota["is_unlimited"] else quota["remaining"],
"daily_limit": "unlimited" if quota["is_unlimited"] else user['daily_limit']
}
@app.post("/api/admin/create-user")
async def create_user(
admin_username: str = Form(...),
admin_password: str = Form(...),
new_username: str = Form(...),
new_password: str = Form(...),
role: str = Form("user"),
daily_limit: int = Form(50)
):
admin = authenticate_user(admin_username, admin_password)
if admin['role'] != 'admin':
raise HTTPException(status_code=403, detail="Admin access required")
existing = supabase.table("tts_users").select("username").eq("username", new_username).execute()
if existing.data:
raise HTTPException(status_code=400, detail="Username already exists")
password_hash = bcrypt.hashpw(new_password.encode(), bcrypt.gensalt()).decode()
supabase.table("tts_users").insert({
"username": new_username,
"password_hash": password_hash,
"role": role,
"daily_limit": daily_limit,
"is_active": True
}).execute()
return {"success": True, "username": new_username, "role": role, "daily_limit": daily_limit}
@app.post("/api/admin/list-users")
async def list_users(admin_username: str = Form(...), admin_password: str = Form(...)):
admin = authenticate_user(admin_username, admin_password)
if admin['role'] != 'admin':
raise HTTPException(status_code=403, detail="Admin access required")
result = supabase.table("tts_users").select("username, role, daily_limit, is_active, created_at").execute()
return {"users": result.data}
# ============== GRADIO UI ==============
def generate_tts_gradio(username, password, text, voice="af_heart", speed=1.0):
if not username or not password:
raise gr.Error("Username and password required")
if not text or len(text.strip()) < MIN_CHARS:
raise gr.Error(f"Text must be at least {MIN_CHARS} characters")
try:
user = authenticate_user(username, password)
quota = check_quota(user['username'], user['daily_limit'], user['role'])
output_path = generate_speech(text.strip(), voice, speed)
if not quota['is_unlimited']:
log_usage(user['username'], len(text), "en")
return output_path
except HTTPException as e:
raise gr.Error(e.detail)
except Exception as e:
raise gr.Error(str(e))
gradio_app = gr.Interface(
fn=generate_tts_gradio,
inputs=[
gr.Textbox(label="Username", placeholder="Enter your username"),
gr.Textbox(label="Password", type="password", placeholder="Enter your password"),
gr.Textbox(label="Text", placeholder=f"Enter text ({MIN_CHARS}-{MAX_CHARS} chars)", lines=8),
gr.Dropdown(
choices=["af_heart", "af_bella", "am_adam", "am_michael", "bf_emma", "bf_isabella"],
value="af_heart",
label="Voice (Emotional & Expressive)"
),
gr.Slider(0.5, 2.0, value=1.0, step=0.1, label="Speed")
],
outputs=gr.Audio(label="Generated Speech (Kokoro TTS)", type="filepath"),
title="π Kokoro TTS - Professional & Lightning Fast",
description=f"""
**High-Speed Text-to-Speech with Emotional Expression**
- β‘ Lightning fast generation (~20-30 sec)
- π Emotional & expressive voices
- π Secure authentication required
- π Quota: {DAILY_QUOTA} generations/day
- π΅ Max audio: 5 minutes (4500 chars)
- πΎ Runs smoothly on CPU
Perfect for audiobooks, educational content, and storytelling!
""",
)
app = gr.mount_gradio_app(app, gradio_app, path="/")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)
|