File size: 15,865 Bytes
854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 854c400 ce47ec4 | 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 | import os, sys, time, json, uuid, shutil, threading, subprocess
import nest_asyncio
import uvicorn
from fastapi import FastAPI, Form, File, UploadFile, HTTPException
from fastapi.responses import HTMLResponse, FileResponse, JSONResponse
from fastapi.middleware.cors import CORSMiddleware
from huggingface_hub import HfApi, snapshot_download
# โโ ุงูุจูุฆุฉ ูุงูุชูููู โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
os.environ["COQUI_TOS_AGREED"] = "1"
DATA_DIR = "data"
VOICE_LIB = os.path.join(DATA_DIR, "voice_library")
OUTPUT_DIR = os.path.join(DATA_DIR, "outputs")
HISTORY_FILE = os.path.join(DATA_DIR, "history.json")
for d in [DATA_DIR, VOICE_LIB, OUTPUT_DIR]:
os.makedirs(d, exist_ok=True)
HF_TOKEN = os.environ.get("HF_TOKEN")
HF_DATASET_REPO = os.environ.get("HF_DATASET_REPO")
def pull_data_from_hf():
"""ุชุญู
ูู ุงูุจูุงูุงุช ู
ู Dataset ุนูุฏ ุงูุชุดุบูู"""
if HF_TOKEN and HF_DATASET_REPO:
try:
print(f"[*] ุฌุงุฑู ุชุญู
ูู ุงูุจูุงูุงุช ู
ู: {HF_DATASET_REPO}...")
snapshot_download(
repo_id=HF_DATASET_REPO,
repo_type="dataset",
local_dir=DATA_DIR,
token=HF_TOKEN
)
print("[โ] ุชู
ุงูุชุญู
ูู ุจูุฌุงุญ.")
except Exception as e:
print(f"[!] ุชูุจูู: ูู
ูุชู
ู
ุฒุงู
ูุฉ ุงูุจูุงูุงุช (ูุฏ ุชููู ุงูู
ุณุงุญุฉ ุฌุฏูุฏุฉ): {e}")
def push_data_to_hf():
"""ุฑูุน ุงูุจูุงูุงุช ุฅูู Dataset ูู ุงูุฎูููุฉ"""
if HF_TOKEN and HF_DATASET_REPO:
try:
api = HfApi()
api.upload_folder(
folder_path=DATA_DIR,
repo_id=HF_DATASET_REPO,
repo_type="dataset",
token=HF_TOKEN,
commit_message=f"Auto-sync {time.strftime('%Y-%m-%d %H:%M:%S')}"
)
except Exception as e:
print(f"[!] ุฎุทุฃ ูู ุงูู
ุฒุงู
ูุฉ ุงูุฎูููุฉ: {e}")
def background_sync():
threading.Thread(target=push_data_to_hf, daemon=True).start()
# ุชูููุฐ ุงูุณุญุจ ุงูุฃููู
pull_data_from_hf()
# โโ ุฅุนุฏุงุฏ ู
ุญุฑู TTS โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
try:
from TTS.api import TTS
except ImportError:
subprocess.check_call([sys.executable, "-m", "pip", "install", "coqui-tts"])
from TTS.api import TTS
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
print(f"[*] ุฌุงุฑู ุชุญู
ูู ูู
ูุฐุฌ XTTS v2 ุนูู {device.upper()}...")
xtts_engine = TTS("tts_models/multilingual/multi-dataset/xtts_v2").to(device)
print("[โ] ุงููู
ูุฐุฌ ุฌุงูุฒ ููุงุณุชุฎุฏุงู
.")
# โโ ุงูู
ุณุงุนุฏูู โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def load_history():
if os.path.exists(HISTORY_FILE):
try:
with open(HISTORY_FILE, "r", encoding="utf-8") as f:
return json.load(f)
except: return []
return []
def save_history(h):
with open(HISTORY_FILE, "w", encoding="utf-8") as f:
json.dump(h, f, ensure_ascii=False, indent=2)
# โโ ุชุทุจูู FastAPI โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
app = FastAPI(title="XTTS Studio Pro")
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"])
LANGUAGES = {
"ar": "ุงูุนุฑุจูุฉ", "en": "English", "es": "Espaรฑol", "fr": "Franรงais",
"de": "Deutsch", "it": "Italiano", "pt": "Portuguรชs", "ru": "ะ ัััะบะธะน",
"zh-cn": "ไธญๆ", "ja": "ๆฅๆฌ่ช", "ko": "ํ๊ตญ์ด", "tr": "Tรผrkรงe"
}
# โโ ูุงุฌูุฉ ุงูู
ุณุชุฎุฏู
(React) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
HTML_TEMPLATE = r"""
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XTTS Voice Studio</title>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;600;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<style>
:root { --bg: #0b0c0f; --surface: #13151a; --border: #1f2330; --amber: #f5a623; --text: #e8eaf0; --muted: #6b7280; }
body { background: var(--bg); color: var(--text); font-family: 'IBM Plex Sans Arabic', sans-serif; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.btn-primary { background: var(--amber); color: #000; font-weight: 700; border-radius: 8px; transition: all 0.2s; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--border); color: var(--muted); border-radius: 6px; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--amber); color: var(--text); }
.tab-active { background: rgba(245,166,35,0.1); color: var(--amber); border: 1px solid var(--amber); }
audio { width: 100%; border-radius: 8px; filter: invert(90%) hue-rotate(180deg); }
</style>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
const { useState, useEffect } = React;
const device = "{DEVICE_NAME}";
function App() {
const [tab, setTab] = useState("generate");
const [text, setText] = useState("");
const [lang, setLang] = useState("ar");
const [file1, setFile1] = useState(null);
const [voices, setVoices] = useState([]);
const [selVoice, setSelVoice] = useState(null);
const [loading, setLoading] = useState(false);
const [audioUrl, setAudioUrl] = useState(null);
const [history, setHistory] = useState([]);
useEffect(() => {
refreshData();
}, []);
const refreshData = () => {
fetch("/voices").then(r => r.json()).then(setVoices);
fetch("/history").then(r => r.json()).then(setHistory);
};
const handleGenerate = async () => {
if (!text || (!file1 && !selVoice)) return alert("ูุฑุฌู ุฅุฏุฎุงู ุงููุต ูุงุฎุชูุงุฑ ุตูุช ู
ุฑุฌุนู");
setLoading(true);
const fd = new FormData();
fd.append("text", text);
fd.append("language", lang);
if (file1) fd.append("files", file1);
if (selVoice) fd.append("voice_name", selVoice);
try {
const res = await fetch("/generate", { method: "POST", body: fd });
const data = await res.json();
setAudioUrl(`/audio/${data.filename}`);
refreshData();
} catch (e) { alert("ุญุฏุซ ุฎุทุฃ ุฃุซูุงุก ุงูุชูููุฏ"); }
setLoading(false);
};
return (
<div className="max-w-3xl mx-auto p-6">
<header className="text-center mb-8">
<h1 className="text-3xl font-bold text-[#f5a623]">ุงุณุชูุฏูู XTTS v2</h1>
<p className="text-sm text-gray-500 mt-2">ูุนู
ู ุนูู: <span className="uppercase text-green-500">{device}</span></p>
</header>
<nav className="flex gap-2 mb-6 card p-1">
{[{id:"generate", n:"โก ุชูููุฏ"}, {id:"library", n:"๐ ุงูู
ูุชุจุฉ"}, {id:"history", n:"๐ ุงูุณุฌู"}].map(t => (
<button key={t.id} onClick={() => setTab(t.id)} className={`flex-1 py-2 rounded-lg transition ${tab === t.id ? 'tab-active' : 'text-gray-500'}`}>
{t.n}
</button>
))}
</nav>
{tab === "generate" && (
<div className="space-y-4">
<div className="card p-4">
<div className="flex justify-between mb-2">
<label className="text-xs text-gray-400 uppercase">ุงููุต ุงูู
ุฑุงุฏ ุชุญูููู</label>
<select className="bg-transparent text-sm text-amber-500 outline-none" value={lang} onChange={e => setLang(e.target.value)}>
{Object.entries({LANGUAGES_JSON}).map(([k, v]) => <option key={k} value={k}>{v}</option>)}
</select>
</div>
<textarea className="w-full bg-[#0b0c0f] border border-[#1f2330] rounded-lg p-3 outline-none focus:border-amber-500 transition" rows="4" value={text} onChange={e => setText(e.target.value)} placeholder="ุงูุชุจ ู
ุง ุชุฑูุฏ ููุง..."></textarea>
</div>
<div className="card p-4">
<label className="text-xs text-gray-400 uppercase block mb-3">ุงูุตูุช ุงูู
ุฑุฌุนู</label>
<input type="file" accept="audio/*" onChange={e => setFile1(e.target.files[0])} className="text-sm text-gray-500 mb-4 block w-full" />
{voices.length > 0 && (
<div className="flex flex-wrap gap-2">
{voices.map(v => (
<button key={v} onClick={() => setSelVoice(v === selVoice ? null : v)} className={`px-3 py-1 rounded-full text-xs border ${selVoice === v ? 'border-amber-500 text-amber-500 bg-amber-500/10' : 'border-gray-700 text-gray-500'}`}>
{v}
</button>
))}
</div>
)}
</div>
<button onClick={handleGenerate} disabled={loading} className="btn-primary w-full py-4 text-lg">
{loading ? "ุฌุงุฑู ุงูู
ุนุงูุฌุฉ..." : "ุชูููุฏ ุงูุตูุช ุงูุขู"}
</button>
{audioUrl && (
<div className="card p-4 mt-4 animate-pulse">
<audio src={audioUrl} controls autoPlay />
<a href={audioUrl} download className="block text-center mt-2 text-xs text-amber-500">ุชุญู
ูู ุงูู
ูู ุงูู
ููุฏ</a>
</div>
)}
</div>
)}
{tab === "history" && (
<div className="space-y-2">
{history.length === 0 ? <p className="text-center text-gray-600 py-10">ูุง ููุฌุฏ ุณุฌู ุญุงููุงู</p> :
history.slice().reverse().map((h, i) => (
<div key={i} className="card p-3 flex justify-between items-center">
<div className="overflow-hidden">
<p className="text-sm truncate w-64">{h.text}</p>
<span className="text-[10px] text-gray-600 uppercase">{h.language} โข {new Date(h.ts*1000).toLocaleTimeString()}</span>
</div>
<button onClick={() => { setAudioUrl(`/audio/${h.filename}`); setTab("generate"); }} className="btn-ghost px-3 py-1 text-xs">ุชุดุบูู</button>
</div>
))}
</div>
)}
</div>
);
}
ReactDOM.createRoot(document.getElementById("root")).render(<App />);
</script>
</body>
</html>
"""
# โโ ุงูู
ุณุงุฑุงุช โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/", response_class=HTMLResponse)
async def ui():
content = HTML_TEMPLATE.replace("{LANGUAGES_JSON}", json.dumps(LANGUAGES, ensure_ascii=False))
content = content.replace("{DEVICE_NAME}", device)
return content
@app.post("/generate")
async def generate(
text: str = Form(...),
language: str = Form("ar"),
voice_name: str = Form(None),
files: list[UploadFile] = File(default=[])
):
ref_paths = []
temp_dir = f"temp_{uuid.uuid4().hex}"
os.makedirs(temp_dir, exist_ok=True)
try:
# ุงูุชุนุงู
ู ู
ุน ุงูู
ููุงุช ุงูู
ุฑููุนุฉ
for f in files:
p = os.path.join(temp_dir, f.filename)
with open(p, "wb") as b: shutil.copyfileobj(f.file, b)
ref_paths.append(p)
# ุงูุชุนุงู
ู ู
ุน ุงูุฃุตูุงุช ุงูู
ุญููุธุฉ
if voice_name:
v_path = os.path.join(VOICE_LIB, voice_name)
if os.path.isdir(v_path):
ref_paths += [os.path.join(v_path, x) for x in os.listdir(v_path) if x.lower().endswith(('.wav', '.mp3'))]
if not ref_paths:
raise HTTPException(400, "ูุฌุจ ุชูููุฑ ุตูุช ู
ุฑุฌุนู")
out_name = f"gen_{uuid.uuid4().hex[:8]}.wav"
out_path = os.path.join(OUTPUT_DIR, out_name)
xtts_engine.tts_to_file(
text=text,
speaker_wav=ref_paths,
language=language,
file_path=out_path,
enable_text_splitting=True
)
# ุชุญุฏูุซ ุงูุณุฌู
hist = load_history()
hist.append({"filename": out_name, "text": text[:100], "language": language, "ts": int(time.time())})
save_history(hist)
background_sync()
return {"filename": out_name}
finally:
shutil.rmtree(temp_dir, ignore_errors=True)
@app.get("/audio/{filename}")
async def get_audio(filename: str):
p = os.path.join(OUTPUT_DIR, filename)
if os.path.exists(p): return FileResponse(p)
raise HTTPException(404)
@app.get("/history")
def get_history(): return load_history()
@app.get("/voices")
def list_voices(): return [d for d in os.listdir(VOICE_LIB) if os.path.isdir(os.path.join(VOICE_LIB, d))]
@app.post("/voices/save")
async def save_voice(name: str = Form(...), file: UploadFile = File(...)):
v_dir = os.path.join(VOICE_LIB, name.strip())
os.makedirs(v_dir, exist_ok=True)
dest = os.path.join(v_dir, file.filename)
with open(dest, "wb") as b: shutil.copyfileobj(file.file, b)
background_sync()
return {"status": "saved"}
# โโ ุงูุชุดุบูู โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if __name__ == "__main__":
nest_asyncio.apply()
uvicorn.run(app, host="0.0.0.0", port=7860) |