File size: 114,073 Bytes
4d3248c | 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 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 | from __future__ import annotations
import argparse
import atexit
import itertools
import json
import logging
import math
import multiprocessing as mp
import os
import random
import shutil
import sys
import threading
import time
import gc
from dataclasses import dataclass
from pathlib import Path
from typing import Any, Dict, List, Optional
import warnings
import numpy as np
import torch
warnings.filterwarnings("ignore", category=FutureWarning)
warnings.filterwarnings("ignore", category=UserWarning)
import gradio as gr
import pandas as pd
from omegaconf import OmegaConf
current_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(current_dir)
sys.path.append(os.path.join(current_dir, "indextts"))
from tools.i18n.i18n import I18nAuto
parser = argparse.ArgumentParser(description="IndexTTS Parallel WebUI")
parser.add_argument("--verbose", action="store_true", default=False, help="Enable verbose logging")
parser.add_argument("--port", type=int, default=7862, help="Port for the web UI")
parser.add_argument("--host", type=str, default="0.0.0.0", help="Host for the web UI")
parser.add_argument("--model_dir", type=str, default="checkpoints", help="Model checkpoints directory")
parser.add_argument("--is_fp16", action="store_true", default=False, help="Enable fp16 inference")
cmd_args = parser.parse_args()
if not os.path.exists(cmd_args.model_dir):
print(f"Model directory {cmd_args.model_dir} does not exist. Please download the model first.")
sys.exit(1)
required_files = [
"config.yaml",
"s2mel.pth",
"wav2vec2bert_stats.pt",
]
for file_name in required_files:
file_path = os.path.join(cmd_args.model_dir, file_name)
if not os.path.exists(file_path):
print(f"Required file {file_path} does not exist. Please download it.")
sys.exit(1)
try:
BASE_CFG = OmegaConf.load(os.path.join(cmd_args.model_dir, "config.yaml"))
except Exception as exc: # pragma: no cover - config must load
print(f"Failed to load config.yaml: {exc}")
sys.exit(1)
hf_cache_dir = os.path.join(cmd_args.model_dir, "hf_cache")
torch_cache_dir = os.path.join(cmd_args.model_dir, "torch_cache")
os.environ.setdefault("INDEXTTS_USE_DEEPSPEED", "0")
os.environ.setdefault("HF_HOME", hf_cache_dir)
os.environ.setdefault("HF_HUB_CACHE", hf_cache_dir)
os.environ.setdefault("TRANSFORMERS_CACHE", hf_cache_dir)
os.environ.setdefault("TORCH_HOME", torch_cache_dir)
os.makedirs(hf_cache_dir, exist_ok=True)
os.makedirs(torch_cache_dir, exist_ok=True)
from indextts.infer_v2_thai import IndexTTS2
from text_preprocessor import ThaiTextPreprocessor
i18n = I18nAuto(language="Auto")
logger = logging.getLogger("webui_parallel")
os.makedirs(os.path.join(current_dir, "outputs", "tasks"), exist_ok=True)
os.makedirs(os.path.join(current_dir, "prompts"), exist_ok=True)
os.environ.setdefault("INDEXTTS_USE_DEEPSPEED", "0")
example_cases: List[List[Any]] = []
examples_path = Path(current_dir) / "examples" / "cases.jsonl"
if examples_path.exists():
with examples_path.open("r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
example = json.loads(line)
emo_audio = example.get("emo_audio")
emo_audio_path = os.path.join("examples", emo_audio) if emo_audio else None
example_cases.append([
os.path.join("examples", example.get("prompt_audio", "sample_prompt.wav")),
example.get("emo_mode", 0),
example.get("text"),
emo_audio_path,
example.get("emo_weight", 1.0),
example.get("emo_text", ""),
example.get("emo_vec_1", 0),
example.get("emo_vec_2", 0),
example.get("emo_vec_3", 0),
example.get("emo_vec_4", 0),
example.get("emo_vec_5", 0),
])
EMO_CHOICES = [
"Match prompt audio",
"Use emotion reference audio",
"Use emotion vector (Thai 5-Emo)",
"Use emotion text description",
"Use emotion vector (Original 8-Emo)",
]
parallel_worker_config = {
"model_dir": cmd_args.model_dir,
"is_fp16": cmd_args.is_fp16,
"verbose": cmd_args.verbose,
"hf_cache": hf_cache_dir,
"torch_cache": torch_cache_dir,
"gpt_path": None,
"bpe_path": None,
}
class WorkerPool:
def __init__(self, config: Dict[str, Any]):
self.config = config
self.ctx = mp.get_context("spawn")
self.job_queue: Optional[mp.Queue] = None
self.result_queue: Optional[mp.Queue] = None
self.processes: List[mp.Process] = []
self.worker_count = 0
self.lock = threading.Lock()
self.batch_counter = itertools.count()
def _all_alive(self) -> bool:
return all(p.is_alive() for p in self.processes)
def ensure(self, count: int):
count = max(1, int(count))
with self.lock:
if self.worker_count == count and self.processes and self._all_alive():
return
self.stop_locked()
self.start_locked(count)
def start_locked(self, count: int):
self.job_queue = self.ctx.Queue()
self.result_queue = self.ctx.Queue()
self.processes = []
self.worker_count = count
for _ in range(count):
p = self.ctx.Process(
target=_worker_loop,
args=(self.job_queue, self.result_queue, self.config),
daemon=True)
p.start()
self.processes.append(p)
def stop_locked(self):
if not self.processes:
return
if self.job_queue is not None:
for _ in self.processes:
self.job_queue.put({"type": "stop"})
for p in self.processes:
p.join(timeout=5)
self.processes = []
if self.job_queue is not None:
self.job_queue.close()
self.job_queue = None
if self.result_queue is not None:
self.result_queue.close()
self.result_queue = None
self.worker_count = 0
def stop(self):
with self.lock:
self.stop_locked()
def run_jobs(self, jobs: List[GenerationJob], progress: Optional[gr.Progress]):
if not jobs:
return {}
with self.lock:
if not self.processes or self.job_queue is None or self.result_queue is None:
raise RuntimeError("Worker pool not initialized")
batch_id = next(self.batch_counter)
total = len(jobs)
for job in jobs:
payload = job.__dict__.copy()
payload["batch_id"] = batch_id
self.job_queue.put(payload)
row_results: Dict[int, Dict[str, Any]] = {}
processed = 0
total = len(jobs)
while processed < total:
message = self.result_queue.get() # type: ignore[arg-type]
if message.get("type") == "init_error":
raise RuntimeError(f"Worker failed to start: {message['error']}")
if message.get("batch_id") != batch_id:
continue
row_results[message["row_id"]] = message
processed += 1
_update_progress(progress, min(processed / total, 0.999), desc=f"Processed {processed}/{total}")
_update_progress(progress, 1.0, desc="Parallel generation complete")
return row_results
worker_pool = WorkerPool(parallel_worker_config)
def _shutdown_worker_pool():
worker_pool.stop()
atexit.register(_shutdown_worker_pool)
_PRIMARY_TTS: Optional[IndexTTS2] = None
_MODEL_SELECTION: Dict[str, Optional[str]] = {
"gpt": r"C:\datasetmaker\index-tts\models\thaiseperate2.pth",
"bpe": r"C:\datasetmaker\index-tts\checkpoints\thai_segmented_bpe.model"
}
def _candidate_paths(base_dirs: List[Path], suffixes: List[str]) -> List[str]:
results: List[str] = []
seen: set[str] = set()
for base in base_dirs:
if not base or not base.exists():
continue
for suffix in suffixes:
for path in base.glob(f"*{suffix}"):
resolved = str(path.resolve())
if resolved not in seen:
seen.add(resolved)
results.append(resolved)
results.sort()
return results
def _is_gpt_checkpoint(path: Path) -> bool:
name = path.name.lower()
if not name.endswith(".pth"):
return False
excluded = ("s2mel", "campplus", "bigvgan", "wav2vec", "emo", "spk", "cfm")
return not any(token in name for token in excluded)
def _discover_gpt_checkpoints() -> List[str]:
bases = [
Path(cmd_args.model_dir),
Path(current_dir) / "models",
]
candidates = _candidate_paths(bases, [".pth"])
return [path for path in candidates if _is_gpt_checkpoint(Path(path))]
def _discover_bpe_models() -> List[str]:
bases = [
Path(cmd_args.model_dir),
Path(current_dir) / "tokenizers",
]
return _candidate_paths(bases, [".model"])
def dispose_primary_tts():
global _PRIMARY_TTS
if _PRIMARY_TTS is not None:
try:
if hasattr(_PRIMARY_TTS, "gr_progress"):
_PRIMARY_TTS.gr_progress = None
finally:
_PRIMARY_TTS = None
gc.collect()
if torch.cuda.is_available():
torch.cuda.empty_cache()
def build_primary_tts() -> IndexTTS2:
if _MODEL_SELECTION["gpt"] is None or _MODEL_SELECTION["bpe"] is None:
raise RuntimeError("Model selection is not set. Provide GPT and BPE paths before loading.")
return IndexTTS2(
model_dir=cmd_args.model_dir,
cfg_path=os.path.join(cmd_args.model_dir, "config.yaml"),
is_fp16=cmd_args.is_fp16,
use_cuda_kernel=False,
use_accel=True,
use_torch_compile=False,
gpt_checkpoint_path=_MODEL_SELECTION["gpt"],
bpe_model_path=_MODEL_SELECTION["bpe"])
def load_primary_tts(gpt_path: str, bpe_path: str) -> IndexTTS2:
dispose_primary_tts()
resolved_gpt = os.path.abspath(gpt_path)
resolved_bpe = os.path.abspath(bpe_path)
previous_selection = _MODEL_SELECTION.copy()
_MODEL_SELECTION["gpt"] = resolved_gpt
_MODEL_SELECTION["bpe"] = resolved_bpe
try:
tts = build_primary_tts()
except Exception:
_MODEL_SELECTION.update(previous_selection)
dispose_primary_tts()
raise
global _PRIMARY_TTS
_PRIMARY_TTS = tts
parallel_worker_config["gpt_path"] = resolved_gpt
parallel_worker_config["bpe_path"] = resolved_bpe
worker_pool.stop()
return tts
def ensure_primary_tts() -> IndexTTS2:
if _PRIMARY_TTS is None:
raise RuntimeError("No GPT checkpoint loaded. Use the Load button in the UI.")
return _PRIMARY_TTS
def _model_status_text() -> str:
if _PRIMARY_TTS is None:
return "⚠️ No model loaded. Select a GPT checkpoint and BPE tokenizer, then click Load."
gpt_path = _MODEL_SELECTION.get("gpt")
bpe_path = _MODEL_SELECTION.get("bpe")
gpt_name = Path(gpt_path).name if gpt_path else "?"
bpe_name = Path(bpe_path).name if bpe_path else "?"
return f"✅ Loaded GPT: **{gpt_name}** | BPE: **{bpe_name}**"
def _format_label(path: str) -> str:
path_obj = Path(path)
candidates: List[str] = []
try:
rel_model = os.path.relpath(path, cmd_args.model_dir)
if not rel_model.startswith(".."):
prefix = Path(cmd_args.model_dir).name or "checkpoints"
candidates.append(f"{prefix}/{rel_model}".replace("\\", "/"))
except ValueError:
pass
try:
rel_repo = os.path.relpath(path, current_dir)
if not rel_repo.startswith(".."):
candidates.append(rel_repo.replace("\\", "/"))
except ValueError:
pass
candidates.append(path_obj.name)
for label in candidates:
if label:
return label
return str(path_obj)
def _format_dropdown_choices(
paths: List[str],
current_selection: Optional[str]) -> Tuple[List[str], Dict[str, str], Optional[str]]:
labels: List[str] = []
mapping: Dict[str, str] = {}
selected_label: Optional[str] = None
for path in paths:
label = _format_label(path)
base_label = label
suffix = 1
while label in mapping:
label = f"{base_label} ({suffix})"
suffix += 1
mapping[label] = path
labels.append(label)
if current_selection and os.path.abspath(path) == os.path.abspath(current_selection):
selected_label = label
if labels and selected_label is None:
selected_label = labels[0]
return labels, mapping, selected_label
@dataclass
class GenerationJob:
row_id: int
prompt_path: str
text: str
output_path: str
emo_mode: int
emo_weight: float
emo_vector: Optional[List[float]]
emo_text: str
emo_random: bool
emo_ref_path: Optional[str]
max_tokens: int
generation_kwargs: Dict[str, Any]
verbose: bool
duration_seconds: Optional[float] = None
accent_ref_path: Optional[str] = None
def _normalize_seed(seed_value: Any) -> Optional[int]:
if seed_value is None:
return None
if isinstance(seed_value, str):
value = seed_value.strip()
if not value:
return None
try:
seed = int(value)
except ValueError:
try:
seed = int(float(value))
except ValueError:
return None
elif isinstance(seed_value, bool):
seed = int(seed_value)
elif isinstance(seed_value, float):
if math.isnan(seed_value):
return None
seed = int(seed_value)
else:
try:
seed = int(seed_value)
except (TypeError, ValueError):
return None
if seed < 0:
seed = abs(seed)
return seed
def _normalize_duration_seconds(value: Any) -> Optional[float]:
if value is None:
return None
if isinstance(value, str):
value = value.strip()
if not value:
return None
try:
seconds = float(value)
except (TypeError, ValueError):
return None
if seconds <= 0:
return None
return seconds
def _apply_seed(seed: Optional[int]) -> None:
if seed is None:
return
py_seed = int(seed % (2**32))
random.seed(py_seed)
np.random.seed(py_seed)
torch_seed = int(seed % (2**63 - 1))
torch.manual_seed(torch_seed)
if torch.cuda.is_available():
torch.cuda.manual_seed_all(torch_seed)
def _prepare_generation_kwargs(raw_kwargs: Dict[str, Any]) -> Dict[str, Any]:
kwargs = dict(raw_kwargs or {})
seed = _normalize_seed(kwargs.pop("seed", None))
_apply_seed(seed)
return kwargs
def trim_audio_silences(path: str, max_sec: float = 1.0) -> str:
try:
import librosa
import soundfile as sf
import numpy as np
y, sr = librosa.load(path, sr=None)
# 1. ค้นหาช่วงที่ไม่ใช่เสียงเงียบ (top_db=28 เพื่อตัด noise ที่เบากว่าเสียงพูดทิ้ง)
intervals = librosa.effects.split(y, top_db=28, frame_length=2048, hop_length=512)
if len(intervals) == 0:
return path
pieces = []
max_pad = int(max_sec * sr)
# 2. จัดการเสียงเงียบ: ตัดหัวท้ายทิ้ง 100% และคุมจังหวะเงียบตรงกลางไม่ให้เกิน 1 วินาที
for i, intv in enumerate(intervals):
# เพิ่มช่วงที่มีเสียง
pieces.append(y[intv[0]:intv[1]])
# ถ้ามีช่วงถัดไป ให้เช็คช่วงเงียบตรงกลาง
if i < len(intervals) - 1:
gap_len = intervals[i+1][0] - intv[1]
if gap_len > max_pad:
# ถ้าเงียบเกิน 1 วิ ให้เหลือแค่ 1 วิ
pieces.append(np.zeros(max_pad, dtype=y.dtype))
elif gap_len > 0:
# ถ้าเงียบไม่เกิน 1 วิ ให้คงไว้ตามธรรมชาติ
pieces.append(y[intv[1]:intervals[i+1][0]])
y_out = np.concatenate(pieces)
sf.write(path, y_out, sr)
except Exception as e:
print("Trim silence error:", e)
return path
def _worker_loop(job_queue: mp.Queue, result_queue: mp.Queue, config: Dict[str, Any]):
hf_cache = config.get("hf_cache")
torch_cache = config.get("torch_cache")
if hf_cache:
os.environ.setdefault("HF_HOME", hf_cache)
os.environ.setdefault("HF_HUB_CACHE", hf_cache)
os.environ.setdefault("TRANSFORMERS_CACHE", hf_cache)
os.makedirs(hf_cache, exist_ok=True)
if torch_cache:
os.environ.setdefault("TORCH_HOME", torch_cache)
os.makedirs(torch_cache, exist_ok=True)
os.environ.setdefault("INDEXTTS_USE_DEEPSPEED", "0")
gpt_override = config.get("gpt_path")
bpe_override = config.get("bpe_path")
if not gpt_override or not bpe_override:
result_queue.put({"type": "init_error", "error": "No GPT/BPE model loaded. Use the Load button."})
return
try:
worker_tts = IndexTTS2(
model_dir=config["model_dir"],
cfg_path=os.path.join(config["model_dir"], "config.yaml"),
is_fp16=config.get("is_fp16", False),
use_cuda_kernel=False,
use_accel=True,
use_torch_compile=False,
gpt_checkpoint_path=gpt_override,
bpe_model_path=bpe_override)
except Exception as exc: # pragma: no cover - worker init path
logger.exception("Worker failed to initialize")
result_queue.put({"type": "init_error", "error": str(exc)})
return
while True:
job = job_queue.get()
if isinstance(job, dict) and job.get("type") == "stop":
break
try:
emo_mode = job["emo_mode"]
emo_audio_prompt = job["emo_ref_path"] if emo_mode == 1 else None
emo_alpha = job["emo_weight"] if emo_mode == 1 else 1.0
emo_vector = job["emo_vector"] if emo_mode == 2 else None
use_emo_text = emo_mode == 3
generation_kwargs = _prepare_generation_kwargs(job.get("generation_kwargs", {}))
trim_silence_value = generation_kwargs.pop("trim_silence", False)
auto_retry_value = generation_kwargs.pop("auto_retry", False)
use_dataset_spacing_value = generation_kwargs.pop("use_dataset_spacing", False)
use_g2p_value = generation_kwargs.pop("use_g2p", False)
preprocessor = ThaiTextPreprocessor(use_g2p=use_g2p_value, use_dataset_spacing=use_dataset_spacing_value)
clean_text = preprocessor.process(job["text"])
prompt_path = job["prompt_path"]
if trim_silence_value and prompt_path and os.path.exists(prompt_path):
trim_audio_silences(prompt_path)
max_retries = 3 if auto_retry_value else 1
for attempt in range(max_retries):
worker_tts.infer(
spk_audio_prompt=prompt_path,
text=clean_text,
output_path=job["output_path"],
emo_audio_prompt=emo_audio_prompt,
emo_alpha=emo_alpha,
emo_vector=emo_vector,
use_emo_text=use_emo_text,
emo_text=job["emo_text"],
use_random=job["emo_random"],
verbose=job.get("verbose", False),
max_text_tokens_per_segment=job["max_tokens"],
duration_seconds=job.get("duration_seconds"),
accent_audio_prompt=job.get("accent_ref_path"),
**generation_kwargs)
if trim_silence_value and os.path.exists(job["output_path"]):
trim_audio_silences(job["output_path"])
if auto_retry_value and os.path.exists(job["output_path"]):
try:
import librosa
y_out, sr_out = librosa.load(job["output_path"], sr=None)
dur = len(y_out) / sr_out
toks = len(worker_tts.tokenizer.tokenize(clean_text))
speed = float(generation_kwargs.get("speed_factor", 1.0))
est = toks * 0.3 * (1.0 / speed)
if (dur < est * 0.4 or dur > est * 2.5) and toks > 5:
if attempt < max_retries - 1:
print(f"⚠️ Worker: Audio length anomaly detected (Dur: {dur:.2f}s, Est: {est:.2f}s). Retrying ({attempt+1}/3)...")
continue
except Exception as e:
print("Retry check error:", e)
break
result_queue.put(
{
"type": "result",
"row_id": job["row_id"],
"status": "Completed",
"output_path": job["output_path"],
"timestamp": time.strftime("%Y-%m-%d %H:%M:%S"),
"error": None,
"batch_id": job.get("batch_id"),
}
)
except Exception as exc: # pragma: no cover - worker runtime path
logger.exception("Worker generation error")
result_queue.put(
{
"type": "result",
"row_id": job["row_id"],
"status": f"Error: {exc}",
"output_path": None,
"timestamp": time.strftime("%Y-%m-%d %H:%M:%S"),
"error": str(exc),
"batch_id": job.get("batch_id"),
}
)
try:
worker_tts.unload() # type: ignore[attr-defined]
except Exception: # pragma: no cover - optional cleanup
pass
def _update_progress(progress: Optional[gr.Progress], value: float, desc: str = "") -> None:
if progress is None:
return
try:
progress(value, desc=desc)
except Exception:
pass
MAX_LENGTH_TO_USE_SPEED = 70
# Web Audio API streaming — signal via gr.HTML data attribute.
#
# Why HTML data attribute instead of Textbox DOM polling:
# - gr.HTML renders raw content we fully control — no DOM structure uncertainty
# - data-v attribute on a <span> is trivially readable: el.getAttribute('data-v')
# - No textarea/input querySelector needed, no container=False ambiguity
#
# Flow:
# Python yields new HTML string (with updated data-v) → Gradio updates innerHTML
# → JS reads data-v from #sph-sig → plays chunk via Web Audio API
def create_demo() -> gr.Blocks:
gpt_choices = _discover_gpt_checkpoints()
bpe_choices = _discover_bpe_models()
gpt_labels, gpt_map, initial_gpt_label = _format_dropdown_choices(gpt_choices, _MODEL_SELECTION["gpt"])
bpe_labels, bpe_map, initial_bpe_label = _format_dropdown_choices(bpe_choices, _MODEL_SELECTION["bpe"])
gpt_cfg = getattr(BASE_CFG, "gpt", {})
max_mel_tokens_limit = int(getattr(gpt_cfg, "max_mel_tokens", 2048))
if max_mel_tokens_limit < 100:
max_mel_tokens_limit = 100
default_mel_value = min(1500, max_mel_tokens_limit)
max_text_tokens_limit = int(getattr(gpt_cfg, "max_text_tokens", 256))
if max_text_tokens_limit < 40:
max_text_tokens_limit = 40
default_text_tokens = min(120, max_text_tokens_limit)
cfg_version = getattr(BASE_CFG, "version", "1.0")
outputs_dir = os.path.join(current_dir, "outputs")
os.makedirs(outputs_dir, exist_ok=True)
with gr.Blocks(title="IndexTTS Parallel Demo") as demo:
model_status = gr.Markdown(value=_model_status_text())
gpt_map_state = gr.State(gpt_map)
bpe_map_state = gr.State(bpe_map)
with gr.Row():
gpt_dropdown = gr.Dropdown(
choices=gpt_labels,
value=initial_gpt_label,
label="GPT Checkpoint (.pth)",
interactive=True)
bpe_dropdown = gr.Dropdown(
choices=bpe_labels,
value=initial_bpe_label,
label="BPE Tokenizer (.model)",
interactive=True)
refresh_models_button = gr.Button("Refresh Models", variant="secondary")
load_models_button = gr.Button("Load Models", variant="primary")
def refresh_model_lists():
gpt_files = _discover_gpt_checkpoints()
bpe_files = _discover_bpe_models()
gpt_labels_new, gpt_map_new, gpt_value = _format_dropdown_choices(gpt_files, _MODEL_SELECTION["gpt"])
bpe_labels_new, bpe_map_new, bpe_value = _format_dropdown_choices(bpe_files, _MODEL_SELECTION["bpe"])
return (
gr.update(choices=gpt_labels_new, value=gpt_value),
gr.update(choices=bpe_labels_new, value=bpe_value),
gpt_map_new,
bpe_map_new,
_model_status_text())
def handle_model_load(
gpt_label: Optional[str],
bpe_label: Optional[str],
gpt_map_value: Optional[Dict[str, str]],
bpe_map_value: Optional[Dict[str, str]],
progress: gr.Progress = gr.Progress(track_tqdm=False)) -> str:
gpt_map_local = gpt_map_value or {}
bpe_map_local = bpe_map_value or {}
gpt_path = gpt_map_local.get(gpt_label or "", gpt_label)
bpe_path = bpe_map_local.get(bpe_label or "", bpe_label)
if not gpt_path or not bpe_path:
gr.Warning("Select both a GPT checkpoint and a BPE tokenizer before loading.")
return _model_status_text()
progress(0.1, "Loading models...")
try:
load_primary_tts(gpt_path, bpe_path)
except Exception as exc:
logger.exception("Failed to load models")
gr.Warning(f"Failed to load models: {exc}")
return f"❌ Failed to load models: {exc}"
gr.Info("Models loaded successfully.")
return _model_status_text()
refresh_models_button.click(
refresh_model_lists,
inputs=[],
outputs=[gpt_dropdown, bpe_dropdown, gpt_map_state, bpe_map_state, model_status])
load_models_button.click(
handle_model_load,
inputs=[gpt_dropdown, bpe_dropdown, gpt_map_state, bpe_map_state],
outputs=model_status)
batch_rows_state = gr.State([])
next_batch_id_state = gr.State(1)
gr.HTML(
"""
<h2 style=\"text-align:center;\">IndexTTS2 Parallel Batch Demo</h2>
"""
)
with gr.Accordion("Emotion Settings", open=True):
with gr.Row():
emo_control_method = gr.Radio(
choices=EMO_CHOICES,
type="index",
value=0,
label="Emotion Control Mode")
with gr.Group(visible=True) as emo_weight_group:
with gr.Row():
emo_weight = gr.Slider(label="Emotion Weight", minimum=0.0, maximum=1.6, value=0.8, step=0.01)
with gr.Group(visible=False) as emotion_reference_group:
with gr.Row():
emo_upload = gr.Audio(label="Emotion Reference Audio", type="filepath")
with gr.Row():
emo_random = gr.Checkbox(label="Random Emotion Sampling", value=False, visible=False)
with gr.Group(visible=False) as thai_emotion_vector_group:
with gr.Row():
with gr.Column():
tvec1 = gr.Slider(label="Neutral", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
tvec2 = gr.Slider(label="Angry", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
tvec3 = gr.Slider(label="Happy", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
with gr.Column():
tvec4 = gr.Slider(label="Sad", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
tvec5 = gr.Slider(label="Frustrated", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
with gr.Group(visible=False) as emotion_vector_group:
with gr.Row():
with gr.Column():
vec1 = gr.Slider(label="Joy", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
vec2 = gr.Slider(label="Anger", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
vec3 = gr.Slider(label="Sadness", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
vec4 = gr.Slider(label="Fear", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
with gr.Column():
vec5 = gr.Slider(label="Disgust", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
vec6 = gr.Slider(label="Low Mood", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
vec7 = gr.Slider(label="Surprise", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
vec8 = gr.Slider(label="Calm", minimum=0.0, maximum=1.4, value=0.0, step=0.05)
with gr.Group(visible=False) as emo_text_group:
emo_text = gr.Textbox(label="Emotion Description", placeholder="Describe the target emotion", value="")
with gr.Accordion("Advanced Generation Settings", open=False):
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("**GPT2 Sampling Settings**")
with gr.Row():
do_sample = gr.Checkbox(label="do_sample", value=True, info="Enable sampling")
temperature = gr.Slider(label="temperature", minimum=0.1, maximum=2.0, value=0.8, step=0.1)
with gr.Row():
top_p = gr.Slider(label="top_p", minimum=0.0, maximum=1.0, value=0.8, step=0.01)
top_k = gr.Slider(label="top_k", minimum=0, maximum=100, value=30, step=1)
num_beams = gr.Slider(label="num_beams", value=3, minimum=1, maximum=10, step=1)
with gr.Row():
repetition_penalty = gr.Number(label="repetition_penalty", precision=None, value=10.0, minimum=0.1, maximum=20.0, step=0.1)
length_penalty = gr.Number(label="length_penalty", precision=None, value=0.0, minimum=-2.0, maximum=2.0, step=0.1)
max_mel_tokens = gr.Slider(
label="max_mel_tokens",
value=default_mel_value,
minimum=50,
maximum=max_mel_tokens_limit,
step=10,
info="Maximum generated mel tokens")
seed_value = gr.Number(
label="Seed",
value=None,
precision=0,
minimum=0,
step=1,
info="Leave blank for random sampling; set a value for reproducible outputs.")
gr.Markdown("**Voice & Timing Settings**")
speed_factor = gr.Slider(
label="Speed Rate (ความเร็ว: < 1 เร็ว, > 1 ช้า)",
minimum=0.5,
maximum=2.0,
value=1.0,
step=0.1,
info="ปรับความเร็วการพูดของ AI")
interval_silence = gr.Slider(
label="Interval Silence (ms)",
minimum=0,
maximum=1000,
value=200,
step=50,
info="ระยะเวลาพักหายใจระหว่างประโยค")
use_g2p = gr.Checkbox(label="🪄 โหมดสะกดคำง่าย (G2P)", value=False, info="แปลงคำยากๆ ให้สะกดตรงตัวก่อนพากย์ (เช่น สุทธิกร -> สุดทิกอน)")
use_dataset_spacing = gr.Checkbox(label="✂️ แบ่งคำและจัด Spacebar แบบ Dataset", value=False, info="ประมวลผลข้อความให้มีการเว้นวรรค 1-2 ช่อง เพื่อให้ตรงกับโมเดล BPE ตัวใหม่")
classic_mode = gr.Checkbox(
label="✅ Classic Mode (โหมดดั้งเดิม)",
value=False,
info="ติ๊กเพื่อข้ามระบบแยกสำเนียง/ความเร็ว แล้วรันด้วยลอจิกดั้งเดิม"
)
trim_silence = gr.Checkbox(label="✂️ Trim Silence (ตัดเสียงเงียบลากยาว)", value=False, info="ถ้าผลลัพธ์หรือเสียงต้นฉบับมีช่วงเงียบเกิน 1 วินาที จะตัดให้เหลือแค่ 1 วินาที")
auto_retry = gr.Checkbox(label="🔁 Auto-Regenerate (ป้องกันอาการเอ๋อ)", value=False, info="ถ้า AI สร้างเสียงยาวเกินไปหรือสั้นผิดปกติเมื่อเทียบกับจำนวนคำ จะสั่ง Gen ใหม่ให้อัตโนมัติ")
chain_segments = gr.Checkbox(label="🔗 Chain Segments (คงอารมณ์เสียงให้ต่อเนื่อง)", value=False, info="เมื่อพิมพ์ข้อความยาวจนโดนหั่นเป็น 2 ท่อน จะดึงเสียงท่อนแรกมาเป็นต้นแบบให้ท่อนต่อไปเสมอ (อารมณ์/เสียงไม่แกว่ง)")
dur_per_token = gr.Slider(label="⏱️ Auto-Regen Sensitivity (Duration/Token)", value=0.12, minimum=0.05, maximum=0.5, step=0.01, info="ค่าเฉลี่ยความยาววินาทีต่อ 1 Token (ถ้าเสียงที่ Gen ได้สั้นหรือยาวกว่าค่านี้มากๆ ระบบจะ Gen ใหม่)")
with gr.Column(scale=2):
gr.Markdown("**Sentence Settings**")
max_text_tokens_per_sentence = gr.Slider(
label="Max tokens per sentence",
value=default_text_tokens,
minimum=20,
maximum=max_text_tokens_limit,
step=2,
key="max_text_tokens_per_sentence")
duration_seconds_input = gr.Number(
label="Target duration (seconds)",
value=None,
precision=2,
minimum=0,
step=0.1,
info="Optional: approximate overall audio length. Leave blank for free duration.")
with gr.Accordion("Preview sentences", open=True):
sentences_preview = gr.Dataframe(
headers=["Index", "Sentence", "Token Count"],
key="sentences_preview",
wrap=True)
# [FIX] นำ use_g2p เข้ามาอยู่ในกลุ่ม advanced_params เพื่อการแยกตัวแปรที่สมบูรณ์!
advanced_params = [
do_sample,
top_p,
top_k,
temperature,
length_penalty,
num_beams,
repetition_penalty,
max_mel_tokens,
seed_value,
speed_factor,
interval_silence,
classic_mode,
use_g2p,
use_dataset_spacing,
trim_silence,
auto_retry,
chain_segments,
dur_per_token,
]
def build_generation_kwargs(
do_sample_value,
top_p_value,
top_k_value,
temperature_value,
length_penalty_value,
num_beams_value,
repetition_penalty_value,
max_mel_tokens_value,
seed_value,
speed_factor_value,
interval_silence_value,
classic_mode_value,
use_g2p_value,
use_dataset_spacing_value=False,
trim_silence_value=False,
auto_retry_value=False,
chain_segments_value=False,
dur_per_token_value=0.12
):
try:
top_k_int = int(top_k_value)
except (TypeError, ValueError):
top_k_int = 0
try:
num_beams_int = int(num_beams_value)
except (TypeError, ValueError):
num_beams_int = 1
kwargs = {
"do_sample": bool(do_sample_value),
"top_p": float(top_p_value),
"top_k": top_k_int if top_k_int > 0 else None,
"temperature": float(temperature_value),
"length_penalty": float(length_penalty_value),
"num_beams": num_beams_int,
"repetition_penalty": float(repetition_penalty_value),
"max_mel_tokens": int(max_mel_tokens_value),
"speed_factor": float(speed_factor_value),
"interval_silence": int(interval_silence_value),
"classic_mode": bool(classic_mode_value),
"use_g2p": bool(use_g2p_value),
"use_dataset_spacing": bool(use_dataset_spacing_value),
"trim_silence": bool(trim_silence_value),
"auto_retry": bool(auto_retry_value),
"chain_segments": bool(chain_segments_value),
"dur_per_token": float(dur_per_token_value)
}
seed_int = _normalize_seed(seed_value)
if seed_int is not None:
kwargs["seed"] = seed_int
return kwargs
with gr.Tab("Single Generation"):
with gr.Row():
with gr.Column():
prompt_audio = gr.Audio(label="Voice Reference (เสียงหลักที่ต้องการโคลน)", key="prompt_audio", sources=["upload", "microphone"], type="filepath")
accent_audio = gr.Audio(label="Accent Reference (เสียงคนไทยเพื่อแก้สำเนียง - Optional)", key="accent_audio", sources=["upload", "microphone"], type="filepath")
with gr.Column():
input_text_single = gr.TextArea(
label="Text",
key="input_text_single",
placeholder="Enter text to synthesize",
info=f"Model version {cfg_version}")
with gr.Row():
format_single_btn = gr.Button("🪄 จัดข้อความ (แยกคำ + Spacebar)", variant="secondary")
gen_button = gr.Button("Generate", key="gen_button", interactive=True, variant="primary")
output_audio = gr.Audio(
label="Generated Result (Normal)",
visible=True,
key="output_audio",
autoplay=True
)
stream_audio_output = gr.Audio(
label="Streaming Player (Plays instantly)",
visible=True,
autoplay=True,
streaming=True
)
with gr.Row():
gen_stream_button = gr.Button("Streaming Generate (ทยอย Gen ทีละประโยค)", key="gen_stream_button", interactive=True, variant="secondary")
with gr.Tab("Interactive Segment Builder"):
gr.Markdown("สร้างเสียงทีละท่อน (Segment) เพื่อให้คุณสามารถตรวจสอบและ Regenerate ท่อนที่ไม่พอใจได้ก่อนจะรวมไฟล์")
with gr.Row():
with gr.Column():
seg_prompt_audio = gr.Audio(label="Voice Reference (เสียงหลักที่ต้องการโคลน)", key="seg_prompt_audio", sources=["upload", "microphone"], type="filepath")
seg_accent_audio = gr.Audio(label="Accent Reference (เสียงคนไทยเพื่อแก้สำเนียง - Optional)", key="seg_accent_audio", sources=["upload", "microphone"], type="filepath")
seg_input_text = gr.TextArea(
label="Text",
key="seg_input_text",
placeholder="Enter text to synthesize",
info="ใส่ข้อความทั้งหมด ระบบจะแยกเป็นประโยคให้")
with gr.Row():
seg_format_btn = gr.Button("🪄 จัดข้อความ (แยกคำ + Spacebar)", variant="secondary")
seg_split_btn = gr.Button("1. Split into Segments (แบ่งประโยค)", variant="primary")
seg_status = gr.Markdown("ยังไม่ได้แบ่งประโยค")
with gr.Column():
seg_table = gr.Dataframe(
headers=["Index", "Text", "Status", "Duration (s)"],
datatype=["number", "str", "str", "number"],
interactive=True,
wrap=True)
gr.Markdown("*💡 คลิกที่แต่ละแถวบนตารางด้านบน เพื่อฟังเสียงท่อนนั้นซ้ำ (สำหรับ Check เสียงเฉพาะท่อน)*")
seg_playback = gr.Audio(label="Playback Selected Segment", interactive=False)
with gr.Row():
seg_gen_next_btn = gr.Button("2. Generate Next Segment (สร้างท่อนถัดไป)", variant="primary", interactive=False)
seg_regen_last_btn = gr.Button("Regenerate Last Segment (สร้างท่อนล่าสุดใหม่)", variant="secondary", interactive=False)
seg_clear_btn = gr.Button("Clear All", variant="stop")
current_seg_audio = gr.Audio(label="Current Segment (ท่อนล่าสุด)", interactive=False)
final_seg_audio = gr.Audio(label="Combined Audio (รวมทั้งหมด)", interactive=False)
# Hidden states for Segment Builder
seg_state_texts = gr.State([])
seg_state_wavs = gr.State([])
seg_state_idx = gr.State(0)
with gr.Tab("Batch Generation"):
gr.Markdown("Manage multiple prompt audios, give each its own text, generate in bulk, and retry specific entries as needed.")
with gr.Row():
with gr.Column(scale=2):
with gr.Row():
dataset_path_input = gr.Textbox(
label="Dataset train.txt path",
value="vivy_va_dataset/train.txt",
scale=3,
placeholder="Path to train.txt")
load_dataset_button = gr.Button("Load Dataset", scale=1)
batch_file_input = gr.Files(
label="Add prompt audio files",
file_types=["audio"],
file_count="multiple",
type="filepath")
batch_accent_input = gr.Audio(label="Global Accent Reference for Batch (Optional)", type="filepath")
worker_count = gr.Slider(
label="Parallel workers",
minimum=1,
maximum=8,
value=2,
step=1,
info="Number of parallel TTS workers")
batch_table = gr.Dataframe(
headers=["ID", "Prompt", "Text", "Output", "Status", "Last Generated"],
datatype=["number", "str", "str", "str", "str", "str"],
row_count=(0, "dynamic"),
col_count=6,
interactive=False,
value=[])
with gr.Column():
selected_entry = gr.Dropdown(label="Select entry", choices=[], value=None, interactive=True)
batch_prompt_player = gr.Audio(label="Prompt Audio", type="filepath", interactive=False)
batch_output_player = gr.Audio(label="Generated Audio", type="filepath", interactive=False)
batch_text_input = gr.TextArea(label="Text", placeholder="Enter text for this entry", interactive=True)
with gr.Row():
format_batch_btn = gr.Button("🪄 จัดข้อความ (แยกคำ + Spacebar)", variant="secondary")
apply_text_button = gr.Button("Save Text", variant="primary")
batch_status = gr.Markdown(value="No entry selected.")
with gr.Row():
generate_all_button = gr.Button("Generate All")
regenerate_button = gr.Button("Regenerate Selected")
with gr.Row():
delete_entry_button = gr.Button("Delete Selected")
clear_entries_button = gr.Button("Clear All")
def gen_single(
emo_control_method_value,
prompt,
accent_ref_path,
text,
emo_ref_path,
emo_weight_value,
tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value,
vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value,
emo_text_value,
emo_random_value,
max_text_tokens_per_sentence_value,
duration_seconds_value,
*args,
progress: gr.Progress = gr.Progress()):
if not prompt:
gr.Warning("Upload a prompt audio file first.")
yield gr.update()
return
output_path = os.path.join(current_dir, "outputs", f"spk_{int(time.time())}.wav")
try:
tts = ensure_primary_tts()
except RuntimeError as exc:
gr.Warning(str(exc))
yield gr.update()
return
tts.gr_progress = progress
advanced_values = list(args)
expected_len = len(advanced_params)
if len(advanced_values) < expected_len:
advanced_values.extend([None] * (expected_len - len(advanced_values)))
raw_generation_kwargs = build_generation_kwargs(*advanced_values[:expected_len])
use_g2p_value = raw_generation_kwargs.pop("use_g2p", False)
use_dataset_spacing_value = raw_generation_kwargs.pop("use_dataset_spacing", False)
trim_silence_value = raw_generation_kwargs.pop("trim_silence", False)
auto_retry_value = raw_generation_kwargs.pop("auto_retry", False)
dur_per_token_value = raw_generation_kwargs.pop("dur_per_token", 0.12)
# Re-pop chain_segments to avoid passing it to infer
chain_segments_value = raw_generation_kwargs.pop("chain_segments", False)
generation_kwargs = _prepare_generation_kwargs(raw_generation_kwargs)
# Add chain_segments to generation_kwargs for infer_generator
generation_kwargs["chain_segments"] = chain_segments_value
emo_mode = emo_control_method_value if isinstance(emo_control_method_value, int) else getattr(emo_control_method_value, "value", 0)
tvec_values = [tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value]
vec_values = [vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value]
if emo_mode == 2:
if sum(tvec_values) > 1.5:
gr.Warning("Thai Emotion vector sum cannot exceed 1.5. Adjust the sliders and retry.")
yield gr.update()
return
emo_vector = tvec_values
elif emo_mode == 4:
if sum(vec_values) > 1.5:
gr.Warning("Original Emotion vector sum cannot exceed 1.5. Adjust the sliders and retry.")
yield gr.update()
return
emo_vector = vec_values
else:
emo_vector = None
duration_seconds = _normalize_duration_seconds(duration_seconds_value)
# --- เริ่มกระบวนการแปลงข้อความ ---
preprocessor = ThaiTextPreprocessor(use_g2p=use_g2p_value, use_dataset_spacing=use_dataset_spacing_value)
clean_text = preprocessor.process(text)
print(f"📝 Original Text : {text}")
print(f"✨ Cleaned Text : {clean_text}")
# -------------------------------
if trim_silence_value and prompt and os.path.exists(prompt):
trim_audio_silences(prompt)
max_retries = 3 if auto_retry_value else 1
for attempt in range(max_retries):
try:
tts.infer(
spk_audio_prompt=prompt,
text=clean_text,
output_path=output_path,
emo_audio_prompt=emo_ref_path if emo_mode == 1 else None,
emo_alpha=float(emo_weight_value) if emo_mode in (0, 1) else 1.0,
emo_vector=emo_vector if emo_mode in (2, 4) else None,
use_emo_text=(emo_mode == 3),
emo_text=emo_text_value,
use_random=emo_random_value,
verbose=cmd_args.verbose,
max_text_tokens_per_segment=int(max_text_tokens_per_sentence_value),
duration_seconds=duration_seconds,
accent_audio_prompt=accent_ref_path,
**generation_kwargs)
except AssertionError:
gr.Warning(
"Text segment is too long for the tokenizer with the current "
"'Max tokens per sentence' setting. Try reducing it or splitting "
"the text into shorter sentences.")
yield gr.update()
return
if trim_silence_value and os.path.exists(output_path):
trim_audio_silences(output_path)
if auto_retry_value and os.path.exists(output_path):
try:
import librosa
y_out, sr_out = librosa.load(output_path, sr=None)
dur = len(y_out) / sr_out
toks = len(tts.tokenizer.tokenize(clean_text))
speed = float(generation_kwargs.get("speed_factor", 1.0))
# Log stats to JSONL for future calculation refinement
try:
log_dir = os.path.join(current_dir, "omniman2")
os.makedirs(log_dir, exist_ok=True)
log_file = os.path.join(log_dir, "generation_stats.jsonl")
with open(log_file, "a", encoding="utf-8") as f:
log_entry = {
"timestamp": time.strftime("%Y-%m-%d %H:%M:%S"),
"tokens": toks,
"duration": round(dur, 3),
"dur_per_token": round(dur / toks, 4) if toks > 0 else 0,
"speed_factor": speed,
"text_snippet": clean_text[:100]
}
f.write(json.dumps(log_entry, ensure_ascii=False) + "\n")
except Exception as log_err:
print(f"Log error: {log_err}")
# ------------------------------------------------------
# PRO REGEN LOGIC: ใช้เกณฑ์ความแม่นยำสูง (0.08 - 0.21 s/token)
# ------------------------------------------------------
speed = float(generation_kwargs.get("speed_factor", 1.0))
# ปรับเกณฑ์ตาม Speed (ถ้าปรับสปีด 2x เกณฑ์ก็ต้องหาร 2)
min_limit = 0.08 * (1.0 / speed)
max_limit = 0.21 * (1.0 / speed)
dur_per_tok = dur / toks if toks > 0 else 0
# Anomaly Detection
is_anomaly = (dur_per_tok < min_limit or dur_per_tok > max_limit)
if is_anomaly and toks > 5: # เริ่มเช็คที่ 5 tokens ขึ้นไป
if attempt < max_retries - 1:
reason = "พูดรัว/อ่านข้าม" if dur_per_tok < min_limit else "เสียงยานคาง/วนลูป"
print(f"⚠️ [{reason}] Detected: {dur_per_tok:.3f}s/tok (Limit: {min_limit:.2f}-{max_limit:.2f}). Retrying ({attempt+1}/3)...")
continue
except Exception as e:
print("Retry check error:", e)
break
yield gr.update(value=output_path, visible=True)
def gen_single_stream(
emo_control_method_value,
prompt,
accent_ref_path,
text,
emo_ref_path,
emo_weight_value,
tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value,
vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value,
emo_text_value,
emo_random_value,
max_text_tokens_per_sentence_value,
duration_seconds_value,
*args,
progress: gr.Progress = gr.Progress()):
if not prompt:
gr.Warning("Upload a prompt audio file first.")
yield None
return
output_path = os.path.join(current_dir, "outputs", f"spk_{int(time.time())}.wav")
try:
tts = ensure_primary_tts()
except RuntimeError as exc:
gr.Warning(str(exc))
yield None
return
tts.gr_progress = progress
advanced_values = list(args)
expected_len = len(advanced_params)
if len(advanced_values) < expected_len:
advanced_values.extend([None] * (expected_len - len(advanced_values)))
raw_generation_kwargs = build_generation_kwargs(*advanced_values[:expected_len])
use_g2p_value = raw_generation_kwargs.pop("use_g2p", False)
use_dataset_spacing_value = raw_generation_kwargs.pop("use_dataset_spacing", False)
trim_silence_value = raw_generation_kwargs.pop("trim_silence", False)
auto_retry_value = raw_generation_kwargs.pop("auto_retry", False)
dur_per_token_value = raw_generation_kwargs.pop("dur_per_token", 0.12)
chain_segments_value = raw_generation_kwargs.pop("chain_segments", False)
generation_kwargs = _prepare_generation_kwargs(raw_generation_kwargs)
generation_kwargs["chain_segments"] = chain_segments_value
emo_mode = emo_control_method_value if isinstance(emo_control_method_value, int) else getattr(emo_control_method_value, "value", 0)
tvec_values = [tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value]
vec_values = [vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value]
if emo_mode == 2:
if sum(tvec_values) > 1.5:
gr.Warning("Thai Emotion vector sum cannot exceed 1.5. Adjust the sliders and retry.")
yield None
return
emo_vector = tvec_values
elif emo_mode == 4:
if sum(vec_values) > 1.5:
gr.Warning("Original Emotion vector sum cannot exceed 1.5. Adjust the sliders and retry.")
yield None
return
emo_vector = vec_values
else:
emo_vector = None
duration_seconds = _normalize_duration_seconds(duration_seconds_value)
preprocessor = ThaiTextPreprocessor(use_g2p=use_g2p_value, use_dataset_spacing=use_dataset_spacing_value)
clean_text = preprocessor.process(text)
if trim_silence_value and prompt and os.path.exists(prompt):
trim_audio_silences(prompt)
# --- Native Gradio Audio Streaming ---
import torchaudio
accumulated_wavs = []
sampling_rate = 22050
ts = int(time.time())
segment_count = 0
chunk_count = 0
# Signal UI to hide normal player, show streaming player, and clear stream buffer
yield None
print("[STREAM DEBUG] Starting infer_generator...")
generator = tts.infer_generator(
spk_audio_prompt=prompt,
text=clean_text,
output_path=None,
emo_audio_prompt=emo_ref_path if emo_mode == 1 else None,
emo_alpha=float(emo_weight_value) if emo_mode in (0, 1) else 1.0,
emo_vector=emo_vector if emo_mode in (2, 4) else None,
use_emo_text=(emo_mode == 3),
emo_text=emo_text_value,
use_random=emo_random_value,
verbose=cmd_args.verbose,
max_text_tokens_per_segment=int(max_text_tokens_per_sentence_value),
duration_seconds=duration_seconds,
stream_return=True,
accent_audio_prompt=accent_ref_path,
**generation_kwargs)
for chunk in generator:
if chunk is None:
print("[STREAM DEBUG] Received None chunk, skipping")
continue
segment_count += 1
accumulated_wavs.append(chunk)
dur_sec = chunk.shape[-1] / sampling_rate
print(f"[STREAM DEBUG] Segment {segment_count}: dur={dur_sec:.2f}s")
if dur_sec < 0.5:
print(f"[STREAM DEBUG] Silence padding, skipping")
continue
chunk_count += 1
audio_np = chunk.squeeze().cpu().numpy()
yield (sampling_rate, audio_np)
print(f"[STREAM DEBUG] Generator done. Segments: {segment_count}, Chunks yielded: {chunk_count}")
# Save final combined file and show in output_audio for replay/download
if accumulated_wavs:
combined = torch.cat(accumulated_wavs, dim=1)
torchaudio.save(output_path, combined.type(torch.int16), sampling_rate)
if trim_silence_value and os.path.exists(output_path):
trim_audio_silences(output_path)
print(f"[STREAM DEBUG] Final audio saved: {output_path}")
# Show final audio + signal JS done
def on_input_text_change(text_value, max_tokens_value):
if not text_value:
return {sentences_preview: gr.update(value=[], visible=True, type="array")}
try:
tts = ensure_primary_tts()
except RuntimeError as exc:
gr.Warning(str(exc))
return {sentences_preview: gr.update(value=[], visible=True, type="array")}
tokenized = tts.tokenizer.tokenize(text_value)
try:
sentences = tts.tokenizer.split_segments(
tokenized, max_text_tokens_per_segment=int(max_tokens_value)
)
data = []
for idx, sentence_tokens in enumerate(sentences):
sentence_str = "".join(sentence_tokens)
data.append([idx, sentence_str, len(sentence_tokens)])
except (AssertionError, Exception) as e:
# Tokenizer assertion: a segment longer than max_text_tokens.
# Show a warning row instead of crashing.
data = [["⚠️", f"Cannot preview: {e}", 0]]
return {sentences_preview: gr.update(value=data, visible=True, type="array")}
def on_method_select(emo_control_value):
if emo_control_value == 0:
return gr.update(visible=False), gr.update(visible=True), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False)
if emo_control_value == 1:
return gr.update(visible=True), gr.update(visible=True), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False)
if emo_control_value == 2:
return gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=True), gr.update(visible=False), gr.update(visible=False)
if emo_control_value == 3:
return gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)
if emo_control_value == 4:
return gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=True)
return gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False), gr.update(visible=False)
def build_batch_table_data(rows: List[Dict[str, Any]]):
table_data = []
for row in rows:
text_preview = (row.get("text") or "")[:57]
if row.get("text") and len(row["text"]) > 60:
text_preview += "..."
table_data.append(
[
row.get("id"),
os.path.basename(row.get("prompt_path", "")) if row.get("prompt_path") else "",
text_preview,
os.path.basename(row.get("output_path", "")) if row.get("output_path") else "",
row.get("status", "Pending"),
row.get("last_generated", ""),
]
)
return table_data
def find_batch_row(rows, row_id):
for row in rows or []:
if row.get("id") == row_id:
return row
return None
def resolve_batch_selection(rows, selected_value):
choices = [str(row.get("id")) for row in rows or []]
if not choices:
return gr.update(choices=[], value=None), None
if selected_value is not None:
selected_str = str(selected_value)
if selected_str in choices:
return gr.update(choices=choices, value=selected_str), int(selected_str)
return gr.update(choices=choices, value=choices[-1]), int(choices[-1])
def prepare_batch_selection(rows, selected_value):
dropdown_update, resolved_id = resolve_batch_selection(rows, selected_value)
row = find_batch_row(rows, resolved_id)
prompt_update = gr.update(value=row.get("prompt_path") if row else None)
output_update = gr.update(value=row.get("output_path") if row else None)
text_update = gr.update(value=row.get("text", "") if row else "")
return dropdown_update, resolved_id, prompt_update, output_update, text_update, row
def format_batch_status(row, message=None):
if not row:
base = "No entry selected."
else:
details = [f"Row {row.get('id')}: {row.get('status', 'Pending')}"]
if row.get("text"):
preview = row["text"][:117] + ("..." if len(row["text"]) > 120 else "")
details.append(f"Text: {preview}")
if row.get("output_path"):
details.append(f"Output: {row['output_path']}")
if row.get("last_generated"):
details.append(f"Last generated: {row['last_generated']}")
base = "\n".join(details)
if message:
base = f"{base}\n{message}" if base else message
return gr.update(value=base)
def add_batch_prompts(files, rows, next_id, selected_value):
rows = rows or []
next_id = next_id or 1
files = files or []
updated_rows = [dict(row) for row in rows]
prompts_dir = os.path.join(current_dir, "prompts")
os.makedirs(prompts_dir, exist_ok=True)
added = 0
last_added_id = None
for file_path in files:
if not file_path:
continue
safe_name = os.path.basename(file_path)
timestamp = int(time.time() * 1000)
target_name = f"batch_prompt_{next_id}_{timestamp}_{safe_name}"
target_path = os.path.join(prompts_dir, target_name)
try:
shutil.copy(file_path, target_path)
except Exception as exc:
logger.exception("Failed to store prompt %s", file_path)
gr.Warning(f"Failed to add {safe_name}: {exc}")
continue
entry = {
"id": next_id,
"prompt_path": target_path,
"output_path": None,
"status": "Pending",
"last_generated": "",
"text": "",
}
updated_rows.append(entry)
added += 1
last_added_id = entry["id"]
next_id += 1
selected_seed = last_added_id if added else selected_value
dropdown_update, resolved_id, prompt_update, output_update, text_update, selected_row = prepare_batch_selection(
updated_rows, selected_seed
)
table_update = gr.update(value=build_batch_table_data(updated_rows))
status_message = f"Added {added} prompt{'s' if added != 1 else ''}." if added else "No new prompts were added."
status_update = format_batch_status(selected_row, status_message)
return updated_rows, next_id, gr.update(value=None), table_update, dropdown_update, prompt_update, output_update, text_update, status_update
def validate_emotion_settings(emo_control_method_value, tvec_values, vec_values):
mode = emo_control_method_value if isinstance(emo_control_method_value, int) else getattr(
emo_control_method_value, "value", 0
)
try:
mode = int(mode)
except (TypeError, ValueError):
mode = 0
vec = None
if mode == 2:
if sum(tvec_values) > 1.5:
gr.Warning("Thai vector sum cannot exceed 1.5.")
return mode, None
vec = tvec_values
elif mode == 4:
if sum(vec_values) > 1.5:
gr.Warning("Orig vector sum cannot exceed 1.5.")
return mode, None
vec = vec_values
return mode, vec
def load_dataset_entries(dataset_path, rows, next_id, selected_value, *, progress: Optional[gr.Progress] = None):
rows = rows or []
next_id = next_id or 1
dataset_path = (dataset_path or "").strip()
if not dataset_path:
gr.Warning("Provide a dataset train.txt path before loading.")
dropdown_update, _, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(row)
return rows, next_id, gr.update(value=""), table_update, dropdown_update, prompt_update, output_update, text_update, status_update
dataset_path_abs = dataset_path if os.path.isabs(dataset_path) else os.path.abspath(os.path.join(current_dir, dataset_path))
if not os.path.exists(dataset_path_abs):
gr.Warning(f"Dataset file not found: {dataset_path_abs}")
dropdown_update, _, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(row)
return rows, next_id, gr.update(value=dataset_path), table_update, dropdown_update, prompt_update, output_update, text_update, status_update
dataset_dir = os.path.dirname(dataset_path_abs)
candidate_dirs = [dataset_dir, os.path.join(dataset_dir, "wavs"), os.path.join(dataset_dir, "audio")]
try:
lines = Path(dataset_path_abs).read_text(encoding="utf-8").splitlines()
except Exception as exc:
gr.Warning(f"Failed to read dataset file: {exc}")
dropdown_update, _, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(row)
return rows, next_id, gr.update(value=dataset_path), table_update, dropdown_update, prompt_update, output_update, text_update, status_update
updated_rows = [dict(row) for row in rows]
prompts_dir = os.path.join(current_dir, "prompts")
os.makedirs(prompts_dir, exist_ok=True)
existing_prompts = {os.path.basename(r.get("prompt_path", "")) for r in updated_rows if r.get("prompt_path")}
added = 0
missing_audio = 0
invalid_lines = 0
total_lines = len(lines)
_update_progress(progress, 0.0, desc="Parsing dataset")
for idx, raw_line in enumerate(lines):
_update_progress(progress, min((idx + 1) / max(total_lines, 1), 0.95), desc=f"Processing line {idx + 1}/{total_lines}")
stripped = raw_line.strip()
if not stripped or stripped.startswith("#"):
continue
parts = stripped.split("|", 1)
if len(parts) != 2:
invalid_lines += 1
continue
audio_name = parts[0].strip()
text_value = parts[1].strip()
if not audio_name or not text_value:
invalid_lines += 1
continue
source_path = None
for base_dir in candidate_dirs:
candidate = os.path.join(base_dir, audio_name)
if os.path.exists(candidate):
source_path = candidate
break
if not source_path:
missing_audio += 1
continue
unique_prefix = f"dataset_{next_id}_{int(time.time() * 1000)}"
target_name = f"{unique_prefix}_{os.path.basename(audio_name)}"
if target_name in existing_prompts:
target_name = f"{unique_prefix}_{next_id}_{os.path.basename(audio_name)}"
target_path = os.path.join(prompts_dir, target_name)
try:
shutil.copy(source_path, target_path)
except Exception as exc:
logger.exception("Failed to copy dataset prompt %s", source_path)
gr.Warning(f"Failed to copy {audio_name}: {exc}")
missing_audio += 1
continue
entry = {
"id": next_id,
"prompt_path": target_path,
"output_path": None,
"status": "Pending",
"last_generated": "",
"text": text_value,
}
updated_rows.append(entry)
existing_prompts.add(target_name)
added += 1
next_id += 1
selected_seed = updated_rows[-1]["id"] if added else selected_value
dropdown_update, resolved_id, prompt_update, output_update, text_update, selected_row = prepare_batch_selection(
updated_rows, selected_seed
)
table_update = gr.update(value=build_batch_table_data(updated_rows))
messages = []
if added:
messages.append(f"Loaded {added} entries")
if missing_audio:
messages.append(f"{missing_audio} missing audio")
if invalid_lines:
messages.append(f"{invalid_lines} invalid lines")
status_message = ", ".join(messages) if messages else "No new entries loaded."
status_update = format_batch_status(selected_row, status_message)
_update_progress(progress, 1.0, desc="Dataset load complete")
return updated_rows, next_id, gr.update(value=dataset_path), table_update, dropdown_update, prompt_update, output_update, text_update, status_update
def generate_all_batch(rows, selected_value, worker_count_value, emo_control_method_value, emo_ref_path, emo_weight_value, tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value, vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value, emo_text_value, emo_random_value, max_text_tokens_per_sentence_value, duration_seconds_value, batch_accent_ref, *advanced_param_values, progress: Optional[gr.Progress] = None):
rows = rows or []
if not rows:
gr.Warning("Add prompt audio files before generating.")
dropdown_update, _, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(row)
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
if parallel_worker_config.get("gpt_path") is None or parallel_worker_config.get("bpe_path") is None:
gr.Warning("Load a GPT checkpoint and BPE tokenizer before generating.")
dropdown_update, _, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(row, "Model not loaded.")
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
tvec_values = [tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value]
vec_values = [vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value]
emo_mode, emo_vector = validate_emotion_settings(emo_control_method_value, tvec_values, vec_values)
if emo_mode == 2 and emo_vector is None:
dropdown_update, _, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(row, "Emotion vector sum exceeded limit.")
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
try:
max_tokens = int(max_text_tokens_per_sentence_value)
except (TypeError, ValueError):
max_tokens = 120
duration_seconds = _normalize_duration_seconds(duration_seconds_value)
adv_values = list(advanced_param_values)
expected_len = len(advanced_params)
if len(adv_values) < expected_len:
adv_values.extend([None] * (expected_len - len(adv_values)))
base_generation_kwargs = build_generation_kwargs(*adv_values[:expected_len])
use_g2p_value = base_generation_kwargs.pop("use_g2p", False) # ดึงค่าออกไปใช้
outputs_dir = os.path.join(current_dir, "outputs", "tasks")
os.makedirs(outputs_dir, exist_ok=True)
jobs: List[GenerationJob] = []
row_map: Dict[int, Dict[str, Any]] = {}
for row in rows:
new_row = dict(row)
prompt_path = new_row.get("prompt_path")
if not prompt_path or not os.path.exists(prompt_path):
new_row["status"] = "Error: Prompt missing"
row_map[new_row["id"]] = new_row
continue
text_value = (new_row.get("text") or "").strip()
if not text_value:
new_row["status"] = "Error: Text missing"
row_map[new_row["id"]] = new_row
continue
use_g2p_val = base_generation_kwargs.pop("use_g2p", False)
use_dataset_spacing_val = base_generation_kwargs.pop("use_dataset_spacing", False)
# --- ใช้ Preprocessor ในโหมด Batch ---
preprocessor = ThaiTextPreprocessor(use_g2p=use_g2p_val, use_dataset_spacing=use_dataset_spacing_val)
clean_text = preprocessor.process(text_value)
output_path = os.path.join(outputs_dir, f"batch_row_{new_row['id']}_{int(time.time() * 1000)}.wav")
new_row["status"] = "Running"
new_row["output_path"] = output_path
row_map[new_row["id"]] = new_row
jobs.append(
GenerationJob(
row_id=new_row["id"],
prompt_path=prompt_path,
text=clean_text, # ส่งข้อความที่คลีนแล้วให้ Worker
output_path=output_path,
emo_mode=emo_mode,
emo_weight=float(emo_weight_value) if emo_mode in (0, 1) else 1.0,
emo_vector=emo_vector if emo_mode in (2, 4) else None,
emo_text=emo_text_value,
emo_random=bool(emo_random_value),
emo_ref_path=emo_ref_path if emo_mode == 1 else None,
max_tokens=max_tokens,
generation_kwargs=dict(base_generation_kwargs),
verbose=cmd_args.verbose,
duration_seconds=duration_seconds,
accent_ref_path=batch_accent_ref)
)
running_rows = list(row_map.values())
table_running = gr.update(value=build_batch_table_data(running_rows))
dropdown_update, resolved_id, prompt_update, output_update, text_update, selected_row = prepare_batch_selection(
running_rows, selected_value
)
if not jobs:
status_update = format_batch_status(selected_row, "No rows ready for generation.")
return running_rows, table_running, dropdown_update, prompt_update, output_update, text_update, status_update
_update_progress(progress, 0.0, desc="Starting parallel generation")
worker_pool.ensure(worker_count_value)
results = worker_pool.run_jobs(jobs, progress)
for row_id, result in results.items():
row_entry = row_map.get(row_id)
if not row_entry:
continue
row_entry["status"] = result["status"]
row_entry["last_generated"] = result.get("timestamp", "")
if result["output_path"]:
row_entry["output_path"] = result["output_path"]
final_rows = list(row_map.values())
table_update = gr.update(value=build_batch_table_data(final_rows))
dropdown_update, resolved_id, prompt_update, output_update, text_update, selected_row = prepare_batch_selection(
final_rows, resolved_id
)
status_update = format_batch_status(selected_row, "Parallel generation finished.")
return final_rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
def regenerate_batch_entry(rows, selected_value, worker_count_value, emo_control_method_value, emo_ref_path, emo_weight_value, tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value, vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value, emo_text_value, emo_random_value, max_text_tokens_per_sentence_value, duration_seconds_value, batch_accent_ref, *advanced_param_values, progress: Optional[gr.Progress] = None):
rows = rows or []
dropdown_update, resolved_id, prompt_update, output_update, text_update, selected_row = prepare_batch_selection(rows, selected_value)
if not selected_row:
gr.Warning("Select an entry to regenerate.")
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(None)
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
if parallel_worker_config.get("gpt_path") is None or parallel_worker_config.get("bpe_path") is None:
gr.Warning("Load a GPT checkpoint and BPE tokenizer before generating.")
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(selected_row, "Model not loaded.")
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
tvec_values = [tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value]
vec_values = [vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value]
emo_mode, emo_vector = validate_emotion_settings(emo_control_method_value, tvec_values, vec_values)
if emo_mode == 2 and emo_vector is None:
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(selected_row, "Emotion vector sum exceeded limit.")
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
prompt_path = selected_row.get("prompt_path")
if not prompt_path or not os.path.exists(prompt_path):
gr.Warning("Prompt audio file is missing.")
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(selected_row, "Prompt audio file missing.")
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
text_value = (selected_row.get("text") or "").strip()
if not text_value:
gr.Warning("Enter text for this entry before regenerating.")
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(selected_row, "Text is missing.")
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
try:
max_tokens = int(max_text_tokens_per_sentence_value)
except (TypeError, ValueError):
max_tokens = 120
adv_values = list(advanced_param_values)
expected_len = len(advanced_params)
if len(adv_values) < expected_len:
adv_values.extend([None] * (expected_len - len(adv_values)))
generation_kwargs = build_generation_kwargs(*adv_values[:expected_len])
use_g2p_value = generation_kwargs.pop("use_g2p", False)
use_dataset_spacing_value = generation_kwargs.pop("use_dataset_spacing", False)
# --- ใช้ Preprocessor ในโหมด Batch ---
preprocessor = ThaiTextPreprocessor(use_g2p=use_g2p_value, use_dataset_spacing=use_dataset_spacing_value)
clean_text = preprocessor.process(text_value)
outputs_dir = os.path.join(current_dir, "outputs", "tasks")
os.makedirs(outputs_dir, exist_ok=True)
output_path = os.path.join(outputs_dir, f"batch_row_{selected_row['id']}_{int(time.time() * 1000)}.wav")
job = GenerationJob(
row_id=selected_row["id"],
prompt_path=prompt_path,
text=clean_text, # ส่งข้อความที่คลีนแล้วให้ Worker
output_path=output_path,
emo_mode=emo_mode,
emo_weight=float(emo_weight_value) if emo_mode in (0, 1) else 1.0,
emo_vector=emo_vector if emo_mode in (2, 4) else None,
emo_text=emo_text_value,
emo_random=bool(emo_random_value),
emo_ref_path=emo_ref_path if emo_mode == 1 else None,
max_tokens=max_tokens,
generation_kwargs=dict(generation_kwargs),
verbose=cmd_args.verbose,
duration_seconds=duration_seconds,
accent_ref_path=batch_accent_ref)
_update_progress(progress, 0.0, desc="Regenerating entry")
worker_pool.ensure(worker_count_value)
results = worker_pool.run_jobs([job], progress)
result = results.get(job.row_id)
updated_rows = []
for row in rows:
if row.get("id") != job.row_id:
updated_rows.append(dict(row))
continue
new_row = dict(row)
if result:
new_row["status"] = result["status"]
new_row["output_path"] = result.get("output_path", new_row.get("output_path"))
new_row["last_generated"] = result.get("timestamp", "")
else:
new_row["status"] = "Error: Unknown"
updated_rows.append(new_row)
table_update = gr.update(value=build_batch_table_data(updated_rows))
dropdown_update, resolved_id, prompt_update, output_update, text_update, selected_row = prepare_batch_selection(
updated_rows, job.row_id
)
status_update = format_batch_status(selected_row, "Regeneration finished.")
return updated_rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
def delete_batch_entry(rows, selected_value):
rows = rows or []
dropdown_update, resolved_id, prompt_update, output_update, text_update, selected_row = prepare_batch_selection(rows, selected_value)
if not selected_row:
gr.Warning("Select an entry to delete.")
table_update = gr.update(value=build_batch_table_data(rows))
status_update = format_batch_status(None)
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
remaining_rows = [dict(row) for row in rows if row.get("id") != selected_row.get("id")]
dropdown_update, resolved_id, prompt_update, output_update, text_update, row = prepare_batch_selection(remaining_rows, None)
table_update = gr.update(value=build_batch_table_data(remaining_rows))
status_update = format_batch_status(row, "Entry deleted.")
return remaining_rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
def clear_batch_rows(rows, next_id):
dropdown_update = gr.update(choices=[], value=None)
prompt_update = gr.update(value=None)
output_update = gr.update(value=None)
text_update = gr.update(value="")
status_update = format_batch_status(None, "Batch list cleared.")
return [], 1, gr.update(value=[]), dropdown_update, prompt_update, output_update, text_update, status_update
def on_select_batch_entry(selected_value, rows):
dropdown_update, resolved_id, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
status_update = format_batch_status(row)
return dropdown_update, prompt_update, output_update, text_update, status_update
def update_batch_text(new_text, rows, selected_value):
rows = rows or []
try:
selected_id = int(selected_value) if selected_value is not None else None
except (TypeError, ValueError):
selected_id = None
if selected_id is None:
gr.Warning("Select an entry before editing text.")
table_update = gr.update(value=build_batch_table_data(rows))
dropdown_update, resolved_id, prompt_update, output_update, text_update, row = prepare_batch_selection(rows, selected_value)
status_update = format_batch_status(row)
return rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
updated_rows = []
target_row = None
for row in rows:
new_row = dict(row)
if row.get("id") == selected_id:
new_row["text"] = new_text
if new_row.get("output_path"):
new_row["status"] = "Pending"
target_row = new_row
updated_rows.append(new_row)
dropdown_update, resolved_id, prompt_update, output_update, text_update, row = prepare_batch_selection(updated_rows, selected_id)
table_update = gr.update(value=build_batch_table_data(updated_rows))
status_update = format_batch_status(row, "Text updated. Regenerate to apply." if target_row else None)
return updated_rows, table_update, dropdown_update, prompt_update, output_update, text_update, status_update
def update_prompt_audio():
return gr.update(interactive=True)
emo_control_method.select(
on_method_select,
inputs=[emo_control_method],
outputs=[emotion_reference_group, emo_weight_group, emo_random, thai_emotion_vector_group, emo_text_group, emotion_vector_group])
input_text_single.change(
on_input_text_change,
inputs=[input_text_single, max_text_tokens_per_sentence],
outputs=[sentences_preview])
max_text_tokens_per_sentence.change(
on_input_text_change,
inputs=[input_text_single, max_text_tokens_per_sentence],
outputs=[sentences_preview])
def format_text_action(text_val, use_g2p_val):
if not text_val:
return text_val
preprocessor = ThaiTextPreprocessor(use_g2p=use_g2p_val, use_dataset_spacing=True)
return preprocessor.process(text_val)
format_single_btn.click(
format_text_action,
inputs=[input_text_single, use_g2p],
outputs=[input_text_single])
format_batch_btn.click(
format_text_action,
inputs=[batch_text_input, use_g2p],
outputs=[batch_text_input])
prompt_audio.upload(update_prompt_audio, inputs=[], outputs=[gen_button])
gen_button.click(
gen_single,
inputs=[
emo_control_method,
prompt_audio,
accent_audio,
input_text_single,
emo_upload,
emo_weight,
tvec1,
tvec2,
tvec3,
tvec4,
tvec5,
vec1,
vec2,
vec3,
vec4,
vec5,
vec6,
vec7,
vec8,
emo_text,
emo_random,
max_text_tokens_per_sentence,
duration_seconds_input,
*advanced_params,
],
outputs=[output_audio],
show_progress=True)
gen_stream_button.click(
gen_single_stream,
inputs=[
emo_control_method,
prompt_audio,
accent_audio,
input_text_single,
emo_upload,
emo_weight,
tvec1, tvec2, tvec3, tvec4, tvec5,
vec1, vec2, vec3, vec4, vec5, vec6, vec7, vec8,
emo_text,
emo_random,
max_text_tokens_per_sentence,
duration_seconds_input,
*advanced_params,
],
outputs=[stream_audio_output],
show_progress=True)
# Segment Builder Handlers
def on_select_segment(evt: gr.SelectData, wavs):
idx = evt.index[0] # row index
if idx < len(wavs):
wav_tensor = wavs[idx]
wav_data = wav_tensor.type(torch.int16).numpy().T
return gr.update(value=(22050, wav_data))
return gr.update(value=None)
seg_table.select(on_select_segment, inputs=[seg_state_wavs], outputs=[seg_playback])
def seg_split(text_val, max_tokens, use_g2p_val, use_dataset_spacing_val):
if not text_val:
return [], 0, gr.update(value=[]), gr.update(value="Please enter text.", interactive=False), gr.update(interactive=False)
try:
tts = ensure_primary_tts()
except RuntimeError as exc:
return [], 0, gr.update(value=[]), gr.update(value=str(exc), interactive=False), gr.update(interactive=False)
preprocessor = ThaiTextPreprocessor(use_g2p=use_g2p_val, use_dataset_spacing=use_dataset_spacing_val)
clean_text = preprocessor.process(text_val)
tokenized = tts.tokenizer.tokenize(clean_text)
sentences_tokens = tts.tokenizer.split_segments(tokenized, max_text_tokens_per_segment=int(max_tokens))
sentences = ["".join(s) for s in sentences_tokens]
table_data = [[i+1, s, "Pending", 0.0] for i, s in enumerate(sentences)]
status = f"แบ่งข้อความได้ {len(sentences)} ท่อน พร้อมสำหรับ Generate!"
return sentences, [], 0, gr.update(value=table_data), gr.update(value=status), gr.update(interactive=True), gr.update(interactive=False)
seg_split_btn.click(
seg_split,
inputs=[seg_input_text, max_text_tokens_per_sentence, use_g2p, use_dataset_spacing],
outputs=[seg_state_texts, seg_state_wavs, seg_state_idx, seg_table, seg_status, seg_gen_next_btn, seg_regen_last_btn]
)
seg_format_btn.click(
format_text_action,
inputs=[seg_input_text, use_g2p],
outputs=[seg_input_text])
def seg_generate_chunk(
texts, wavs, idx,
emo_control_method_value,
prompt,
accent_ref_path,
emo_ref_path,
emo_weight_value,
tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value,
vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value,
emo_text_value,
emo_random_value,
max_text_tokens_per_sentence_value,
duration_seconds_value,
*args
):
if not prompt:
return wavs, idx, gr.update(), gr.update(value="Upload a prompt audio file first."), gr.update(), gr.update(), gr.update(), gr.update()
if idx >= len(texts):
return wavs, idx, gr.update(), gr.update(value="สร้างครบทุกท่อนแล้ว! 🎉"), gr.update(), gr.update(), gr.update(), gr.update()
try:
tts = ensure_primary_tts()
except RuntimeError as exc:
return wavs, idx, gr.update(), gr.update(value=str(exc)), gr.update(), gr.update(), gr.update(), gr.update()
advanced_values = list(args)
expected_len = len(advanced_params)
if len(advanced_values) < expected_len:
advanced_values.extend([None] * (expected_len - len(advanced_values)))
raw_generation_kwargs = build_generation_kwargs(*advanced_values[:expected_len])
use_g2p_value = raw_generation_kwargs.pop("use_g2p", False)
use_dataset_spacing_value = raw_generation_kwargs.pop("use_dataset_spacing", False)
trim_silence_value = raw_generation_kwargs.pop("trim_silence", False)
auto_retry_value = raw_generation_kwargs.pop("auto_retry", False)
dur_per_token_value = raw_generation_kwargs.pop("dur_per_token", 0.12)
chain_segments_value = raw_generation_kwargs.pop("chain_segments", False)
generation_kwargs = _prepare_generation_kwargs(raw_generation_kwargs)
generation_kwargs["chain_segments"] = chain_segments_value
emo_mode = emo_control_method_value if isinstance(emo_control_method_value, int) else getattr(emo_control_method_value, "value", 0)
tvec_values = [tvec1_value, tvec2_value, tvec3_value, tvec4_value, tvec5_value]
vec_values = [vec1_value, vec2_value, vec3_value, vec4_value, vec5_value, vec6_value, vec7_value, vec8_value]
if emo_mode == 2:
emo_vector = tvec_values
elif emo_mode == 4:
emo_vector = vec_values
else:
emo_vector = None
# If chain_segments is on and we have previous wavs, we need to pass the last wav as prompt
# But the 'infer' function does this internally if we pass the whole text.
# Since we are passing segment by segment, we must manually handle chaining.
current_prompt = prompt
if chain_segments_value and len(wavs) > 0:
# Save last wav temporarily to use as prompt
import torchaudio
temp_prompt = os.path.join(current_dir, "outputs", "temp_chain_prompt.wav")
last_wav = wavs[-1]
torchaudio.save(temp_prompt, last_wav.type(torch.int16), 22050)
current_prompt = temp_prompt
text = texts[idx]
output_path = os.path.join(current_dir, "outputs", f"seg_{idx}_{int(time.time())}.wav")
# Use infer to get the chunk
tts.infer(
spk_audio_prompt=current_prompt,
text=text,
output_path=output_path,
emo_audio_prompt=emo_ref_path if emo_mode == 1 else None,
emo_alpha=float(emo_weight_value) if emo_mode in (0, 1) else 1.0,
emo_vector=emo_vector if emo_mode in (2, 4) else None,
use_emo_text=(emo_mode == 3),
emo_text=emo_text_value,
use_random=emo_random_value,
verbose=cmd_args.verbose,
max_text_tokens_per_segment=int(max_text_tokens_per_sentence_value),
duration_seconds=_normalize_duration_seconds(duration_seconds_value),
accent_audio_prompt=accent_ref_path,
**generation_kwargs)
import librosa
if trim_silence_value and os.path.exists(output_path):
trim_audio_silences(output_path)
y, sr = librosa.load(output_path, sr=22050)
wav_tensor = torch.tensor(y).unsqueeze(0)
new_wavs = list(wavs)
# Check if this is a regeneration
if idx < len(new_wavs):
new_wavs[idx] = wav_tensor
else:
new_wavs.append(wav_tensor)
# Combine all for final output
combined_tensor = torch.cat(new_wavs, dim=1) if len(new_wavs) > 1 else new_wavs[0]
final_output = os.path.join(current_dir, "outputs", f"combined_{int(time.time())}.wav")
import torchaudio
torchaudio.save(final_output, combined_tensor.type(torch.int16), 22050)
# Update Table
table_data = []
for i, s in enumerate(texts):
status = "Pending"
dur = 0.0
if i < len(new_wavs):
status = "Done"
dur = round(new_wavs[i].shape[1] / 22050, 2)
table_data.append([i+1, s, status, dur])
new_idx = len(new_wavs)
status_msg = f"สร้างท่อนที่ {new_idx} เสร็จแล้ว (จากทั้งหมด {len(texts)} ท่อน)"
has_next = new_idx < len(texts)
has_prev = new_idx > 0
return (
new_wavs,
new_idx,
gr.update(value=table_data),
gr.update(value=status_msg),
gr.update(value=output_path),
gr.update(value=final_output),
gr.update(interactive=has_next),
gr.update(interactive=has_prev)
)
def seg_generate_next(*args):
return seg_generate_chunk(*args)
def seg_regenerate_last(texts, wavs, idx, *args):
# Regenerate the last segment by passing idx - 1
if idx > 0:
return seg_generate_chunk(texts, wavs, idx - 1, *args)
return wavs, idx, gr.update(), gr.update(value="ไม่มีท่อนให้ Regenerate"), gr.update(), gr.update(), gr.update(), gr.update()
def seg_clear():
return [], [], 0, gr.update(value=[]), gr.update(value="ล้างข้อมูลแล้ว"), gr.update(value=None), gr.update(value=None), gr.update(interactive=False), gr.update(interactive=False)
seg_gen_next_btn.click(
seg_generate_next,
inputs=[
seg_state_texts, seg_state_wavs, seg_state_idx,
emo_control_method, seg_prompt_audio, seg_accent_audio, emo_upload, emo_weight,
tvec1, tvec2, tvec3, tvec4, tvec5,
vec1, vec2, vec3, vec4, vec5, vec6, vec7, vec8,
emo_text, emo_random, max_text_tokens_per_sentence, duration_seconds_input,
*advanced_params,
],
outputs=[seg_state_wavs, seg_state_idx, seg_table, seg_status, current_seg_audio, final_seg_audio, seg_gen_next_btn, seg_regen_last_btn]
)
seg_regen_last_btn.click(
seg_regenerate_last,
inputs=[
seg_state_texts, seg_state_wavs, seg_state_idx,
emo_control_method, seg_prompt_audio, seg_accent_audio, emo_upload, emo_weight,
tvec1, tvec2, tvec3, tvec4, tvec5,
vec1, vec2, vec3, vec4, vec5, vec6, vec7, vec8,
emo_text, emo_random, max_text_tokens_per_sentence, duration_seconds_input,
*advanced_params,
],
outputs=[seg_state_wavs, seg_state_idx, seg_table, seg_status, current_seg_audio, final_seg_audio, seg_gen_next_btn, seg_regen_last_btn]
)
seg_clear_btn.click(
seg_clear,
inputs=[],
outputs=[seg_state_texts, seg_state_wavs, seg_state_idx, seg_table, seg_status, current_seg_audio, final_seg_audio, seg_gen_next_btn, seg_regen_last_btn]
)
batch_file_input.upload(
add_batch_prompts,
inputs=[batch_file_input, batch_rows_state, next_batch_id_state, selected_entry],
outputs=[batch_rows_state, next_batch_id_state, batch_file_input, batch_table, selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
load_dataset_button.click(
load_dataset_entries,
inputs=[dataset_path_input, batch_rows_state, next_batch_id_state, selected_entry],
outputs=[batch_rows_state, next_batch_id_state, dataset_path_input, batch_table, selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
selected_entry.change(
on_select_batch_entry,
inputs=[selected_entry, batch_rows_state],
outputs=[selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
apply_text_button.click(
update_batch_text,
inputs=[batch_text_input, batch_rows_state, selected_entry],
outputs=[batch_rows_state, batch_table, selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
generate_all_button.click(
generate_all_batch,
inputs=[
batch_rows_state,
selected_entry,
worker_count,
emo_control_method,
emo_upload,
emo_weight,
tvec1,
tvec2,
tvec3,
tvec4,
tvec5,
vec1,
vec2,
vec3,
vec4,
vec5,
vec6,
vec7,
vec8,
emo_text,
emo_random,
max_text_tokens_per_sentence,
duration_seconds_input,
batch_accent_input,
*advanced_params,
],
outputs=[batch_rows_state, batch_table, selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
regenerate_button.click(
regenerate_batch_entry,
inputs=[
batch_rows_state,
selected_entry,
worker_count,
emo_control_method,
emo_upload,
emo_weight,
tvec1,
tvec2,
tvec3,
tvec4,
tvec5,
vec1,
vec2,
vec3,
vec4,
vec5,
vec6,
vec7,
vec8,
emo_text,
emo_random,
max_text_tokens_per_sentence,
duration_seconds_input,
batch_accent_input,
*advanced_params,
],
outputs=[batch_rows_state, batch_table, selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
delete_entry_button.click(
delete_batch_entry,
inputs=[batch_rows_state, selected_entry],
outputs=[batch_rows_state, batch_table, selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
clear_entries_button.click(
clear_batch_rows,
inputs=[batch_rows_state, next_batch_id_state],
outputs=[batch_rows_state, next_batch_id_state, batch_table, selected_entry, batch_prompt_player, batch_output_player, batch_text_input, batch_status])
return demo
def main():
target_gpt = r"C:\datasetmaker\index-tts\models\thaiseperate2.pth"
target_bpe = r"C:\datasetmaker\index-tts\checkpoints\thai_segmented_bpe.model"
if os.path.exists(target_gpt) and os.path.exists(target_bpe):
print(">> Auto-loading default models before UI launch... Please wait.")
try:
load_primary_tts(target_gpt, target_bpe)
print(">> Models auto-loaded successfully!")
except Exception as e:
print(">> Failed to auto-load default models:", e)
demo = create_demo()
demo.queue(20)
print(">> Launching WebUI on http://127.0.0.1:7862")
demo.launch(inbrowser=True, server_name="127.0.0.1", server_port=cmd_args.port,
allowed_paths=[os.path.join(current_dir, "outputs")])
if __name__ == "__main__":
mp.set_start_method("spawn", force=True)
main() |