File size: 67,196 Bytes
536ce8b | 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 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 | {
"id": "e3f2b845-8f2c-4b5a-9caf-eac1029d3e7e",
"revision": 0,
"last_node_id": 169,
"last_link_id": 275,
"nodes": [
{
"id": 119,
"type": "VAELoader",
"pos": [
-2490,
4950
],
"size": [
530,
60
],
"flags": {},
"order": 0,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "VAE",
"type": "VAE",
"links": [
229,
241
]
}
],
"title": "🟪 H3 VIDEO VAE",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "VAELoader",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"minimax_h3_video_vae_fp16.safetensors"
],
"color": "#9B5CFF",
"bgcolor": "#21152E"
},
{
"id": 129,
"type": "RandomNoise",
"pos": [
-1440,
4920
],
"size": [
670,
90
],
"flags": {},
"order": 1,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "NOISE",
"type": "NOISE",
"links": [
231
]
}
],
"title": "🎲 GENERATION SEED",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "RandomNoise",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
182902927136465,
"randomize"
],
"color": "#FF9F1C",
"bgcolor": "#2C1A08"
},
{
"id": 126,
"type": "BasicGuider",
"pos": [
-1440,
5050
],
"size": [
670,
50
],
"flags": {},
"order": 38,
"mode": 0,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 262
},
{
"name": "conditioning",
"type": "CONDITIONING",
"link": 237
}
],
"outputs": [
{
"name": "GUIDER",
"type": "GUIDER",
"links": [
232
]
}
],
"title": "🧭 BASIC GUIDER",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "BasicGuider",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [],
"color": "#FF9F1C",
"bgcolor": "#2C1A08"
},
{
"id": 120,
"type": "VAELoader",
"pos": [
-2490,
5050
],
"size": [
530,
60
],
"flags": {},
"order": 2,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "VAE",
"type": "VAE",
"links": [
228,
265
]
}
],
"title": "🎧 H3 AUDIO VAE",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "VAELoader",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"minimax_h3_audio_vae_fp32.safetensors"
],
"color": "#9B5CFF",
"bgcolor": "#21152E"
},
{
"id": 116,
"type": "MarkdownNote",
"pos": [
-3890,
5060
],
"size": [
330,
360
],
"flags": {
"collapsed": false
},
"order": 3,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "🧠 MINIMAX H3 // CORE INFO",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"## MiniMax H3\n\n[MiniMax H3](https://www.minimax.io/blog/minimax-h3) is MiniMax's general-purpose, omni-modal generation model. It jointly understands text, image, video, and audio, and generates video with **native stereo audio**: voice, sound effects, and music are modeled jointly in a single forward pass, not layered on afterward. Output is up to 2K resolution, 24fps, and up to about 15 seconds.\n\n## ComfyUI links\n- [ComfyUI#15224](https://github.com/Comfy-Org/ComfyUI/pull/15224)\n- [🤗 Comfy-Org/MiniMax-H3](https://huggingface.co/Comfy-Org/MiniMax-H3)\n\n## About this workflow\n\n**Key inputs**\n\n- **prompt**: describe the shots, camera moves, and the accompanying audio (dialogue, SFX, music) in one block\n- **width / height**: set via Resolution Selector. H3's native canvas is a 768px short edge, capped at 768x1344 pixels, rounded to a multiple of 32\n- **duration (seconds)**: converted to a valid frame `length` by the Math Expression node, snapping up to the model's 17-frame-per-block (17k+5) grid at 24fps\n"
],
"color": "#9B5CFF",
"bgcolor": "#21152E",
"shape": 1
},
{
"id": 125,
"type": "SamplerCustomAdvanced",
"pos": [
-740,
4670
],
"size": [
420,
520
],
"flags": {},
"order": 40,
"mode": 0,
"inputs": [
{
"name": "noise",
"type": "NOISE",
"link": 231
},
{
"name": "guider",
"type": "GUIDER",
"link": 232
},
{
"name": "sampler",
"type": "SAMPLER",
"link": 252
},
{
"name": "sigmas",
"type": "SIGMAS",
"link": 234
},
{
"name": "latent_image",
"type": "LATENT",
"link": 235
}
],
"outputs": [
{
"name": "output",
"type": "LATENT",
"links": [
247,
248
]
},
{
"name": "denoised_output",
"type": "LATENT",
"links": []
}
],
"title": "⚡ H3 GENERATION CORE",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "SamplerCustomAdvanced",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [],
"color": "#FF9F1C",
"bgcolor": "#2C1A08"
},
{
"id": 118,
"type": "MarkdownNote",
"pos": [
-3550,
4500
],
"size": [
320,
370
],
"flags": {
"collapsed": false
},
"order": 4,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "📐 SIZE MATRIX // 16:9",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"| megapixels | Aspect | Output (multiple=32) |\n|---|---|---|\n| 0.2 | 16:9 | 608 x 352 |\n| 0.3 | 16:9 | 736 x 416 |\n| 0.4 | 16:9 | 864 x 480 |\n| 0.5 | 16:9 | 960 x 544 |\n| 0.6 | 16:9 | 1056 x 608 |\n| 0.7 | 16:9 | 1152 x 640 |\n| 0.8 | 16:9 | 1216 x 672 |\n| 0.9 | 16:9 | 1280 x 736 |\n| 0.98 | 16:9 | 1344 x 768 |\n| 1.0 | 16:9 | 1376 x 768 |\n| 1.2 | 16:9 | 1504 x 832 |\n| 1.5 | 16:9 | 1664 x 928 |\n| 1.8 | 16:9 | 1824 x 1024 |\n| 2.0 | 16:9 | 1920 x 1088 |\n"
],
"color": "#3478FF",
"bgcolor": "#0C2034",
"shape": 1
},
{
"id": 161,
"type": "MarkdownNote",
"pos": [
-3550,
4910
],
"size": [
320,
510
],
"flags": {},
"order": 5,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "⚡ EKKIVOK // WORKFLOW STATUS",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"# ⚡ MINIMAX H3 TURBO AIO\n\n> **CREATED, DESIGNED & ENGINEERED BY EKKIVOK**\n>\n> `[ CYBER-ANIME BUILD // SYSTEM READY ]`\n\n---\n\n## 🟨 AVAILABLE MODES\n\n- **Text to Video**\n- **First Frame to Video**\n- **First + Last Frame control**\n- **Optional Qwen VLM prompt enhancement**\n- **Native video + stereo audio generation**\n- **Optional RTX video upscaling**\n- **Final MP4 export**\n\n---\n\n## 🟦 PIPELINE\n\n`PROMPT → H3 CONDITIONING → TURBO SAMPLING → VIDEO/AUDIO DECODE → OPTIONAL RTX UPSCALE → EXPORT`\n\n---\n\n## 🟪 IMPORTANT\n\n- Keep unused image-input groups bypassed.\n- The Turbo LoRA and scheduler determine the fast-step behavior.\n- Test resolution and duration before a final long render.\n- Do not rename the groups used by the left-side bypass controls.\n\n---\n\n## ❤️ CREATOR\n\n**EKKIVOK**\n"
],
"color": "#FCEE0A",
"bgcolor": "#1A1604",
"shape": 1
},
{
"id": 140,
"type": "LoadImage",
"pos": [
-2800,
5090
],
"size": [
280,
330
],
"flags": {},
"order": 6,
"mode": 4,
"inputs": [],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [
261
]
},
{
"name": "MASK",
"type": "MASK",
"links": null
}
],
"title": "🖼️ LAST FRAME",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "LoadImage",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
"175231.jpg",
"image"
],
"color": "#9B5CFF",
"bgcolor": "#21152E"
},
{
"id": 157,
"type": "MarkdownNote",
"pos": [
-2810,
5470
],
"size": [
950,
180
],
"flags": {},
"order": 7,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "🔒 COPYRIGHT // USAGE RESTRICTION",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"This ComfyUI workflow is protected under the **Berne Convention** (automatic worldwide copyright from the moment it's created and saved as a JSON file — no registration needed). \nIt's shared strictly for **personal, non-commercial, private use only** 🙏\n\nYou may **NOT**:\n- Use it (or any part) for **commercial purposes** (client work, services, sales, monetized videos, ads, etc.) ❌\n- Copy, reproduce, redistribute, upload, or share the workflow file (JSON or metadata) without my explicit written permission 🚫\n- Modify, adapt, remix, or create derivative versions to share publicly or with others 🔒\n- Remove or change my credit/attribution (EKKIVOK / KIM) when you talk about or reference it ✂️\n\n**Allowed use** is limited to your own private, personal experimentation and fun on your machine, that's it, no exceptions 😊\n\nViolations may constitute copyright infringement under Berne Convention laws. All rights reserved."
],
"color": "#FF2BD6",
"bgcolor": "#2B102B",
"shape": 1
},
{
"id": 156,
"type": "MarkdownNote",
"pos": [
-3900,
5470
],
"size": [
1080,
180
],
"flags": {},
"order": 8,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "⚠️ RESPONSIBLE USE",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"\n## ⚠️ Important Disclaimer & Responsible Use\n\nThis workflow is provided for **creative, artistic, and personal experimentation purposes only**.\n\n- Do **not** create or generate images of real people without their explicit consent. \n- Do **not** use it for deepfakes, non-consensual explicit content, impersonation, harassment, deception, or any harmful/illegal purpose. \n- Respect copyright, trademarks, privacy laws, and all applicable regulations in your country. \n- When sharing generated images publicly (including on Civitai), clearly indicate they are AI-generated and follow Civitai's [Content Rules & TOS](https://civitai.com/content/tos).\n\nBy using this workflow, you agree to use it in a lawful, ethical, and responsible manner.\n\nThank you for keeping AI creation positive and respectful ✨"
],
"color": "#FF3B5C",
"bgcolor": "#2A0E15",
"shape": 1
},
{
"id": 158,
"type": "MarkdownNote",
"pos": [
-1850,
5470
],
"size": [
640,
180
],
"flags": {},
"order": 9,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "💪 PRIMARY TEST RIG",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"This workflow runs rock-solid and ultra-fast on my beast setup:\n- **CPU**: Intel Core i9-14900KF \n- **GPU**: ASUS RTX 5090 ASTRAL \n- **RAM**: 128GB DDR5 8000MHz Corsair Vengeance \n- **Motherboard**: ASUS ROG Maximus Z790 Extreme\n- **PSU**: ASUS ROG STRIX 1275W Platinum \n- **Case**: Hyte Y70 Touch \n- **Cooling**: Asus Ryujin III Extreme 360 ARGB (Noctua edition) AIO Watercooling \n- **Storage**: 30TB NVMe M.2 (high-speed array)\n\nZero crashes, buttery smooth generations & upscales even at high res / batch sizes. "
],
"color": "#FCEE0A",
"bgcolor": "#1A1604",
"shape": 1
},
{
"id": 159,
"type": "MarkdownNote",
"pos": [
-1200,
5470
],
"size": [
430,
180
],
"flags": {},
"order": 10,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "😎 SECONDARY TEST RIG",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"Yeah, it runs smooth on my older beast, no need for a 5090 to enjoy this workflow!\n\n- **CPU**: Intel Core i9-9900K \n- **GPU**: ASUS TUF NVIDIA RTX 3080 Ti \n- **RAM**: 128GB DDR4 5200MHz \n- **Motherboard**: ASUS TUF Z390-PLUS GAMING (WiFi) \n- **Cooling**: NZXT Kraken X63 \n- **PSU**: Gigabyte 750W 80+ Gold \n- **Storage**: 8TB NVMe M.2 \n\nExpect lower speed generations and executions."
],
"color": "#00E5FF",
"bgcolor": "#071821",
"shape": 1
},
{
"id": 160,
"type": "MarkdownNote",
"pos": [
-760,
5470
],
"size": [
790,
180
],
"flags": {},
"order": 11,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "⚙️ BACKEND STACK",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"My Backend Setup\n- Python 3.10.6\n- PyTorch 2.7.0 + CUDA 12.8 \n- Flash Attention 2 (custom build) \n- SageAttention 2.1.1 \n- xFormers (custom build) \n- DeepSpeed 0.16.5 \n- Triton Windows 3.3.0.post19 \n- torchao + torchsde \n- huggingface_hub with hf_transfer (for super-fast downloads)\n\nThese optimizations give big speed boosts and lower VRAM usage on both my high-end and mid-range rigs. "
],
"color": "#39FF88",
"bgcolor": "#0D281A",
"shape": 1
},
{
"id": 144,
"type": "ModelPreviewOverrideKJ",
"pos": [
-310,
4670
],
"size": [
400,
750
],
"flags": {},
"order": 37,
"mode": 0,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 264
},
{
"name": "vae",
"shape": 7,
"type": "VAE",
"link": 265
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
262,
263
]
}
],
"title": "👁️ HIGH-SPEED PREVIEW",
"properties": {
"cnr_id": "comfyui-kjnodes",
"ver": "1.4.9",
"Node name for S&R": "ModelPreviewOverrideKJ",
"ue_properties": {
"widget_ue_connectable": {
"max_resolution": true,
"jpeg_quality": true,
"suppress_default_preview": true,
"preview_frames": true,
"preview_fps": true,
"tiny_vae": true
},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
1024,
80,
true,
1024,
12,
"taesd3_decoder.safetensors",
""
],
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 121,
"type": "VAEDecodeAudio",
"pos": [
-990,
5420
],
"size": [
170,
60
],
"flags": {
"collapsed": true
},
"order": 42,
"mode": 0,
"inputs": [
{
"name": "samples",
"type": "LATENT",
"link": 248
},
{
"name": "vae",
"type": "VAE",
"link": 228
}
],
"outputs": [
{
"name": "AUDIO",
"type": "AUDIO",
"links": [
239
]
}
],
"title": "🎧 DECODE AUDIO",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "VAEDecodeAudio",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [],
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 122,
"type": "VAEDecode",
"pos": [
-1160,
5420
],
"size": [
167.608984375,
60
],
"flags": {
"collapsed": true
},
"order": 41,
"mode": 0,
"inputs": [
{
"name": "samples",
"type": "LATENT",
"link": 247
},
{
"name": "vae",
"type": "VAE",
"link": 229
}
],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [
238
]
}
],
"title": "🎞️ DECODE VIDEO",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "VAEDecode",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [],
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 131,
"type": "MiniMaxH3ImageToVideo",
"pos": [
-1810,
5130
],
"size": [
460,
220
],
"flags": {
"collapsed": true
},
"order": 35,
"mode": 0,
"inputs": [
{
"name": "clip",
"type": "CLIP",
"link": 240
},
{
"name": "vae",
"type": "VAE",
"link": 241
},
{
"name": "first_frame",
"shape": 7,
"type": "IMAGE",
"link": 259
},
{
"name": "last_frame",
"shape": 7,
"type": "IMAGE",
"link": 261
},
{
"name": "prompt",
"type": "STRING",
"widget": {
"name": "prompt"
},
"link": 269
},
{
"name": "width",
"type": "INT",
"widget": {
"name": "width"
},
"link": 244
},
{
"name": "height",
"type": "INT",
"widget": {
"name": "height"
},
"link": 245
},
{
"name": "length",
"type": "INT",
"widget": {
"name": "length"
},
"link": 243
}
],
"outputs": [
{
"name": "positive",
"type": "CONDITIONING",
"links": [
237
]
},
{
"name": "LATENT",
"type": "LATENT",
"links": [
235
]
}
],
"title": "🎬 MINIMAX H3 CONDITIONING",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "MiniMaxH3ImageToVideo",
"ue_properties": {
"widget_ue_connectable": {
"width": true,
"height": true,
"length": true
},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"",
1344,
768,
73
],
"color": "#3478FF",
"bgcolor": "#0C2034"
},
{
"id": 130,
"type": "CreateVideo",
"pos": [
-990,
5350
],
"size": [
212.507421875,
110
],
"flags": {
"collapsed": true
},
"order": 43,
"mode": 0,
"inputs": [
{
"name": "images",
"type": "IMAGE",
"link": 238
},
{
"name": "audio",
"shape": 7,
"type": "AUDIO",
"link": 239
}
],
"outputs": [
{
"name": "VIDEO",
"type": "VIDEO",
"links": [
270
]
}
],
"title": "🎬 BUILD VIDEO + AUDIO",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "CreateVideo",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
24,
8
],
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 149,
"type": "GetVideoComponents",
"pos": [
-1440,
5420
],
"size": [
278.2349609375,
86
],
"flags": {
"collapsed": true
},
"order": 44,
"mode": 0,
"inputs": [
{
"name": "video",
"type": "VIDEO",
"link": 270
}
],
"outputs": [
{
"name": "images",
"type": "IMAGE",
"links": [
271
]
},
{
"name": "audio",
"type": "AUDIO",
"links": [
273
]
},
{
"name": "fps",
"type": "FLOAT",
"links": [
274
]
},
{
"name": "bit_depth",
"type": "INT",
"links": null
}
],
"title": "🧩 EXTRACT VIDEO COMPONENTS",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "GetVideoComponents",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [],
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 117,
"type": "MarkdownNote",
"pos": [
-3890,
4500
],
"size": [
330,
520
],
"flags": {
"collapsed": false
},
"order": 12,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "📦 MODELS // DOWNLOAD & INSTALL",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"## Model Links\n\n**vae**\n\n- [minimax_h3_video_vae_fp16.safetensors](https://huggingface.co/Comfy-Org/MiniMax-H3/resolve/main/vae/minimax_h3_video_vae_fp16.safetensors)\n- [minimax_h3_audio_vae_fp32.safetensors](https://huggingface.co/Comfy-Org/MiniMax-H3/resolve/main/vae/minimax_h3_audio_vae_fp32.safetensors)\n\n**diffusion_models**\n\n- [minimax_h3_fl2va_pruned_int8_convrot.safetensors](https://huggingface.co/Comfy-Org/MiniMax-H3/resolve/main/diffusion_models/minimax_h3_fl2va_pruned_int8_convrot.safetensors)\n\n**text_encoders**\n\n- [qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors](https://huggingface.co/Comfy-Org/MiniMax-H3/resolve/main/text_encoders/qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors)\n\n\n## Model Storage Location\n\n```\n📂 ComfyUI/\n├── 📂 models/\n│ ├── 📂 vae/\n│ │ ├── minimax_h3_video_vae_fp16.safetensors\n│ │ └── minimax_h3_audio_vae_fp32.safetensors\n│ ├── 📂 diffusion_models/\n│ │ └── minimax_h3_fl2va_pruned_int8_convrot.safetensors\n│ └── 📂 text_encoders/\n│ └── qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors\n```\n\n## Report Issue\n\nNote: Please update ComfyUI first ([guide](https://docs.comfy.org/installation/update_comfyui)) and prepare required models. Desktop/Cloud updates follow stable releases, so some nightly-supported models may not be available yet.\n\n- Cannot run / runtime errors: [ComfyUI/issues](https://github.com/comfyanonymous/ComfyUI/issues)\n- UI / frontend issues: [ComfyUI_frontend/issues](https://github.com/Comfy-Org/ComfyUI_frontend/issues)\n- Workflow issues: [workflow_templates/issues](https://github.com/Comfy-Org/workflow_templates/issues)\n"
],
"color": "#00E5FF",
"bgcolor": "#071821",
"shape": 1
},
{
"id": 150,
"type": "VHS_VideoCombine",
"pos": [
120,
4670
],
"size": [
350,
803.7142857142858
],
"flags": {},
"order": 46,
"mode": 0,
"inputs": [
{
"name": "images",
"type": "IMAGE",
"link": 272
},
{
"name": "audio",
"shape": 7,
"type": "AUDIO",
"link": 273
},
{
"name": "meta_batch",
"shape": 7,
"type": "VHS_BatchManager",
"link": null
},
{
"name": "vae",
"shape": 7,
"type": "VAE",
"link": null
},
{
"name": "frame_rate",
"type": "FLOAT",
"widget": {
"name": "frame_rate"
},
"link": 274
}
],
"outputs": [
{
"name": "Filenames",
"type": "VHS_FILENAMES",
"links": null
}
],
"title": "💾 FINAL VIDEO EXPORT",
"properties": {
"cnr_id": "comfyui-videohelpersuite",
"ver": "1.7.9",
"Node name for S&R": "VHS_VideoCombine",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": {
"frame_rate": 24,
"loop_count": 0,
"filename_prefix": "EKKIVOK-H3-TURBO",
"format": "video/nvenc_h264-mp4",
"pix_fmt": "yuv420p",
"bitrate": 19,
"megabit": true,
"save_metadata": true,
"pingpong": false,
"save_output": true,
"videopreview": {
"hidden": false,
"paused": false,
"params": {
"filename": "EKKIVOK-H3-TURBO_00029-audio.mp4",
"subfolder": "",
"type": "output",
"format": "video/nvenc_h264-mp4",
"frame_rate": 24,
"workflow": "EKKIVOK-H3-TURBO_00029.png",
"fullpath": "F:\\Comfyui\\ComfyUI\\output\\EKKIVOK-H3-TURBO_00029-audio.mp4"
}
}
},
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 124,
"type": "BasicScheduler",
"pos": [
-1440,
5150
],
"size": [
670,
110
],
"flags": {},
"order": 39,
"mode": 0,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 263
}
],
"outputs": [
{
"name": "SIGMAS",
"type": "SIGMAS",
"links": [
234
]
}
],
"title": "📉 H3 SCHEDULER",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "BasicScheduler",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"simple",
6,
1
],
"color": "#FF9F1C",
"bgcolor": "#2C1A08"
},
{
"id": 146,
"type": "ShowText|pysssss",
"pos": [
-1930,
4960
],
"size": [
460,
130
],
"flags": {},
"order": 33,
"mode": 0,
"inputs": [
{
"name": "text",
"type": "STRING",
"link": 268
}
],
"outputs": [
{
"name": "STRING",
"shape": 6,
"type": "STRING",
"links": [
269
]
}
],
"title": "✨ ENHANCED PROMPT",
"properties": {
"cnr_id": "comfyui-custom-scripts",
"ver": "1.2.5",
"Node name for S&R": "ShowText|pysssss",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
"Animate the provided cyberpunk promotional poster while preserving its exact original composition, typography, spelling, character design, colors, proportions and layout.\n\nIMPORTANT: Every existing word and letter must remain perfectly sharp, static, readable and identical to the input image. Do not rewrite, translate, replace, animate, distort, morph or remove any text. Preserve exactly: “MINIMAX”, “H3”, “TURBO LORA”, “4 STEP TURBO”, “MODEL INFO”, “CREDITS”, “Creator: Larryvrh”, “Uploaded by: EKKIVOK”, “ABOUT” and “UPLOADED BY EKKIVOK”. Do not generate any new text, symbols, logos or watermarks.\n\n[0.0s–1.5s]\nThe camera remains almost locked, with an extremely slow cinematic push-in. The poster gains subtle three-dimensional depth through gentle parallax between the foreground HUD borders, the title, the cyberpunk character and the futuristic city background. Thin cyan and magenta neon lines progressively illuminate around the interface frames. Small electronic indicators softly blink. The character remains perfectly recognizable and mostly still. Only a few loose strands of hair move gently in a light artificial breeze.\n\n[1.5s–3.5s]\nA controlled cyan and hot-pink energy pulse travels around the borders of the poster and through the central futuristic display. The central lightning symbol emits a short bright pulse. Holographic screens show subtle animated scan lines, digital reflections and restrained light movement. The neon city lights behind the character shimmer softly. Very small glowing particles drift slowly through the scene. All typography remains completely static, undistorted and razor sharp.\n\n[3.5s–5.0s]\nThe neon illumination reaches maximum intensity. A smooth wave of cyan and magenta light travels from the upper title toward the lower “UPLOADED BY EKKIVOK” banner. The camera completes its subtle push-in and settles. The central energy symbol produces one final elegant pulse, followed by a stable premium cyberpunk glow suitable for a seamless loop.\n\nVisual style: premium cyberpunk anime advertising poster, electric cyan and hot-pink neon, deep blacks, sharp details, glossy futuristic interfaces, subtle volumetric light, controlled motion, professional Civitai model presentation, cinematic but restrained animation.\n\nMotion constraints: no camera rotation, no strong zoom, no shaking, no scene transition, no character body movement, no lip movement, no facial expression change, no object transformation, no warping, no melting, no duplicated elements, no typography deformation, no new text.\n\nAudio: subtle futuristic stereo ambience, low electronic hum, gentle digital interface beeps, soft electrical energy pulses synchronized with the neon animations, one clean bass impact during the final energy pulse, no speech, no vocals, no music overpowering the sound design."
],
"color": "#FF2BD6",
"bgcolor": "#2B102B"
},
{
"id": 143,
"type": "AILab_QwenVL",
"pos": [
-3170,
5090
],
"size": [
340,
330
],
"flags": {},
"order": 31,
"mode": 4,
"inputs": [
{
"name": "image",
"shape": 7,
"type": "IMAGE",
"link": 266
},
{
"name": "video",
"shape": 7,
"type": "IMAGE",
"link": null
},
{
"name": "custom_prompt",
"type": "STRING",
"widget": {
"name": "custom_prompt"
},
"link": 267
}
],
"outputs": [
{
"name": "RESPONSE",
"type": "STRING",
"links": [
268
]
}
],
"title": "🤖 QWEN VLM PROMPT ENHANCER",
"properties": {
"aux_id": "huchukato/ComfyUI-QwenVL-Mod",
"ver": "ce8a9d420f923facadce1c4bc7245173f25a12cd",
"Node name for S&R": "AILab_QwenVL",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
"Qwen3-VL-4B-Instruct-c_abliterated-v2",
"4-bit (VRAM-friendly)",
"sage",
"🎬 MiniMax H3 NSFW (10s)",
"",
512,
false,
4250032465,
"fixed",
false
],
"color": "#FF2BD6",
"bgcolor": "#2B102B"
},
{
"id": 137,
"type": "Power Lora Loader (rgthree)",
"pos": [
-1440,
4670
],
"size": [
670,
210
],
"flags": {},
"order": 36,
"mode": 0,
"inputs": [
{
"dir": 3,
"name": "model",
"type": "MODEL",
"link": 258
},
{
"dir": 3,
"name": "clip",
"type": "CLIP",
"link": null
}
],
"outputs": [
{
"dir": 4,
"name": "MODEL",
"shape": 3,
"type": "MODEL",
"links": [
264
]
},
{
"dir": 4,
"name": "CLIP",
"shape": 3,
"type": "CLIP",
"links": null
}
],
"title": "🧬 OPTIONAL LORA STACK",
"properties": {
"cnr_id": "rgthree-comfy",
"ver": "1.0.2607232129",
"Show Strengths": "Single Strength",
"Match": "",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
{},
{
"type": "PowerLoraLoaderHeaderWidget"
},
{},
""
],
"color": "#FCEE0A",
"bgcolor": "#2A2605"
},
{
"id": 135,
"type": "MiniMaxH3TurboSampler",
"pos": [
-1440,
5350
],
"size": [
320,
30
],
"flags": {
"collapsed": true
},
"order": 13,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "SAMPLER",
"type": "SAMPLER",
"links": [
252
]
}
],
"title": "⚡ TURBO SAMPLER",
"properties": {
"aux_id": "Larryvrh/ComfyUI-MiniMax-H3-Turbo",
"ver": "96cc1ddc001617da132dd73f31cd43666bf1d8d4",
"Node name for S&R": "MiniMaxH3TurboSampler",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [],
"color": "#FF9F1C",
"bgcolor": "#2C1A08"
},
{
"id": 163,
"type": "Label (rgthree)",
"pos": [
-1091.7524694974065,
4531.566298682885
],
"size": [
307.3139343261719,
21
],
"flags": {
"allow_interaction": true
},
"order": 14,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "BY EKKIVOK // エッキヴォク",
"properties": {
"fontSize": 21,
"fontFamily": "Orbitron",
"fontColor": "#FF2BD6",
"textAlign": "left",
"backgroundColor": "transparent",
"padding": 0,
"borderRadius": 0,
"angle": 0,
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"color": "#fff0",
"bgcolor": "#fff0"
},
{
"id": 167,
"type": "MarkdownNote",
"pos": [
-4350,
4460
],
"size": [
440,
1190
],
"flags": {},
"order": 15,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "🎮 HOW TO USE // CYBER-H3 MANUAL",
"properties": {
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
"# 🎮 HOW TO USE // 操作ガイド\n\n> `[ MINI MAX H3 TURBO // QUICK OPERATION MANUAL ]`\n\n---\n\n## 01 // CHOOSE THE INPUT MODE\n\n### **TEXT TO VIDEO**\n- Leave **FIRST FRAME** and **LAST FRAME** bypassed.\n- Write the full scene in **YOUR PROMPT**.\n\n### **FIRST FRAME TO VIDEO**\n- Enable **FIRST FRAME**.\n- Load the starting image.\n- Keep **LAST FRAME** bypassed.\n\n### **FIRST + LAST FRAME**\n- Enable both image groups.\n- Load the starting and ending images.\n- Describe the movement connecting them in the prompt.\n\n---\n\n## 02 // WRITE THE PROMPT\n\nDescribe in one block:\n\n- subject and action;\n- camera movement and framing;\n- lighting, atmosphere and visual style;\n- dialogue, sound effects and music;\n- chronological shot progression.\n\nEnable **PROMPT ENHANCER** when you want Qwen VLM to rewrite or expand the prompt. \nDisable it when you want your original prompt used directly.\n\n---\n\n## 03 // SET SIZE & DURATION\n\n- Choose the aspect ratio and resolution in **RESOLUTION SELECTOR**.\n- Set the clip length in **DURATION IN SECONDS**.\n- The Math Expression converts duration to a valid H3 frame count.\n- Start with a lower resolution and shorter duration for tests.\n\n---\n\n## 04 // TURBO GENERATION\n\n- Load the H3 model, text encoder, video VAE and audio VAE.\n- Keep **H3 TURBO LORA** enabled for the fast workflow.\n- Configure the scheduler and Turbo sampler.\n- Queue the workflow.\n\n---\n\n## 05 // PREVIEW & EXPORT\n\n- The workflow decodes video and native audio.\n- Enable **RTX VIDEO SUPER RESOLUTION** only for the final render.\n- The final node exports an MP4 with audio.\n\n---\n\n## ⚠️ TROUBLESHOOTING\n\n- No image guidance: verify the corresponding frame group is enabled.\n- Prompt enhancer ignored: verify its bypass control is enabled.\n- Slow or out-of-memory: lower resolution or duration, then disable RTX upscale.\n- Broken left controls: group titles must remain exactly:\n - `FIRST FRAME`\n - `LAST FRAME`\n - `MINIMAX PROMPT ENHANCER`\n - `RTX VIDEO UPSCALER`\n\n`[ READY TO GENERATE // 行こう ]`\n"
],
"color": "#FF2BD6",
"bgcolor": "#180B22",
"shape": 1
},
{
"id": 162,
"type": "Label (rgthree)",
"pos": [
-3170,
4520
],
"size": [
2033.1258544921875,
86
],
"flags": {
"allow_interaction": true
},
"order": 16,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "MINIMAX H3 // 4 STEPS TURBO VIDEO AIO",
"properties": {
"fontSize": 86,
"fontFamily": "Orbitron",
"fontColor": "#FCEE0A",
"textAlign": "left",
"backgroundColor": "transparent",
"padding": 0,
"borderRadius": 0,
"angle": 0,
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"color": "#fff0",
"bgcolor": "#fff0"
},
{
"id": 166,
"type": "Label (rgthree)",
"pos": [
-1131.7524694974065,
4551.566298682885
],
"size": [
368.5919494628906,
48
],
"flags": {
"allow_interaction": true
},
"order": 17,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "ALPHA // 反逆",
"properties": {
"fontSize": 48,
"fontFamily": "Orbitron",
"fontColor": "#FF2BD6",
"textAlign": "left",
"backgroundColor": "transparent",
"padding": 0,
"borderRadius": 0,
"angle": 0,
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"color": "#fff0",
"bgcolor": "#fff0"
},
{
"id": 134,
"type": "MiniMaxH3TurboLoRA",
"pos": [
-2490,
5150
],
"size": [
530,
90
],
"flags": {},
"order": 32,
"mode": 0,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 249
}
],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
255
]
}
],
"title": "⚡ H3 TURBO LORA",
"properties": {
"aux_id": "Larryvrh/ComfyUI-MiniMax-H3-Turbo",
"ver": "96cc1ddc001617da132dd73f31cd43666bf1d8d4",
"Node name for S&R": "MiniMaxH3TurboLoRA",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"MiniMax H3\\minimax_h3_turbo_4step_ckpt500.safetensors",
0.6
],
"color": "#FCEE0A",
"bgcolor": "#2A2605"
},
{
"id": 168,
"type": "Label (rgthree)",
"pos": [
-130,
5660
],
"size": [
612.623779296875,
24
],
"flags": {
"allow_interaction": true
},
"order": 18,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "反逆 // NEON VIDEO ENGINE // 4-STEP TURBO",
"properties": {
"fontSize": 24,
"fontFamily": "Orbitron",
"fontColor": "#FF2BD6",
"textAlign": "left",
"backgroundColor": "transparent",
"padding": 0,
"borderRadius": 0,
"angle": 0,
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"color": "#fff0",
"bgcolor": "#fff0"
},
{
"id": 132,
"type": "ComfyMathExpression",
"pos": [
-1230,
5350
],
"size": [
215.41953125,
130
],
"flags": {
"collapsed": true
},
"order": 30,
"mode": 0,
"inputs": [
{
"label": "a",
"name": "values.a",
"type": "FLOAT,INT,BOOLEAN",
"link": 246
},
{
"label": "b",
"name": "values.b",
"shape": 7,
"type": "FLOAT,INT,BOOLEAN",
"link": null
}
],
"outputs": [
{
"name": "FLOAT",
"type": "FLOAT",
"links": []
},
{
"name": "INT",
"type": "INT",
"links": [
243
]
},
{
"name": "BOOL",
"type": "BOOLEAN",
"links": []
}
],
"title": "🧮 VALID FRAME LENGTH",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "ComfyMathExpression",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"max(5, round(a * 24)) + (5 - (max(5, round(a * 24)) % 17)) % 17"
],
"color": "#3478FF",
"bgcolor": "#0C2034"
},
{
"id": 142,
"type": "Fast Groups Bypasser (rgthree)",
"pos": [
-3170,
4730
],
"size": [
340,
60
],
"flags": {},
"order": 19,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "OPT_CONNECTION",
"type": "*",
"links": null
}
],
"title": "🟪 LAST FRAME // ON-OFF",
"properties": {
"matchColors": "",
"matchTitle": "LAST FRAME",
"showNav": true,
"showAllGraphs": true,
"sort": "position",
"customSortAlphabet": "",
"toggleRestriction": "default",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"color": "#9B5CFF",
"bgcolor": "#21152E"
},
{
"id": 147,
"type": "Fast Groups Bypasser (rgthree)",
"pos": [
-3170,
4830
],
"size": [
340,
60
],
"flags": {},
"order": 20,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "OPT_CONNECTION",
"type": "*",
"links": null
}
],
"title": "🧠 PROMPT ENHANCER // ON-OFF",
"properties": {
"matchColors": "",
"matchTitle": "MINIMAX PROMPT ENHANCER",
"showNav": false,
"showAllGraphs": true,
"sort": "position",
"customSortAlphabet": "",
"toggleRestriction": "default",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"color": "#FF2BD6",
"bgcolor": "#2B102B"
},
{
"id": 148,
"type": "RTXVideoSuperResolution",
"pos": [
-730,
5290
],
"size": [
400,
106
],
"flags": {},
"order": 45,
"mode": 4,
"inputs": [
{
"name": "images",
"type": "IMAGE",
"link": 271
}
],
"outputs": [
{
"name": "upscaled_images",
"type": "IMAGE",
"links": [
272
]
}
],
"title": "🚀 RTX VIDEO SUPER RESOLUTION",
"properties": {
"cnr_id": "comfyui_nvidia_rtx_nodes",
"ver": "0.1.3",
"Node name for S&R": "RTXVideoSuperResolution",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
"scale by multiplier",
2,
"ULTRA"
],
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 133,
"type": "PrimitiveFloat",
"pos": [
-1940,
5350
],
"size": [
480,
80
],
"flags": {
"collapsed": false
},
"order": 21,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "FLOAT",
"type": "FLOAT",
"links": [
246
]
}
],
"title": "⏱️ DURATION IN SECONDS",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "PrimitiveFloat",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
8
],
"color": "#3478FF",
"bgcolor": "#0C2034"
},
{
"id": 145,
"type": "CR Prompt Text",
"pos": [
-1930,
4670
],
"size": [
460,
250
],
"flags": {},
"order": 22,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "prompt",
"type": "STRING",
"links": [
267
]
},
{
"name": "show_help",
"type": "STRING",
"links": null
}
],
"title": "✍️ YOUR PROMPT",
"properties": {
"cnr_id": "ComfyUI_Comfyroll_CustomNodes",
"ver": "d78b780ae43fcf8c6b7c6505e6ffb4584281ceca",
"Node name for S&R": "CR Prompt Text",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
"Animate the provided cyberpunk promotional poster while preserving its exact original composition, typography, spelling, character design, colors, proportions and layout.\n\nIMPORTANT: Every existing word and letter must remain perfectly sharp, static, readable and identical to the input image. Do not rewrite, translate, replace, animate, distort, morph or remove any text. Preserve exactly: “MINIMAX”, “H3”, “TURBO LORA”, “4 STEP TURBO”, “MODEL INFO”, “CREDITS”, “Creator: Larryvrh”, “Uploaded by: EKKIVOK”, “ABOUT” and “UPLOADED BY EKKIVOK”. Do not generate any new text, symbols, logos or watermarks.\n\n[0.0s–1.5s]\nThe camera remains almost locked, with an extremely slow cinematic push-in. The poster gains subtle three-dimensional depth through gentle parallax between the foreground HUD borders, the title, the cyberpunk character and the futuristic city background. Thin cyan and magenta neon lines progressively illuminate around the interface frames. Small electronic indicators softly blink. The character remains perfectly recognizable and mostly still. Only a few loose strands of hair move gently in a light artificial breeze.\n\n[1.5s–3.5s]\nA controlled cyan and hot-pink energy pulse travels around the borders of the poster and through the central futuristic display. The central lightning symbol emits a short bright pulse. Holographic screens show subtle animated scan lines, digital reflections and restrained light movement. The neon city lights behind the character shimmer softly. Very small glowing particles drift slowly through the scene. All typography remains completely static, undistorted and razor sharp.\n\n[3.5s–5.0s]\nThe neon illumination reaches maximum intensity. A smooth wave of cyan and magenta light travels from the upper title toward the lower “UPLOADED BY EKKIVOK” banner. The camera completes its subtle push-in and settles. The central energy symbol produces one final elegant pulse, followed by a stable premium cyberpunk glow suitable for a seamless loop.\n\nVisual style: premium cyberpunk anime advertising poster, electric cyan and hot-pink neon, deep blacks, sharp details, glossy futuristic interfaces, subtle volumetric light, controlled motion, professional Civitai model presentation, cinematic but restrained animation.\n\nMotion constraints: no camera rotation, no strong zoom, no shaking, no scene transition, no character body movement, no lip movement, no facial expression change, no object transformation, no warping, no melting, no duplicated elements, no typography deformation, no new text.\n\nAudio: subtle futuristic stereo ambience, low electronic hum, gentle digital interface beeps, soft electrical energy pulses synchronized with the neon animations, one clean bass impact during the final energy pulse, no speech, no vocals, no music overpowering the sound design."
],
"color": "#FF2BD6",
"bgcolor": "#2B102B"
},
{
"id": 164,
"type": "Label (rgthree)",
"pos": [
-3169.53349261979,
4499.593309968812
],
"size": [
1044.95556640625,
17
],
"flags": {
"allow_interaction": true
},
"order": 23,
"mode": 0,
"inputs": [],
"outputs": [],
"title": "TEXT 2 VIDEO • FIRST/LAST FRAME • IMG 2 VIDEO • NATIVE AUDIO • RTX UPSCALE • PROMPT ENHANCER",
"properties": {
"fontSize": 17,
"fontFamily": "Orbitron",
"fontColor": "#00E5FF",
"textAlign": "left",
"backgroundColor": "transparent",
"padding": 0,
"borderRadius": 0,
"angle": 0,
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"color": "#fff0",
"bgcolor": "#fff0"
},
{
"id": 151,
"type": "Fast Groups Bypasser (rgthree)",
"pos": [
-3170,
4930
],
"size": [
340,
60
],
"flags": {},
"order": 24,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "OPT_CONNECTION",
"type": "*",
"links": null
}
],
"title": "🚀 RTX UPSCALER // ON-OFF",
"properties": {
"matchColors": "",
"matchTitle": "RTX VIDEO UPSCALER",
"showNav": false,
"showAllGraphs": true,
"sort": "position",
"customSortAlphabet": "",
"toggleRestriction": "default",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"color": "#39FF88",
"bgcolor": "#0D281A"
},
{
"id": 141,
"type": "Fast Groups Bypasser (rgthree)",
"pos": [
-3170,
4630
],
"size": [
340,
60
],
"flags": {},
"order": 25,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "OPT_CONNECTION",
"type": "*",
"links": null
}
],
"title": "🟦 FIRST FRAME // ON-OFF",
"properties": {
"matchColors": "",
"matchTitle": "FIRST FRAME",
"showNav": true,
"showAllGraphs": true,
"sort": "position",
"customSortAlphabet": "",
"toggleRestriction": "default",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"color": "#00E5FF",
"bgcolor": "#082530"
},
{
"id": 138,
"type": "LoadImage",
"pos": [
-2800,
4670
],
"size": [
280,
330
],
"flags": {},
"order": 26,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "IMAGE",
"type": "IMAGE",
"links": [
259,
266
]
},
{
"name": "MASK",
"type": "MASK",
"links": null
}
],
"title": "🖼️ FIRST FRAME",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "LoadImage",
"ue_properties": {
"widget_ue_connectable": {},
"input_ue_unconnectable": {},
"version": "7.8"
}
},
"widgets_values": [
"a75017a9-72c3-456a-89ac-d2b2584c3d64.png",
"image"
],
"color": "#00E5FF",
"bgcolor": "#082530"
},
{
"id": 115,
"type": "ResolutionSelector",
"pos": [
-1930,
5170
],
"size": [
460,
130
],
"flags": {},
"order": 27,
"mode": 0,
"showAdvanced": true,
"inputs": [],
"outputs": [
{
"name": "width",
"type": "INT",
"links": [
244
]
},
{
"name": "height",
"type": "INT",
"links": [
245
]
}
],
"title": "📐 RESOLUTION SELECTOR",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "ResolutionSelector",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"3:4 (Portrait Standard)",
1,
32
],
"color": "#3478FF",
"bgcolor": "#0C2034"
},
{
"id": 128,
"type": "CLIPLoader",
"pos": [
-2490,
4800
],
"size": [
530,
110
],
"flags": {},
"order": 28,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "CLIP",
"type": "CLIP",
"links": [
240
]
}
],
"title": "🟦 QWEN3-VL TEXT ENCODER",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "CLIPLoader",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors",
"minimax",
"default"
],
"color": "#00E5FF",
"bgcolor": "#082530"
},
{
"id": 127,
"type": "UNETLoader",
"pos": [
-2490,
4670
],
"size": [
530,
90
],
"flags": {},
"order": 29,
"mode": 0,
"inputs": [],
"outputs": [
{
"name": "MODEL",
"type": "MODEL",
"links": [
249
]
}
],
"title": "🟨 H3 DIFFUSION MODEL",
"properties": {
"cnr_id": "comfy-core",
"ver": "0.30.2",
"Node name for S&R": "UNETLoader",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
"Minimax H3\\minimax_h3_fl2va_pruned_int8_convrot.safetensors",
"default"
],
"color": "#FCEE0A",
"bgcolor": "#2A2605"
},
{
"id": 136,
"type": "RHMiniMaxH3SageAttentionPatch",
"pos": [
-2480,
5320
],
"size": [
510,
90
],
"flags": {},
"order": 34,
"mode": 0,
"inputs": [
{
"name": "model",
"type": "MODEL",
"link": 255
}
],
"outputs": [
{
"name": "model",
"type": "MODEL",
"links": [
258
]
}
],
"title": "🧠 SAGE ATTENTION PATCH",
"properties": {
"Node name for S&R": "RHMiniMaxH3SageAttentionPatch",
"ue_properties": {
"widget_ue_connectable": {},
"version": "7.8",
"input_ue_unconnectable": {}
}
},
"widgets_values": [
false
],
"color": "#00E5FF",
"bgcolor": "#082530"
}
],
"links": [
[
228,
120,
0,
121,
1,
"VAE"
],
[
229,
119,
0,
122,
1,
"VAE"
],
[
231,
129,
0,
125,
0,
"NOISE"
],
[
232,
126,
0,
125,
1,
"GUIDER"
],
[
234,
124,
0,
125,
3,
"SIGMAS"
],
[
235,
131,
1,
125,
4,
"LATENT"
],
[
237,
131,
0,
126,
1,
"CONDITIONING"
],
[
238,
122,
0,
130,
0,
"IMAGE"
],
[
239,
121,
0,
130,
1,
"AUDIO"
],
[
240,
128,
0,
131,
0,
"CLIP"
],
[
241,
119,
0,
131,
1,
"VAE"
],
[
243,
132,
1,
131,
7,
"INT"
],
[
244,
115,
0,
131,
5,
"INT"
],
[
245,
115,
1,
131,
6,
"INT"
],
[
246,
133,
0,
132,
0,
"FLOAT"
],
[
247,
125,
0,
122,
0,
"LATENT"
],
[
248,
125,
0,
121,
0,
"LATENT"
],
[
249,
127,
0,
134,
0,
"MODEL"
],
[
252,
135,
0,
125,
2,
"SAMPLER"
],
[
255,
134,
0,
136,
0,
"MODEL"
],
[
258,
136,
0,
137,
0,
"MODEL"
],
[
259,
138,
0,
131,
2,
"IMAGE"
],
[
261,
140,
0,
131,
3,
"IMAGE"
],
[
262,
144,
0,
126,
0,
"MODEL"
],
[
263,
144,
0,
124,
0,
"MODEL"
],
[
264,
137,
0,
144,
0,
"MODEL"
],
[
265,
120,
0,
144,
1,
"VAE"
],
[
266,
138,
0,
143,
0,
"IMAGE"
],
[
267,
145,
0,
143,
2,
"STRING"
],
[
268,
143,
0,
146,
0,
"STRING"
],
[
269,
146,
0,
131,
4,
"STRING"
],
[
270,
130,
0,
149,
0,
"VIDEO"
],
[
271,
149,
0,
148,
0,
"IMAGE"
],
[
272,
148,
0,
150,
0,
"IMAGE"
],
[
273,
149,
1,
150,
1,
"AUDIO"
],
[
274,
149,
2,
150,
4,
"FLOAT"
]
],
"groups": [
{
"id": 1,
"title": "Models",
"bounding": [
-2500,
4600,
550,
830
],
"color": "#FCEE0A",
"flags": {}
},
{
"id": 2,
"title": "SAMPLING AND LORAS",
"bounding": [
-1450,
4600,
690,
670
],
"color": "#FF9F1C",
"flags": {}
},
{
"id": 3,
"title": "PROMPT & RATIO",
"bounding": [
-1940,
4600,
480,
710
],
"color": "#FF2BD6",
"flags": {}
},
{
"id": 5,
"title": "SAGE ATTENTION",
"bounding": [
-2490,
5250,
530,
170
],
"color": "#00E5FF",
"flags": {}
},
{
"id": 6,
"title": "SAMPLER AND HIGH SPEED PREVIEW",
"bounding": [
-750,
4600,
850,
830
],
"color": "#FF9F1C",
"flags": {}
},
{
"id": 7,
"title": "Group",
"bounding": [
-1450,
5280,
690,
150
],
"color": "#3478FF",
"flags": {}
},
{
"id": 9,
"title": "FIRST FRAME",
"bounding": [
-2810,
4600,
300,
410
],
"color": "#00E5FF",
"flags": {}
},
{
"id": 10,
"title": "LAST FRAME",
"bounding": [
-2810,
5020,
300,
410
],
"color": "#9B5CFF",
"flags": {}
},
{
"id": 11,
"title": "MINIMAX PROMPT ENHANCER",
"bounding": [
-3180,
5020,
360,
410
],
"color": "#FF2BD6",
"flags": {}
},
{
"id": 12,
"title": "INFOS",
"bounding": [
-3900,
4430,
680,
1000
],
"color": "#FCEE0A",
"flags": {}
},
{
"id": 14,
"title": "RTX VIDEO UPSCALER",
"bounding": [
-740,
5210,
420,
210
],
"color": "#39FF88",
"flags": {}
},
{
"id": 15,
"title": "VIDEO OUTPUT",
"bounding": [
110,
4600,
370,
830
],
"color": "#39FF88",
"flags": {}
},
{
"id": 16,
"title": "MADE",
"bounding": [
40,
5440,
140,
210
],
"color": "#0b2fb1",
"flags": {}
},
{
"id": 17,
"title": "IN",
"bounding": [
190,
5440,
140,
210
],
"color": "#bdbdbd",
"flags": {}
},
{
"id": 18,
"title": "FRANCE",
"bounding": [
340,
5440,
140,
210
],
"color": "#b00303",
"flags": {}
}
],
"config": {},
"extra": {
"frontendVersion": "1.47.12",
"VHS_latentpreview": false,
"VHS_latentpreviewrate": 0,
"VHS_MetadataImage": true,
"VHS_KeepIntermediate": true,
"ds": {
"scale": 0.5131581182307067,
"offset": [
4131.853591394596,
-4077.410420851117
]
},
"ue_links": [],
"anomalous_hashes": {
"119_minimax_h3_video_vae_fp16.safetensors": {
"hash": "",
"size": 5207808496
},
"120_minimax_h3_audio_vae_fp32.safetensors": {
"hash": "",
"size": 605254808
},
"134_MiniMax H3\\minimax_h3_turbo_4step_ckpt500.safetensors": {
"hash": "",
"size": 779849872
},
"127_Minimax H3\\minimax_h3_fl2va_pruned_int8_convrot.safetensors": {
"hash": "",
"size": 20970379616
}
},
"links_added_by_ue": []
},
"version": 0.4
} |