File size: 135,739 Bytes
e1d234b | 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 | {
"set_type": "closeset",
"task": "two text captions to audio generation",
"data_source": "AudioCaps",
"type": "audio generation",
"modality": {
"in": "text",
"out": "audio"
},
"version": "1.0",
"data": [
{
"id": "tcta_361",
"input": {
"text": "Hissing spray is occurring, and liquid is pattering on a surface # Male speaking and birds chirping",
"prompt": "I want to generate 'Hissing spray is occurring, and liquid is pattering on a surface' followed by 'Male speaking and birds chirping'."
},
"output": {}
},
{
"id": "tcta_073",
"input": {
"text": "Rain falling with young female speaking # A horse gallops then trot on grass as gusts of wind blow and thunderclaps in the distance",
"prompt": "I want to generate 'Rain falling with young female speaking' followed by 'A horse gallops then trot on grass as gusts of wind blow and thunderclaps in the distance'."
},
"output": {}
},
{
"id": "tcta_374",
"input": {
"text": "Pigeons cooing and flapping their wings # A person screaming followed glass crashing then two men communicating with each other as seagulls squawk in the distance",
"prompt": "I want to generate 'Pigeons cooing and flapping their wings' followed by 'A person screaming followed glass crashing then two men communicating with each other as seagulls squawk in the distance'."
},
"output": {}
},
{
"id": "tcta_155",
"input": {
"text": "A duck quacking followed by a dog whimpering then glass tapping as a film projector runs while birds chirp in the background # Bees buzz while two men talk followed by a sniffle",
"prompt": "I want to generate 'A duck quacking followed by a dog whimpering then glass tapping as a film projector runs while birds chirp in the background' followed by 'Bees buzz while two men talk followed by a sniffle'."
},
"output": {}
},
{
"id": "tcta_104",
"input": {
"text": "A bell tolls followed by ticking # An auto engine running loudly with some metallic sounds in the background",
"prompt": "I want to generate 'A bell tolls followed by ticking' followed by 'An auto engine running loudly with some metallic sounds in the background'."
},
"output": {}
},
{
"id": "tcta_394",
"input": {
"text": "Toilet flushes and water gurgles as it drains # A stream of water trickling as plastic clanks against a metal surface followed by water pouring down a drain alongside a camera muffling",
"prompt": "I want to generate 'Toilet flushes and water gurgles as it drains' followed by 'A stream of water trickling as plastic clanks against a metal surface followed by water pouring down a drain alongside a camera muffling'."
},
"output": {}
},
{
"id": "tcta_377",
"input": {
"text": "Clanking and rustling with people faintly speaking and horse clip-clopping in the background # A man talking followed by several electronic beeps",
"prompt": "I want to generate 'Clanking and rustling with people faintly speaking and horse clip-clopping in the background' followed by 'A man talking followed by several electronic beeps'."
},
"output": {}
},
{
"id": "tcta_124",
"input": {
"text": "A person clapping followed by a dog barking then knocking on a glass surface as birds chirp during outdoor ambiance # Loud, continuous tapping on a typewriter",
"prompt": "I want to generate 'A person clapping followed by a dog barking then knocking on a glass surface as birds chirp during outdoor ambiance' followed by 'Loud, continuous tapping on a typewriter'."
},
"output": {}
},
{
"id": "tcta_068",
"input": {
"text": "A car skidding its tires and racing away # Footsteps shuffling followed a cat meowing then a toilet flushing",
"prompt": "I want to generate 'A car skidding its tires and racing away' followed by 'Footsteps shuffling followed a cat meowing then a toilet flushing'."
},
"output": {}
},
{
"id": "tcta_450",
"input": {
"text": "Two men speak while bees buzz # Footsteps then a toilet flushing",
"prompt": "I want to generate 'Two men speak while bees buzz' followed by 'Footsteps then a toilet flushing'."
},
"output": {}
},
{
"id": "tcta_009",
"input": {
"text": "Vibrating and squealing form an engine # Singing and music with faint gunshots",
"prompt": "I want to generate 'Vibrating and squealing form an engine' followed by 'Singing and music with faint gunshots'."
},
"output": {}
},
{
"id": "tcta_194",
"input": {
"text": "A tin can rattling followed by a woman talking # Birds are cooing, and wings flap",
"prompt": "I want to generate 'A tin can rattling followed by a woman talking' followed by 'Birds are cooing, and wings flap'."
},
"output": {}
},
{
"id": "tcta_406",
"input": {
"text": "Hissing and gurgling of water flowing down a toilet # Musical whistling",
"prompt": "I want to generate 'Hissing and gurgling of water flowing down a toilet' followed by 'Musical whistling'."
},
"output": {}
},
{
"id": "tcta_084",
"input": {
"text": "A train running on railroad tracks drives by as a train horn blows several times alongside a railroad crossing signal ringing # Wood cracking as metal clanks and slams against a wooden surface",
"prompt": "I want to generate 'A train running on railroad tracks drives by as a train horn blows several times alongside a railroad crossing signal ringing' followed by 'Wood cracking as metal clanks and slams against a wooden surface'."
},
"output": {}
},
{
"id": "tcta_371",
"input": {
"text": "A man laughing with music playing in the background as a motorcycle engine drives by and becomes louder # A man talking as a swarm of insects are buzzing",
"prompt": "I want to generate 'A man laughing with music playing in the background as a motorcycle engine drives by and becomes louder' followed by 'A man talking as a swarm of insects are buzzing'."
},
"output": {}
},
{
"id": "tcta_388",
"input": {
"text": "A clock ticking followed by plastic clacking then cuckoo bird cooing before bells chiming # A repeating train horn and warning bells get louder as a train approaches",
"prompt": "I want to generate 'A clock ticking followed by plastic clacking then cuckoo bird cooing before bells chiming' followed by 'A repeating train horn and warning bells get louder as a train approaches'."
},
"output": {}
},
{
"id": "tcta_495",
"input": {
"text": "A kid laughing as someone does a series of belching # A person snoring",
"prompt": "I want to generate 'A kid laughing as someone does a series of belching' followed by 'A person snoring'."
},
"output": {}
},
{
"id": "tcta_030",
"input": {
"text": "Heavy rainfall with a brief muffled thunder from outside # A pigeon cooing followed by bird wings flapping as wind blows into a microphone",
"prompt": "I want to generate 'Heavy rainfall with a brief muffled thunder from outside' followed by 'A pigeon cooing followed by bird wings flapping as wind blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_316",
"input": {
"text": "Water is trickling while a woman is speaking # A machine is chopping wood",
"prompt": "I want to generate 'Water is trickling while a woman is speaking' followed by 'A machine is chopping wood'."
},
"output": {}
},
{
"id": "tcta_408",
"input": {
"text": "Ocean waves crashing as water trickles and splashes # Birds are chirping, ducks are quacking and other bird whistling noises",
"prompt": "I want to generate 'Ocean waves crashing as water trickles and splashes' followed by 'Birds are chirping, ducks are quacking and other bird whistling noises'."
},
"output": {}
},
{
"id": "tcta_490",
"input": {
"text": "A man talking followed by a vehicle accelerating then two men talking as rain falls on a surface # A woman is speaking while food being fried is sizzling",
"prompt": "I want to generate 'A man talking followed by a vehicle accelerating then two men talking as rain falls on a surface' followed by 'A woman is speaking while food being fried is sizzling'."
},
"output": {}
},
{
"id": "tcta_491",
"input": {
"text": "Some rustling followed by a toilet flush # Clicks followed by a man speaking then typing on a keyboard",
"prompt": "I want to generate 'Some rustling followed by a toilet flush' followed by 'Clicks followed by a man speaking then typing on a keyboard'."
},
"output": {}
},
{
"id": "tcta_280",
"input": {
"text": "A motorcycle engine idles and then shifts gears # A distant horn ring as a vehicle approaches",
"prompt": "I want to generate 'A motorcycle engine idles and then shifts gears' followed by 'A distant horn ring as a vehicle approaches'."
},
"output": {}
},
{
"id": "tcta_356",
"input": {
"text": "Tapping noises followed by a man talking with gurgling background noises # Nature sounds with birds chirping",
"prompt": "I want to generate 'Tapping noises followed by a man talking with gurgling background noises' followed by 'Nature sounds with birds chirping'."
},
"output": {}
},
{
"id": "tcta_076",
"input": {
"text": "Dogs barking and growling followed by a man talking # A crowd of people applauding and cheering",
"prompt": "I want to generate 'Dogs barking and growling followed by a man talking' followed by 'A crowd of people applauding and cheering'."
},
"output": {}
},
{
"id": "tcta_461",
"input": {
"text": "A goat baaing as footsteps shuffle on foliage followed by a series of licking # A clock ticking as plastic clanks followed by a cuckoo bird cooing then music box music playing",
"prompt": "I want to generate 'A goat baaing as footsteps shuffle on foliage followed by a series of licking' followed by 'A clock ticking as plastic clanks followed by a cuckoo bird cooing then music box music playing'."
},
"output": {}
},
{
"id": "tcta_497",
"input": {
"text": "A person whistling # A woman is performing a speech",
"prompt": "I want to generate 'A person whistling' followed by 'A woman is performing a speech'."
},
"output": {}
},
{
"id": "tcta_211",
"input": {
"text": "Humming of an approaching bus with squeaking brakes and people speaking in the distance # Male speech, a door closing, and then male speech",
"prompt": "I want to generate 'Humming of an approaching bus with squeaking brakes and people speaking in the distance' followed by 'Male speech, a door closing, and then male speech'."
},
"output": {}
},
{
"id": "tcta_101",
"input": {
"text": "Rain pouring on a solid surface followed by a vehicle driving by in the distance # A man speaking over an intercom as a crowd of people talk followed by a dog barking",
"prompt": "I want to generate 'Rain pouring on a solid surface followed by a vehicle driving by in the distance' followed by 'A man speaking over an intercom as a crowd of people talk followed by a dog barking'."
},
"output": {}
},
{
"id": "tcta_334",
"input": {
"text": "Rapid gunfire with far away voice # A sewing machine operating idle followed by a man talking then several instances of metal ratcheting",
"prompt": "I want to generate 'Rapid gunfire with far away voice' followed by 'A sewing machine operating idle followed by a man talking then several instances of metal ratcheting'."
},
"output": {}
},
{
"id": "tcta_475",
"input": {
"text": "Ticking is ongoing, soft clicking occurs, and a cuckoo calls once followed by musical chimes # An aircraft engine accelerating followed by an object clanking against fiberglass as an emergency siren sounds in the background",
"prompt": "I want to generate 'Ticking is ongoing, soft clicking occurs, and a cuckoo calls once followed by musical chimes' followed by 'An aircraft engine accelerating followed by an object clanking against fiberglass as an emergency siren sounds in the background'."
},
"output": {}
},
{
"id": "tcta_336",
"input": {
"text": "Adult males shout in the distance and an adult male shout close by, two adult males speak in the foreground, and gunfire erupts # High pitched croaking of frogs with some rustling",
"prompt": "I want to generate 'Adult males shout in the distance and an adult male shout close by, two adult males speak in the foreground, and gunfire erupts' followed by 'High pitched croaking of frogs with some rustling'."
},
"output": {}
},
{
"id": "tcta_440",
"input": {
"text": "Low frequency emergency siren going off followed by the siren slowing briefly # Large booming explosions",
"prompt": "I want to generate 'Low frequency emergency siren going off followed by the siren slowing briefly' followed by 'Large booming explosions'."
},
"output": {}
},
{
"id": "tcta_173",
"input": {
"text": "Woman speaking, plastic container opening # A man talking then whistling",
"prompt": "I want to generate 'Woman speaking, plastic container opening' followed by 'A man talking then whistling'."
},
"output": {}
},
{
"id": "tcta_002",
"input": {
"text": "A toilet flushing # Semiautomatic gunfire then clicks of a magazine change followed by more gunfire",
"prompt": "I want to generate 'A toilet flushing' followed by 'Semiautomatic gunfire then clicks of a magazine change followed by more gunfire'."
},
"output": {}
},
{
"id": "tcta_333",
"input": {
"text": "Crackling with an engine running # An adult male speaks as metal scrapes and clinks on a dish rapidly and liquid splashes",
"prompt": "I want to generate 'Crackling with an engine running' followed by 'An adult male speaks as metal scrapes and clinks on a dish rapidly and liquid splashes'."
},
"output": {}
},
{
"id": "tcta_409",
"input": {
"text": "Water splashes with people speaking in the distance and a faint whistle # A high pitched bell ringing continuously",
"prompt": "I want to generate 'Water splashes with people speaking in the distance and a faint whistle' followed by 'A high pitched bell ringing continuously'."
},
"output": {}
},
{
"id": "tcta_070",
"input": {
"text": "Plastic clanking as a horse trots and a woman talks in the background # A man shouting and hollering as ducks quack and chirp while wind blows into a microphone",
"prompt": "I want to generate 'Plastic clanking as a horse trots and a woman talks in the background' followed by 'A man shouting and hollering as ducks quack and chirp while wind blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_209",
"input": {
"text": "A dog barking and growling while plastic rattles and clanks against a hard surface # Humming of an engine followed by some honks of a horn",
"prompt": "I want to generate 'A dog barking and growling while plastic rattles and clanks against a hard surface' followed by 'Humming of an engine followed by some honks of a horn'."
},
"output": {}
},
{
"id": "tcta_063",
"input": {
"text": "Metal clanking occurs momentarily, then a flush occurs and water splashes and gurgles # Waves roll in and a man speaks",
"prompt": "I want to generate 'Metal clanking occurs momentarily, then a flush occurs and water splashes and gurgles' followed by 'Waves roll in and a man speaks'."
},
"output": {}
},
{
"id": "tcta_384",
"input": {
"text": "Tribal drums playing as footsteps shuffle on wet dirt as frogs and crickets chirp in the background # A rooster clucking followed by a dog whimpering then a man talking and a dog barking",
"prompt": "I want to generate 'Tribal drums playing as footsteps shuffle on wet dirt as frogs and crickets chirp in the background' followed by 'A rooster clucking followed by a dog whimpering then a man talking and a dog barking'."
},
"output": {}
},
{
"id": "tcta_093",
"input": {
"text": "A man speaking followed by dogs barking alongside chimps screaming and birds chirping # Revving of an engine with people cheering while someone speaks through a speaker",
"prompt": "I want to generate 'A man speaking followed by dogs barking alongside chimps screaming and birds chirping' followed by 'Revving of an engine with people cheering while someone speaks through a speaker'."
},
"output": {}
},
{
"id": "tcta_485",
"input": {
"text": "A power tool drill operating continuously # A man speaking as birds are chirping",
"prompt": "I want to generate 'A power tool drill operating continuously' followed by 'A man speaking as birds are chirping'."
},
"output": {}
},
{
"id": "tcta_185",
"input": {
"text": "A man talking as an infant is crying followed by a man humming # A child speaking followed by a seal speaking then water splashing as a kid and woman laugh in the background",
"prompt": "I want to generate 'A man talking as an infant is crying followed by a man humming' followed by 'A child speaking followed by a seal speaking then water splashing as a kid and woman laugh in the background'."
},
"output": {}
},
{
"id": "tcta_033",
"input": {
"text": "Humming and rattling from a revving engine # Whistling with wings flapping, birds chirping, and pigeons cooing",
"prompt": "I want to generate 'Humming and rattling from a revving engine' followed by 'Whistling with wings flapping, birds chirping, and pigeons cooing'."
},
"output": {}
},
{
"id": "tcta_077",
"input": {
"text": "An infant crying followed by a man laughing # A car door slamming shut as a vehicle engine is running idle then revving",
"prompt": "I want to generate 'An infant crying followed by a man laughing' followed by 'A car door slamming shut as a vehicle engine is running idle then revving'."
},
"output": {}
},
{
"id": "tcta_000",
"input": {
"text": "A man is speaking with rumbling in the background # A young boy talking as a duck is quacking while water trickles and frogs croak in the background",
"prompt": "I want to generate 'A man is speaking with rumbling in the background' followed by 'A young boy talking as a duck is quacking while water trickles and frogs croak in the background'."
},
"output": {}
},
{
"id": "tcta_011",
"input": {
"text": "Continuous quacking and rustling # A male voice talks after doing some burps",
"prompt": "I want to generate 'Continuous quacking and rustling' followed by 'A male voice talks after doing some burps'."
},
"output": {}
},
{
"id": "tcta_415",
"input": {
"text": "Young man speaking with slight movement sounds # Many insects are buzzing, and an adult male speaks",
"prompt": "I want to generate 'Young man speaking with slight movement sounds' followed by 'Many insects are buzzing, and an adult male speaks'."
},
"output": {}
},
{
"id": "tcta_022",
"input": {
"text": "A woman is speaking with people communicating in the background # Music followed by male speech and distant sizzling",
"prompt": "I want to generate 'A woman is speaking with people communicating in the background' followed by 'Music followed by male speech and distant sizzling'."
},
"output": {}
},
{
"id": "tcta_072",
"input": {
"text": "Humming of an idling engine # A vehicle engine is idling along with low crinkling noises and birds are chirping from a distance",
"prompt": "I want to generate 'Humming of an idling engine' followed by 'A vehicle engine is idling along with low crinkling noises and birds are chirping from a distance'."
},
"output": {}
},
{
"id": "tcta_182",
"input": {
"text": "Rustling with rattling followed by a man speaking # Birds chirp and a great number of insects buzz, an adult male speaks, and then a sharp thump occurs",
"prompt": "I want to generate 'Rustling with rattling followed by a man speaking' followed by 'Birds chirp and a great number of insects buzz, an adult male speaks, and then a sharp thump occurs'."
},
"output": {}
},
{
"id": "tcta_131",
"input": {
"text": "Female speech and rubbing simultaneously # A crowd murmuring with several belches followed by laughter",
"prompt": "I want to generate 'Female speech and rubbing simultaneously' followed by 'A crowd murmuring with several belches followed by laughter'."
},
"output": {}
},
{
"id": "tcta_410",
"input": {
"text": "Water running from a flushed toilet # Fire igniting followed by an electronic beep then footsteps running on concrete as vehicle engines run idle and horns honk in the background",
"prompt": "I want to generate 'Water running from a flushed toilet' followed by 'Fire igniting followed by an electronic beep then footsteps running on concrete as vehicle engines run idle and horns honk in the background'."
},
"output": {}
},
{
"id": "tcta_193",
"input": {
"text": "An aircraft engine operating # Low speech from a man followed by machine making a beeping noise",
"prompt": "I want to generate 'An aircraft engine operating' followed by 'Low speech from a man followed by machine making a beeping noise'."
},
"output": {}
},
{
"id": "tcta_055",
"input": {
"text": "A man is speaking followed by a beep and burping sound # Horse feet clopping and an engine running",
"prompt": "I want to generate 'A man is speaking followed by a beep and burping sound' followed by 'Horse feet clopping and an engine running'."
},
"output": {}
},
{
"id": "tcta_148",
"input": {
"text": "Dog whimpering and barking together with rustling # A long train whistle and a train chugging",
"prompt": "I want to generate 'Dog whimpering and barking together with rustling' followed by 'A long train whistle and a train chugging'."
},
"output": {}
},
{
"id": "tcta_018",
"input": {
"text": "People talking with the dull roar of a vehicle on the road # A flock of sheep baaing",
"prompt": "I want to generate 'People talking with the dull roar of a vehicle on the road' followed by 'A flock of sheep baaing'."
},
"output": {}
},
{
"id": "tcta_204",
"input": {
"text": "A baby cries as adults speak with clicking and banging of a car door # Wind is mixed with a musical tone",
"prompt": "I want to generate 'A baby cries as adults speak with clicking and banging of a car door' followed by 'Wind is mixed with a musical tone'."
},
"output": {}
},
{
"id": "tcta_078",
"input": {
"text": "Applause together with speech and hollering with running water in our he background # A man talking as an infant is crying followed by a man humming",
"prompt": "I want to generate 'Applause together with speech and hollering with running water in our he background' followed by 'A man talking as an infant is crying followed by a man humming'."
},
"output": {}
},
{
"id": "tcta_494",
"input": {
"text": "Birds chirping in the distance followed by people speaking and a camera click # A tool motor is humming, and metal whirring and grinding are occurring",
"prompt": "I want to generate 'Birds chirping in the distance followed by people speaking and a camera click' followed by 'A tool motor is humming, and metal whirring and grinding are occurring'."
},
"output": {}
},
{
"id": "tcta_262",
"input": {
"text": "An aircraft engine operates # Hissing sounds and bird chirping.",
"prompt": "I want to generate 'An aircraft engine operates' followed by 'Hissing sounds and bird chirping.'."
},
"output": {}
},
{
"id": "tcta_323",
"input": {
"text": "An inhale then a burp with girls speaking and laughing # A man talking followed by a toilet flushing",
"prompt": "I want to generate 'An inhale then a burp with girls speaking and laughing' followed by 'A man talking followed by a toilet flushing'."
},
"output": {}
},
{
"id": "tcta_483",
"input": {
"text": "Sputtering and humming of an engine # A baby cries with a humming engine and some faint clicking",
"prompt": "I want to generate 'Sputtering and humming of an engine' followed by 'A baby cries with a humming engine and some faint clicking'."
},
"output": {}
},
{
"id": "tcta_079",
"input": {
"text": "A person whistles to music # Tires squeal and an engine hums as a vehicle approaches",
"prompt": "I want to generate 'A person whistles to music' followed by 'Tires squeal and an engine hums as a vehicle approaches'."
},
"output": {}
},
{
"id": "tcta_039",
"input": {
"text": "A cat meowing followed by a goat screaming while a crowd of people talk in the background # A bus engine slowing down then accelerating",
"prompt": "I want to generate 'A cat meowing followed by a goat screaming while a crowd of people talk in the background' followed by 'A bus engine slowing down then accelerating'."
},
"output": {}
},
{
"id": "tcta_451",
"input": {
"text": "A man talking followed by a toilet flushing # High pitched humming with whooshes of spinning helicopter blades",
"prompt": "I want to generate 'A man talking followed by a toilet flushing' followed by 'High pitched humming with whooshes of spinning helicopter blades'."
},
"output": {}
},
{
"id": "tcta_046",
"input": {
"text": "A person is typing on a keyboard with some ruffling # A person burping followed by a group of people talking and laughing with a man talking in the foreground",
"prompt": "I want to generate 'A person is typing on a keyboard with some ruffling' followed by 'A person burping followed by a group of people talking and laughing with a man talking in the foreground'."
},
"output": {}
},
{
"id": "tcta_238",
"input": {
"text": "Brief silence followed by a man laughing # A train moving down railroad tracks",
"prompt": "I want to generate 'Brief silence followed by a man laughing' followed by 'A train moving down railroad tracks'."
},
"output": {}
},
{
"id": "tcta_391",
"input": {
"text": "A clock chiming # A crowd chants, an adult male speaks in the foreground, a member of the crowd shouts, and the adult male continues to speak",
"prompt": "I want to generate 'A clock chiming' followed by 'A crowd chants, an adult male speaks in the foreground, a member of the crowd shouts, and the adult male continues to speak'."
},
"output": {}
},
{
"id": "tcta_352",
"input": {
"text": "An appliance motor is running and obvious vibration and knocking are occurring, and an adult male and a child speak and the vibration continues, followed by an electronic beep # Typing is occurring on a keyboard in a quiet environment",
"prompt": "I want to generate 'An appliance motor is running and obvious vibration and knocking are occurring, and an adult male and a child speak and the vibration continues, followed by an electronic beep' followed by 'Typing is occurring on a keyboard in a quiet environment'."
},
"output": {}
},
{
"id": "tcta_341",
"input": {
"text": "A crowd of people talking followed by a vehicle engine revving then tires skidding # A paper is being crumpled",
"prompt": "I want to generate 'A crowd of people talking followed by a vehicle engine revving then tires skidding' followed by 'A paper is being crumpled'."
},
"output": {}
},
{
"id": "tcta_277",
"input": {
"text": "Typing on a computer keyboard # Insects trill in the background, while birds chirp and flies buzz",
"prompt": "I want to generate 'Typing on a computer keyboard' followed by 'Insects trill in the background, while birds chirp and flies buzz'."
},
"output": {}
},
{
"id": "tcta_290",
"input": {
"text": "Digital beeping with some clicks # A dog is panting in a very fast tempo while barking few times",
"prompt": "I want to generate 'Digital beeping with some clicks' followed by 'A dog is panting in a very fast tempo while barking few times'."
},
"output": {}
},
{
"id": "tcta_317",
"input": {
"text": "A sewing machines a sewing then suddenly stopping with some squeezing # An explosion and heart beating as instrumental music plays followed by a man talking",
"prompt": "I want to generate 'A sewing machines a sewing then suddenly stopping with some squeezing' followed by 'An explosion and heart beating as instrumental music plays followed by a man talking'."
},
"output": {}
},
{
"id": "tcta_304",
"input": {
"text": "Two women are talking, and a baby cries # Water gurgling followed by a toilet flushing then a footstep shuffling on a hard surface",
"prompt": "I want to generate 'Two women are talking, and a baby cries' followed by 'Water gurgling followed by a toilet flushing then a footstep shuffling on a hard surface'."
},
"output": {}
},
{
"id": "tcta_268",
"input": {
"text": "A man talking in the background as vehicles drive by # A bell chiming as a man is speaking in the background followed by a muffled bell chiming",
"prompt": "I want to generate 'A man talking in the background as vehicles drive by' followed by 'A bell chiming as a man is speaking in the background followed by a muffled bell chiming'."
},
"output": {}
},
{
"id": "tcta_069",
"input": {
"text": "A vehicle horn honking # A motorboat engine revving",
"prompt": "I want to generate 'A vehicle horn honking' followed by 'A motorboat engine revving'."
},
"output": {}
},
{
"id": "tcta_455",
"input": {
"text": "An adult male speaks while two metal clinks occur, then a small drill operates with whirring and slight grinding # Knocking noises followed by a machine sawing",
"prompt": "I want to generate 'An adult male speaks while two metal clinks occur, then a small drill operates with whirring and slight grinding' followed by 'Knocking noises followed by a machine sawing'."
},
"output": {}
},
{
"id": "tcta_465",
"input": {
"text": "Continuous digital beeps with a person speaking and bird chirping in the background # A boat is traveling while water is splashing with wind noise, and a man is speaking on a two-way radio",
"prompt": "I want to generate 'Continuous digital beeps with a person speaking and bird chirping in the background' followed by 'A boat is traveling while water is splashing with wind noise, and a man is speaking on a two-way radio'."
},
"output": {}
},
{
"id": "tcta_154",
"input": {
"text": "Males speaking and birds chirping # A man shouts followed by rapid gunfire",
"prompt": "I want to generate 'Males speaking and birds chirping' followed by 'A man shouts followed by rapid gunfire'."
},
"output": {}
},
{
"id": "tcta_082",
"input": {
"text": "Humming and revving of an engine with squealing tires as a car speeds past # A man talking as a sink faucet turns on and off twice as water sprays then drains down a pipe",
"prompt": "I want to generate 'Humming and revving of an engine with squealing tires as a car speeds past' followed by 'A man talking as a sink faucet turns on and off twice as water sprays then drains down a pipe'."
},
"output": {}
},
{
"id": "tcta_477",
"input": {
"text": "Water pouring into a glass container as a man faintly speaks in the background # A bus is driving, and people are speaking",
"prompt": "I want to generate 'Water pouring into a glass container as a man faintly speaks in the background' followed by 'A bus is driving, and people are speaking'."
},
"output": {}
},
{
"id": "tcta_172",
"input": {
"text": "A clock ticking and gears cranking # Water moving with male voices soft in the background",
"prompt": "I want to generate 'A clock ticking and gears cranking' followed by 'Water moving with male voices soft in the background'."
},
"output": {}
},
{
"id": "tcta_321",
"input": {
"text": "Several church bells ringing # High pitched continuous drilling that slows down",
"prompt": "I want to generate 'Several church bells ringing' followed by 'High pitched continuous drilling that slows down'."
},
"output": {}
},
{
"id": "tcta_090",
"input": {
"text": "Wind blowing heavily into a microphone as seagulls squawk and ocean waves crash in the background # Humming of an engine with squealing tires",
"prompt": "I want to generate 'Wind blowing heavily into a microphone as seagulls squawk and ocean waves crash in the background' followed by 'Humming of an engine with squealing tires'."
},
"output": {}
},
{
"id": "tcta_180",
"input": {
"text": "An engine idling and a man speaking # A man speaks with some mechanical humming and another man speaking faintly",
"prompt": "I want to generate 'An engine idling and a man speaking' followed by 'A man speaks with some mechanical humming and another man speaking faintly'."
},
"output": {}
},
{
"id": "tcta_414",
"input": {
"text": "Humming of a nearby jet engine # A car engine is revving while driving",
"prompt": "I want to generate 'Humming of a nearby jet engine' followed by 'A car engine is revving while driving'."
},
"output": {}
},
{
"id": "tcta_312",
"input": {
"text": "A water vehicle is traveling across water # Continuous basing and rustling",
"prompt": "I want to generate 'A water vehicle is traveling across water' followed by 'Continuous basing and rustling'."
},
"output": {}
},
{
"id": "tcta_278",
"input": {
"text": "Rattling of an engine with wind blowing and a horn honking # A man speaking as an idle motorboat engine runs and water trickles while wind blows into a microphone",
"prompt": "I want to generate 'Rattling of an engine with wind blowing and a horn honking' followed by 'A man speaking as an idle motorboat engine runs and water trickles while wind blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_381",
"input": {
"text": "A man briefly talks followed by a loud burst then laughter # A machine makes a constant rumbling noise",
"prompt": "I want to generate 'A man briefly talks followed by a loud burst then laughter' followed by 'A machine makes a constant rumbling noise'."
},
"output": {}
},
{
"id": "tcta_472",
"input": {
"text": "A race car races, and the engine accelerates # A woman talking followed by a kid talking while birds chirp in the background",
"prompt": "I want to generate 'A race car races, and the engine accelerates' followed by 'A woman talking followed by a kid talking while birds chirp in the background'."
},
"output": {}
},
{
"id": "tcta_362",
"input": {
"text": "A person talking softly before an infant cries # Rustling and distant sanding with nearby ticking and chiming from a coo clock",
"prompt": "I want to generate 'A person talking softly before an infant cries' followed by 'Rustling and distant sanding with nearby ticking and chiming from a coo clock'."
},
"output": {}
},
{
"id": "tcta_324",
"input": {
"text": "A man talking as a camera muffles followed by a loud explosion then a group of people laughing and talking # An infant crying followed by a child speaking in the background then a young woman talking",
"prompt": "I want to generate 'A man talking as a camera muffles followed by a loud explosion then a group of people laughing and talking' followed by 'An infant crying followed by a child speaking in the background then a young woman talking'."
},
"output": {}
},
{
"id": "tcta_431",
"input": {
"text": "A man speaks while operating a power tool # A baby is crying and a child speaks in the background, then an adult female speaks and the baby sobs",
"prompt": "I want to generate 'A man speaks while operating a power tool' followed by 'A baby is crying and a child speaks in the background, then an adult female speaks and the baby sobs'."
},
"output": {}
},
{
"id": "tcta_347",
"input": {
"text": "An engine running and then revving # Drilling noise loud and continue",
"prompt": "I want to generate 'An engine running and then revving' followed by 'Drilling noise loud and continue'."
},
"output": {}
},
{
"id": "tcta_086",
"input": {
"text": "An electronic signal followed by compressed air releasing then an electronic bell playing as a train runs on tracks in the background # Pigeons cooing followed by bird wings flapping",
"prompt": "I want to generate 'An electronic signal followed by compressed air releasing then an electronic bell playing as a train runs on tracks in the background' followed by 'Pigeons cooing followed by bird wings flapping'."
},
"output": {}
},
{
"id": "tcta_075",
"input": {
"text": "Dogs are barking with wind noise while people are speaking # A group of men speaking as cannons fire while rain falls and water splashes followed by thunder roaring",
"prompt": "I want to generate 'Dogs are barking with wind noise while people are speaking' followed by 'A group of men speaking as cannons fire while rain falls and water splashes followed by thunder roaring'."
},
"output": {}
},
{
"id": "tcta_438",
"input": {
"text": "A man yelling before and after a person belching # A bell sounds its horn",
"prompt": "I want to generate 'A man yelling before and after a person belching' followed by 'A bell sounds its horn'."
},
"output": {}
},
{
"id": "tcta_015",
"input": {
"text": "Plastic clanking followed by a person breathing aloud then liquid pouring into a container # Vibrating and humming from an idling engine",
"prompt": "I want to generate 'Plastic clanking followed by a person breathing aloud then liquid pouring into a container' followed by 'Vibrating and humming from an idling engine'."
},
"output": {}
},
{
"id": "tcta_249",
"input": {
"text": "A steam engine running on railroad tracks as steam hisses and metal clacking occur in the background # An adult male speaks in the foreground, and dogs are barking and people are talking in the background",
"prompt": "I want to generate 'A steam engine running on railroad tracks as steam hisses and metal clacking occur in the background' followed by 'An adult male speaks in the foreground, and dogs are barking and people are talking in the background'."
},
"output": {}
},
{
"id": "tcta_433",
"input": {
"text": "Vibrations from a sewing machine # A bird squawks followed by a dog whimpering",
"prompt": "I want to generate 'Vibrations from a sewing machine' followed by 'A bird squawks followed by a dog whimpering'."
},
"output": {}
},
{
"id": "tcta_019",
"input": {
"text": "Typing on a computer keyboard followed by a computer mouse clicking as a man sniffles before talking # A vehicle engine accelerating and plastic rattling",
"prompt": "I want to generate 'Typing on a computer keyboard followed by a computer mouse clicking as a man sniffles before talking' followed by 'A vehicle engine accelerating and plastic rattling'."
},
"output": {}
},
{
"id": "tcta_322",
"input": {
"text": "An electronic beep followed by a man talking # Wood shuffling and clanking followed by knocking on wood and leaves rustling as wind blows into a microphone and a crow caws in the background",
"prompt": "I want to generate 'An electronic beep followed by a man talking' followed by 'Wood shuffling and clanking followed by knocking on wood and leaves rustling as wind blows into a microphone and a crow caws in the background'."
},
"output": {}
},
{
"id": "tcta_332",
"input": {
"text": "Gunshots firing before and after a person loudly exhaling followed by a revolver chamber spinning as a heart beats and footsteps walking on a stone surface # A loud burping followed by a laughing from young girls",
"prompt": "I want to generate 'Gunshots firing before and after a person loudly exhaling followed by a revolver chamber spinning as a heart beats and footsteps walking on a stone surface' followed by 'A loud burping followed by a laughing from young girls'."
},
"output": {}
},
{
"id": "tcta_056",
"input": {
"text": "A telephone rings with bell sounds # An engine idling continuously",
"prompt": "I want to generate 'A telephone rings with bell sounds' followed by 'An engine idling continuously'."
},
"output": {}
},
{
"id": "tcta_301",
"input": {
"text": "Whistling and birds chirping back and forth # An adult male speaks while crunching footfalls occur, then a metal car door clicks open, slight rustling occurs, and metal clinks",
"prompt": "I want to generate 'Whistling and birds chirping back and forth' followed by 'An adult male speaks while crunching footfalls occur, then a metal car door clicks open, slight rustling occurs, and metal clinks'."
},
"output": {}
},
{
"id": "tcta_229",
"input": {
"text": "An aircraft engine running in the distance as wind blows into a microphone followed by a man talking in the background # An engine whines in the background as a man talks followed by a smack then a high pitched whistle before a woman speaks",
"prompt": "I want to generate 'An aircraft engine running in the distance as wind blows into a microphone followed by a man talking in the background' followed by 'An engine whines in the background as a man talks followed by a smack then a high pitched whistle before a woman speaks'."
},
"output": {}
},
{
"id": "tcta_331",
"input": {
"text": "Whistling a tune # Someone dials a push button phone melodically",
"prompt": "I want to generate 'Whistling a tune' followed by 'Someone dials a push button phone melodically'."
},
"output": {}
},
{
"id": "tcta_132",
"input": {
"text": "People are giggling, and a man speaks # Bird cooing then the sounds of wings flapping",
"prompt": "I want to generate 'People are giggling, and a man speaks' followed by 'Bird cooing then the sounds of wings flapping'."
},
"output": {}
},
{
"id": "tcta_137",
"input": {
"text": "Birds chirping and tweeting # A wooden thud as an idle car engine runs then accelerates",
"prompt": "I want to generate 'Birds chirping and tweeting' followed by 'A wooden thud as an idle car engine runs then accelerates'."
},
"output": {}
},
{
"id": "tcta_423",
"input": {
"text": "A toilet flushing # Male speaking softly with nature sounds in background",
"prompt": "I want to generate 'A toilet flushing' followed by 'Male speaking softly with nature sounds in background'."
},
"output": {}
},
{
"id": "tcta_335",
"input": {
"text": "A child laughs, a man speaks, and people laugh # A man speaking as a stream of water sprays and splashes",
"prompt": "I want to generate 'A child laughs, a man speaks, and people laugh' followed by 'A man speaking as a stream of water sprays and splashes'."
},
"output": {}
},
{
"id": "tcta_025",
"input": {
"text": "A sustained and coarse drilling noise # Bird cooing and wings flapping",
"prompt": "I want to generate 'A sustained and coarse drilling noise' followed by 'Bird cooing and wings flapping'."
},
"output": {}
},
{
"id": "tcta_464",
"input": {
"text": "Footsteps running on dirt followed by compressed air spraying as wind blows in the background # An engine running",
"prompt": "I want to generate 'Footsteps running on dirt followed by compressed air spraying as wind blows in the background' followed by 'An engine running'."
},
"output": {}
},
{
"id": "tcta_281",
"input": {
"text": "A gerbil squeaking during audio static # A wrapper crinkling and a woman's soft voice",
"prompt": "I want to generate 'A gerbil squeaking during audio static' followed by 'A wrapper crinkling and a woman's soft voice'."
},
"output": {}
},
{
"id": "tcta_247",
"input": {
"text": "Water running with clanking and children murmuring in the distance # Air spraying several times as a machine motor hums in the distance",
"prompt": "I want to generate 'Water running with clanking and children murmuring in the distance' followed by 'Air spraying several times as a machine motor hums in the distance'."
},
"output": {}
},
{
"id": "tcta_237",
"input": {
"text": "Music plays briefly and wind blows and birds sing in background # An adult female speaks in the foreground, while sizzling is ongoing and metal thumps occur",
"prompt": "I want to generate 'Music plays briefly and wind blows and birds sing in background' followed by 'An adult female speaks in the foreground, while sizzling is ongoing and metal thumps occur'."
},
"output": {}
},
{
"id": "tcta_117",
"input": {
"text": "A shrill beep followed by four clicks while low voices converse in the background # A man talking as plastic rattles while a truck engine runs idle and vehicles drive by in the background",
"prompt": "I want to generate 'A shrill beep followed by four clicks while low voices converse in the background' followed by 'A man talking as plastic rattles while a truck engine runs idle and vehicles drive by in the background'."
},
"output": {}
},
{
"id": "tcta_042",
"input": {
"text": "A motor engine is working far away and some boys talks then suddenly a loud eructation followed by laughs # Light rustling followed by faint ticks of a clock",
"prompt": "I want to generate 'A motor engine is working far away and some boys talks then suddenly a loud eructation followed by laughs' followed by 'Light rustling followed by faint ticks of a clock'."
},
"output": {}
},
{
"id": "tcta_220",
"input": {
"text": "Repetitive whoosh noises with a loud boom # A bell ticks with a thumping noise",
"prompt": "I want to generate 'Repetitive whoosh noises with a loud boom' followed by 'A bell ticks with a thumping noise'."
},
"output": {}
},
{
"id": "tcta_176",
"input": {
"text": "An emergency vehicle sounds sirens as a vehicle accelerates # A woman delivers a speech",
"prompt": "I want to generate 'An emergency vehicle sounds sirens as a vehicle accelerates' followed by 'A woman delivers a speech'."
},
"output": {}
},
{
"id": "tcta_320",
"input": {
"text": "Gunshots fire, an adult male speaks, footfalls and clicking occur as other adult males speak, gunshots fire again, an adult male speaks, and a dog growls # Duck quacking repeatedly",
"prompt": "I want to generate 'Gunshots fire, an adult male speaks, footfalls and clicking occur as other adult males speak, gunshots fire again, an adult male speaks, and a dog growls' followed by 'Duck quacking repeatedly'."
},
"output": {}
},
{
"id": "tcta_153",
"input": {
"text": "A man talking while a child talks and a person whistles followed by pigeons cooing and metal tapping and rattling # Whistling and humming with men speaking in the distance",
"prompt": "I want to generate 'A man talking while a child talks and a person whistles followed by pigeons cooing and metal tapping and rattling' followed by 'Whistling and humming with men speaking in the distance'."
},
"output": {}
},
{
"id": "tcta_231",
"input": {
"text": "A power tool sanding # Typing on a computer keyboard",
"prompt": "I want to generate 'A power tool sanding' followed by 'Typing on a computer keyboard'."
},
"output": {}
},
{
"id": "tcta_227",
"input": {
"text": "Water splashes followed by a girl speaking then scraping followed by spitting # A person laughing",
"prompt": "I want to generate 'Water splashes followed by a girl speaking then scraping followed by spitting' followed by 'A person laughing'."
},
"output": {}
},
{
"id": "tcta_417",
"input": {
"text": "Water trickling and dripping as a crowd of people talk in the background # A motorboat engine running idle as wind blows into a microphone while a man talks",
"prompt": "I want to generate 'Water trickling and dripping as a crowd of people talk in the background' followed by 'A motorboat engine running idle as wind blows into a microphone while a man talks'."
},
"output": {}
},
{
"id": "tcta_203",
"input": {
"text": "Gun shot then an explosion followed by male laughter # A man talks followed by laughter, and a woman and children communicate",
"prompt": "I want to generate 'Gun shot then an explosion followed by male laughter' followed by 'A man talks followed by laughter, and a woman and children communicate'."
},
"output": {}
},
{
"id": "tcta_126",
"input": {
"text": "Fire igniting as a motor runs followed by an electronic beep and vehicle engines running idle then car horns honking # A motorcycle engine starting up and revving as a man talks in the background",
"prompt": "I want to generate 'Fire igniting as a motor runs followed by an electronic beep and vehicle engines running idle then car horns honking' followed by 'A motorcycle engine starting up and revving as a man talks in the background'."
},
"output": {}
},
{
"id": "tcta_329",
"input": {
"text": "A small motor is running and whirring is present, then the motor stops and a whoosh occurs # A small motor is buzzing and water is running, splashing and gurgling",
"prompt": "I want to generate 'A small motor is running and whirring is present, then the motor stops and a whoosh occurs' followed by 'A small motor is buzzing and water is running, splashing and gurgling'."
},
"output": {}
},
{
"id": "tcta_031",
"input": {
"text": "A bird tweets far away and someone flushes the toilet # Rain falling outside",
"prompt": "I want to generate 'A bird tweets far away and someone flushes the toilet' followed by 'Rain falling outside'."
},
"output": {}
},
{
"id": "tcta_113",
"input": {
"text": "A male speech and then repeated gunfire followed by a male speech. # A sewing machine operating several times followed by metal clanking",
"prompt": "I want to generate 'A male speech and then repeated gunfire followed by a male speech.' followed by 'A sewing machine operating several times followed by metal clanking'."
},
"output": {}
},
{
"id": "tcta_470",
"input": {
"text": "A man speaks followed by bursts of hissing # Music playing through a television speaker followed by a series of plastic clicking while white noise hisses",
"prompt": "I want to generate 'A man speaks followed by bursts of hissing' followed by 'Music playing through a television speaker followed by a series of plastic clicking while white noise hisses'."
},
"output": {}
},
{
"id": "tcta_271",
"input": {
"text": "Clicking on a computer keyboard # A woman and man talk on the phone",
"prompt": "I want to generate 'Clicking on a computer keyboard' followed by 'A woman and man talk on the phone'."
},
"output": {}
},
{
"id": "tcta_140",
"input": {
"text": "Emergency horns go off as a truck accelerates and drives by # A motor vehicle speeds and skids the tires",
"prompt": "I want to generate 'Emergency horns go off as a truck accelerates and drives by' followed by 'A motor vehicle speeds and skids the tires'."
},
"output": {}
},
{
"id": "tcta_057",
"input": {
"text": "Digital beeping followed by rapid vibrations and humming # A fire truck sounds the siren as it travels",
"prompt": "I want to generate 'Digital beeping followed by rapid vibrations and humming' followed by 'A fire truck sounds the siren as it travels'."
},
"output": {}
},
{
"id": "tcta_192",
"input": {
"text": "Small child crying followed by the child blowing their nose # A woman and a child is communicating, and birds chirp",
"prompt": "I want to generate 'Small child crying followed by the child blowing their nose' followed by 'A woman and a child is communicating, and birds chirp'."
},
"output": {}
},
{
"id": "tcta_024",
"input": {
"text": "A person snoring with another man speaking # Thunder and a gentle rain",
"prompt": "I want to generate 'A person snoring with another man speaking' followed by 'Thunder and a gentle rain'."
},
"output": {}
},
{
"id": "tcta_017",
"input": {
"text": "A baby cries and women speak # A motorboat engine running and a man speaking",
"prompt": "I want to generate 'A baby cries and women speak' followed by 'A motorboat engine running and a man speaking'."
},
"output": {}
},
{
"id": "tcta_265",
"input": {
"text": "Pigeons coo and flap their wings and a distant rooster crows # Water splashes and wind blows as men speak",
"prompt": "I want to generate 'Pigeons coo and flap their wings and a distant rooster crows' followed by 'Water splashes and wind blows as men speak'."
},
"output": {}
},
{
"id": "tcta_066",
"input": {
"text": "Rustling followed by whistling then birds chirping # Brief speech followed by whistling a tune",
"prompt": "I want to generate 'Rustling followed by whistling then birds chirping' followed by 'Brief speech followed by whistling a tune'."
},
"output": {}
},
{
"id": "tcta_208",
"input": {
"text": "A man speaks as birds call and pigeons coo # A chainsaw cutting as wood cracks and creaks",
"prompt": "I want to generate 'A man speaks as birds call and pigeons coo' followed by 'A chainsaw cutting as wood cracks and creaks'."
},
"output": {}
},
{
"id": "tcta_479",
"input": {
"text": "Train blows horn twice as it speeds down the tracks # Two instances of bird wings flapping while frogs are croaking",
"prompt": "I want to generate 'Train blows horn twice as it speeds down the tracks' followed by 'Two instances of bird wings flapping while frogs are croaking'."
},
"output": {}
},
{
"id": "tcta_094",
"input": {
"text": "A baby cries and a small child speaks # A series of sharp, squeaky snoring noises",
"prompt": "I want to generate 'A baby cries and a small child speaks' followed by 'A series of sharp, squeaky snoring noises'."
},
"output": {}
},
{
"id": "tcta_253",
"input": {
"text": "A bell chiming as a clock is ticking # Ocean waves crashing as wind blows into a microphone",
"prompt": "I want to generate 'A bell chiming as a clock is ticking' followed by 'Ocean waves crashing as wind blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_266",
"input": {
"text": "Sirens ring and a vehicle speeds closer # Bells ringing a tune",
"prompt": "I want to generate 'Sirens ring and a vehicle speeds closer' followed by 'Bells ringing a tune'."
},
"output": {}
},
{
"id": "tcta_023",
"input": {
"text": "A woman talking while a group of children shout and talk in the background # A man speaks, a power tool starts and increases in frequency, a clunking noise",
"prompt": "I want to generate 'A woman talking while a group of children shout and talk in the background' followed by 'A man speaks, a power tool starts and increases in frequency, a clunking noise'."
},
"output": {}
},
{
"id": "tcta_222",
"input": {
"text": "A liquid gurgles as it drains # An infant makes babbling noise followed by crying",
"prompt": "I want to generate 'A liquid gurgles as it drains' followed by 'An infant makes babbling noise followed by crying'."
},
"output": {}
},
{
"id": "tcta_261",
"input": {
"text": "Male speech and a goat bleating # A motor boat idling then taking off",
"prompt": "I want to generate 'Male speech and a goat bleating' followed by 'A motor boat idling then taking off'."
},
"output": {}
},
{
"id": "tcta_426",
"input": {
"text": "A race car engine is idling and then the car accelerates away quickly # A sheep is bleating and a crowd is murmuring",
"prompt": "I want to generate 'A race car engine is idling and then the car accelerates away quickly' followed by 'A sheep is bleating and a crowd is murmuring'."
},
"output": {}
},
{
"id": "tcta_005",
"input": {
"text": "A woman speaks, then a phone chimes, then there is a burp followed by laughter # Audio static followed by a man laughing before an electronic device motor slides then an infant cries",
"prompt": "I want to generate 'A woman speaks, then a phone chimes, then there is a burp followed by laughter' followed by 'Audio static followed by a man laughing before an electronic device motor slides then an infant cries'."
},
"output": {}
},
{
"id": "tcta_116",
"input": {
"text": "Electrical humming with wind blowing # Birds chirp and a duck quacks followed by a dog barking",
"prompt": "I want to generate 'Electrical humming with wind blowing' followed by 'Birds chirp and a duck quacks followed by a dog barking'."
},
"output": {}
},
{
"id": "tcta_045",
"input": {
"text": "A motorboat engine running and water splashing then fading away as instrumental music plays and a crowd of people talk # Rain falling with thunder in the distance",
"prompt": "I want to generate 'A motorboat engine running and water splashing then fading away as instrumental music plays and a crowd of people talk' followed by 'Rain falling with thunder in the distance'."
},
"output": {}
},
{
"id": "tcta_016",
"input": {
"text": "Woosh of air and loud snoring # A female voice crying followed by a person speaking",
"prompt": "I want to generate 'Woosh of air and loud snoring' followed by 'A female voice crying followed by a person speaking'."
},
"output": {}
},
{
"id": "tcta_462",
"input": {
"text": "A toy helicopter flying as wind blows into a microphone # Whistling with pigeons cooing, wings flapping, and birds chirping",
"prompt": "I want to generate 'A toy helicopter flying as wind blows into a microphone' followed by 'Whistling with pigeons cooing, wings flapping, and birds chirping'."
},
"output": {}
},
{
"id": "tcta_357",
"input": {
"text": "Faint snoring and gurgling # A man speaking while water is spraying into a sink and draining",
"prompt": "I want to generate 'Faint snoring and gurgling' followed by 'A man speaking while water is spraying into a sink and draining'."
},
"output": {}
},
{
"id": "tcta_003",
"input": {
"text": "A series of train horns honking as birds chirp and a man talks in the background # A high pitched bell rings rapidly",
"prompt": "I want to generate 'A series of train horns honking as birds chirp and a man talks in the background' followed by 'A high pitched bell rings rapidly'."
},
"output": {}
},
{
"id": "tcta_218",
"input": {
"text": "A man is speaking as birds are chirping # Several pigeons cooing and flapping wings repeatedly",
"prompt": "I want to generate 'A man is speaking as birds are chirping' followed by 'Several pigeons cooing and flapping wings repeatedly'."
},
"output": {}
},
{
"id": "tcta_405",
"input": {
"text": "Birds chirping with an animal clicking and calling out as crickets chirp # A man is talking while plastic clacks followed by a popping explosion then a group of people talking and laughing",
"prompt": "I want to generate 'Birds chirping with an animal clicking and calling out as crickets chirp' followed by 'A man is talking while plastic clacks followed by a popping explosion then a group of people talking and laughing'."
},
"output": {}
},
{
"id": "tcta_060",
"input": {
"text": "Clickety clanking followed by a horn honking loudly # A man is speaking outside with wind noise",
"prompt": "I want to generate 'Clickety clanking followed by a horn honking loudly' followed by 'A man is speaking outside with wind noise'."
},
"output": {}
},
{
"id": "tcta_110",
"input": {
"text": "A mid-size motor vehicle engine is running and accelerating, tires squeal, and hissing occurs # Frogs croak near and far with chirping distant bugs",
"prompt": "I want to generate 'A mid-size motor vehicle engine is running and accelerating, tires squeal, and hissing occurs' followed by 'Frogs croak near and far with chirping distant bugs'."
},
"output": {}
},
{
"id": "tcta_318",
"input": {
"text": "Footsteps running on a hard surface followed by liquid spraying then an animal growling as static plays in the background # Plastic tapping as a person is snoring",
"prompt": "I want to generate 'Footsteps running on a hard surface followed by liquid spraying then an animal growling as static plays in the background' followed by 'Plastic tapping as a person is snoring'."
},
"output": {}
},
{
"id": "tcta_428",
"input": {
"text": "A rustling followed by a soulful whistling # Young child speaking with giggling",
"prompt": "I want to generate 'A rustling followed by a soulful whistling' followed by 'Young child speaking with giggling'."
},
"output": {}
},
{
"id": "tcta_029",
"input": {
"text": "A dog snoring and gurgling followed by paper sliding # A toilet flushes as a bird chirps in the distance followed by a man speaking in the background",
"prompt": "I want to generate 'A dog snoring and gurgling followed by paper sliding' followed by 'A toilet flushes as a bird chirps in the distance followed by a man speaking in the background'."
},
"output": {}
},
{
"id": "tcta_437",
"input": {
"text": "A vehicle's engine starts to die down # Child talking then door crashing and her screaming",
"prompt": "I want to generate 'A vehicle's engine starts to die down' followed by 'Child talking then door crashing and her screaming'."
},
"output": {}
},
{
"id": "tcta_471",
"input": {
"text": "Bird cheeping is ongoing, intermittent soft clucking and trilling is present, and a crow caws once # A vehicle engine running and children speaking",
"prompt": "I want to generate 'Bird cheeping is ongoing, intermittent soft clucking and trilling is present, and a crow caws once' followed by 'A vehicle engine running and children speaking'."
},
"output": {}
},
{
"id": "tcta_026",
"input": {
"text": "Loud hissing followed by a loud continuous horn and brief clanking # A man is speaking with wind background noise, and a child speaks",
"prompt": "I want to generate 'Loud hissing followed by a loud continuous horn and brief clanking' followed by 'A man is speaking with wind background noise, and a child speaks'."
},
"output": {}
},
{
"id": "tcta_007",
"input": {
"text": "A door slamming shut # Loud rustling and the chop of a helicopter blade",
"prompt": "I want to generate 'A door slamming shut' followed by 'Loud rustling and the chop of a helicopter blade'."
},
"output": {}
},
{
"id": "tcta_453",
"input": {
"text": "Several slight bangs occur during a constant ticktock # A steam engine running on railroad tracks as steam releases and hisses",
"prompt": "I want to generate 'Several slight bangs occur during a constant ticktock' followed by 'A steam engine running on railroad tracks as steam releases and hisses'."
},
"output": {}
},
{
"id": "tcta_108",
"input": {
"text": "A woman talks as a baby cries # Vibrations from a sewing machine with clicking",
"prompt": "I want to generate 'A woman talks as a baby cries' followed by 'Vibrations from a sewing machine with clicking'."
},
"output": {}
},
{
"id": "tcta_037",
"input": {
"text": "An engine running and a beeping sound # A ticktock noise from a bell",
"prompt": "I want to generate 'An engine running and a beeping sound' followed by 'A ticktock noise from a bell'."
},
"output": {}
},
{
"id": "tcta_157",
"input": {
"text": "People talking while herding goats near a fast running stream # A large bell rings out multiple times",
"prompt": "I want to generate 'People talking while herding goats near a fast running stream' followed by 'A large bell rings out multiple times'."
},
"output": {}
},
{
"id": "tcta_489",
"input": {
"text": "A man shrilling followed by a power tool drilling and a man screaming as liquid splatters # A baby laughs and a woman speaks",
"prompt": "I want to generate 'A man shrilling followed by a power tool drilling and a man screaming as liquid splatters' followed by 'A baby laughs and a woman speaks'."
},
"output": {}
},
{
"id": "tcta_118",
"input": {
"text": "A boat motor runs fast and water splashes at regular intervals, then it fades and the wind is blowing # High frequency humming followed by a smack",
"prompt": "I want to generate 'A boat motor runs fast and water splashes at regular intervals, then it fades and the wind is blowing' followed by 'High frequency humming followed by a smack'."
},
"output": {}
},
{
"id": "tcta_114",
"input": {
"text": "Much gunfire and guns clicking while people talk in the background # A stream of water trickling and splashing while a man talks over a radio alongside wind blowing into a microphone",
"prompt": "I want to generate 'Much gunfire and guns clicking while people talk in the background' followed by 'A stream of water trickling and splashing while a man talks over a radio alongside wind blowing into a microphone'."
},
"output": {}
},
{
"id": "tcta_175",
"input": {
"text": "A train emits the steam whistle sound with a hissing noise # A siren is wailing and an engine is running followed by a male voice.",
"prompt": "I want to generate 'A train emits the steam whistle sound with a hissing noise' followed by 'A siren is wailing and an engine is running followed by a male voice.'."
},
"output": {}
},
{
"id": "tcta_373",
"input": {
"text": "A man talking as an idle motorboat engine runs and water trickles while wind is blowing into a microphone # Sheep baaing with young female voice and wind gusts",
"prompt": "I want to generate 'A man talking as an idle motorboat engine runs and water trickles while wind is blowing into a microphone' followed by 'Sheep baaing with young female voice and wind gusts'."
},
"output": {}
},
{
"id": "tcta_181",
"input": {
"text": "An engine running # A speedboat is racing across water with loud wind noise",
"prompt": "I want to generate 'An engine running' followed by 'A speedboat is racing across water with loud wind noise'."
},
"output": {}
},
{
"id": "tcta_144",
"input": {
"text": "Water trickling as a motorboat engine runs and wind blows on a microphone # Burping and laughing by girls with distant speaking of a television",
"prompt": "I want to generate 'Water trickling as a motorboat engine runs and wind blows on a microphone' followed by 'Burping and laughing by girls with distant speaking of a television'."
},
"output": {}
},
{
"id": "tcta_369",
"input": {
"text": "Typing on a computer keyboard # Two men communicating with each other followed by plastic clacking then a power tool drilling as wind softly blows into a microphone",
"prompt": "I want to generate 'Typing on a computer keyboard' followed by 'Two men communicating with each other followed by plastic clacking then a power tool drilling as wind softly blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_390",
"input": {
"text": "A man speaks with some high pitched ringing and some rustling # An explosion followed by a man shouting.",
"prompt": "I want to generate 'A man speaks with some high pitched ringing and some rustling' followed by 'An explosion followed by a man shouting.'."
},
"output": {}
},
{
"id": "tcta_195",
"input": {
"text": "A vehicle accelerates and then slows down # A person is snoring",
"prompt": "I want to generate 'A vehicle accelerates and then slows down' followed by 'A person is snoring'."
},
"output": {}
},
{
"id": "tcta_404",
"input": {
"text": "A group of children talking as a woman laughs then speaks followed by a young boy talking # A man speaks as rain falls and distant thunder roars",
"prompt": "I want to generate 'A group of children talking as a woman laughs then speaks followed by a young boy talking' followed by 'A man speaks as rain falls and distant thunder roars'."
},
"output": {}
},
{
"id": "tcta_275",
"input": {
"text": "Sustained industrial sawing noise # Music is playing, people are talking and a frog croaks",
"prompt": "I want to generate 'Sustained industrial sawing noise' followed by 'Music is playing, people are talking and a frog croaks'."
},
"output": {}
},
{
"id": "tcta_454",
"input": {
"text": "A vehicle engine stalling then starting up and running idle # A car meows and a woman speaks",
"prompt": "I want to generate 'A vehicle engine stalling then starting up and running idle' followed by 'A car meows and a woman speaks'."
},
"output": {}
},
{
"id": "tcta_141",
"input": {
"text": "A dog snoring loudly # A crowd of people applauding and cheering",
"prompt": "I want to generate 'A dog snoring loudly' followed by 'A crowd of people applauding and cheering'."
},
"output": {}
},
{
"id": "tcta_365",
"input": {
"text": "A fan sound and a tapping noise # A male speaking over a microphone",
"prompt": "I want to generate 'A fan sound and a tapping noise' followed by 'A male speaking over a microphone'."
},
"output": {}
},
{
"id": "tcta_067",
"input": {
"text": "Water trickling several times # A child cries continually, while a motor vehicle engine runs quietly and several adult females and adult males speak",
"prompt": "I want to generate 'Water trickling several times' followed by 'A child cries continually, while a motor vehicle engine runs quietly and several adult females and adult males speak'."
},
"output": {}
},
{
"id": "tcta_210",
"input": {
"text": "A man speaking followed by a crowd of people applauding and cheering # Birds chirping as insects buzzing followed by a man talking in the distance",
"prompt": "I want to generate 'A man speaking followed by a crowd of people applauding and cheering' followed by 'Birds chirping as insects buzzing followed by a man talking in the distance'."
},
"output": {}
},
{
"id": "tcta_168",
"input": {
"text": "Two young girls speaks with distant clop-clops followed by a loud gasp from a crowd # Running then spraying",
"prompt": "I want to generate 'Two young girls speaks with distant clop-clops followed by a loud gasp from a crowd' followed by 'Running then spraying'."
},
"output": {}
},
{
"id": "tcta_493",
"input": {
"text": "A baby laughs each time as another older child speaks # A man talking during camera muffling followed by water gurgling in a drain then a toilet flushing",
"prompt": "I want to generate 'A baby laughs each time as another older child speaks' followed by 'A man talking during camera muffling followed by water gurgling in a drain then a toilet flushing'."
},
"output": {}
},
{
"id": "tcta_375",
"input": {
"text": "A high pitched engine running consistently with intermittent scraping # 'A power tool vibrating with men speaking",
"prompt": "I want to generate 'A high pitched engine running consistently with intermittent scraping' followed by ''A power tool vibrating with men speaking'."
},
"output": {}
},
{
"id": "tcta_400",
"input": {
"text": "Wind blows and waves crash with distant humming # Female speech followed by a thumping noise",
"prompt": "I want to generate 'Wind blows and waves crash with distant humming' followed by 'Female speech followed by a thumping noise'."
},
"output": {}
},
{
"id": "tcta_272",
"input": {
"text": "Loud clicking machine noises that revs up and down # A vehicle engine idles and birds chirp in the background",
"prompt": "I want to generate 'Loud clicking machine noises that revs up and down' followed by 'A vehicle engine idles and birds chirp in the background'."
},
"output": {}
},
{
"id": "tcta_109",
"input": {
"text": "A power tool motor running then revving # Humming of powerful engines",
"prompt": "I want to generate 'A power tool motor running then revving' followed by 'Humming of powerful engines'."
},
"output": {}
},
{
"id": "tcta_248",
"input": {
"text": "A woman talking followed by a toilet flushing while a kid talks # A man speaks as a motorcycle accelerates",
"prompt": "I want to generate 'A woman talking followed by a toilet flushing while a kid talks' followed by 'A man speaks as a motorcycle accelerates'."
},
"output": {}
},
{
"id": "tcta_145",
"input": {
"text": "A motor vehicle is skidding its tires # A vehicle engine revving then accelerating at a high rate as wind blows heavily into a microphone",
"prompt": "I want to generate 'A motor vehicle is skidding its tires' followed by 'A vehicle engine revving then accelerating at a high rate as wind blows heavily into a microphone'."
},
"output": {}
},
{
"id": "tcta_092",
"input": {
"text": "A child whining and crying # Thunderstorm sounds while raining",
"prompt": "I want to generate 'A child whining and crying' followed by 'Thunderstorm sounds while raining'."
},
"output": {}
},
{
"id": "tcta_152",
"input": {
"text": "A loud horn honking followed by a bell ringing together with clickety-clacking train passing by # A vehicle engine revving several times as a crowd of people talk",
"prompt": "I want to generate 'A loud horn honking followed by a bell ringing together with clickety-clacking train passing by' followed by 'A vehicle engine revving several times as a crowd of people talk'."
},
"output": {}
},
{
"id": "tcta_367",
"input": {
"text": "Beeping sound with person talking in the background # Humming of a loud engine with a woman speaking over a loudspeaker",
"prompt": "I want to generate 'Beeping sound with person talking in the background' followed by 'Humming of a loud engine with a woman speaking over a loudspeaker'."
},
"output": {}
},
{
"id": "tcta_467",
"input": {
"text": "A power drill running followed by drilling noises and human screaming # A male voice speaking",
"prompt": "I want to generate 'A power drill running followed by drilling noises and human screaming' followed by 'A male voice speaking'."
},
"output": {}
},
{
"id": "tcta_083",
"input": {
"text": "Whimpering of several small dogs # Vibrations and wind with loud humming of an engine",
"prompt": "I want to generate 'Whimpering of several small dogs' followed by 'Vibrations and wind with loud humming of an engine'."
},
"output": {}
},
{
"id": "tcta_245",
"input": {
"text": "A person making noises and screaming # A man speaking in the background as another man speaks in the foreground followed by a crowd of people applauding",
"prompt": "I want to generate 'A person making noises and screaming' followed by 'A man speaking in the background as another man speaks in the foreground followed by a crowd of people applauding'."
},
"output": {}
},
{
"id": "tcta_165",
"input": {
"text": "A train running on railroad tracks followed by a train horn honking and railroad signal bells chiming # Humming of a large truck engine with blowing wind",
"prompt": "I want to generate 'A train running on railroad tracks followed by a train horn honking and railroad signal bells chiming' followed by 'Humming of a large truck engine with blowing wind'."
},
"output": {}
},
{
"id": "tcta_163",
"input": {
"text": "A goat bleating with people speaking # Footsteps shuffling as a person snores",
"prompt": "I want to generate 'A goat bleating with people speaking' followed by 'Footsteps shuffling as a person snores'."
},
"output": {}
},
{
"id": "tcta_199",
"input": {
"text": "Emergency vehicle siren passing by then fading # Typing on a keyboard",
"prompt": "I want to generate 'Emergency vehicle siren passing by then fading' followed by 'Typing on a keyboard'."
},
"output": {}
},
{
"id": "tcta_228",
"input": {
"text": "A few gunshots followed by a man speaking # A toilet flushes and water drains",
"prompt": "I want to generate 'A few gunshots followed by a man speaking' followed by 'A toilet flushes and water drains'."
},
"output": {}
},
{
"id": "tcta_074",
"input": {
"text": "Women talk over sizzling and clanking, motor sound in the distance # A man talking as a swarm of insects are buzzing",
"prompt": "I want to generate 'Women talk over sizzling and clanking, motor sound in the distance' followed by 'A man talking as a swarm of insects are buzzing'."
},
"output": {}
},
{
"id": "tcta_478",
"input": {
"text": "A man speaks, and a crowd applauds # A woman speaking on a microphone as a kid yells in the distance with periodic audio static clicks",
"prompt": "I want to generate 'A man speaks, and a crowd applauds' followed by 'A woman speaking on a microphone as a kid yells in the distance with periodic audio static clicks'."
},
"output": {}
},
{
"id": "tcta_358",
"input": {
"text": "Baby cries and then man speaks # A small motor is running, five hisses and a meow occur, then five more hisses and a meow occur",
"prompt": "I want to generate 'Baby cries and then man speaks' followed by 'A small motor is running, five hisses and a meow occur, then five more hisses and a meow occur'."
},
"output": {}
},
{
"id": "tcta_250",
"input": {
"text": "Wind blowing followed by a scream with people speaking faintly in the distance # A person speaks and then a loud click occurs",
"prompt": "I want to generate 'Wind blowing followed by a scream with people speaking faintly in the distance' followed by 'A person speaks and then a loud click occurs'."
},
"output": {}
},
{
"id": "tcta_119",
"input": {
"text": "A female child speaks in a quiet environment # A toilet flushing",
"prompt": "I want to generate 'A female child speaks in a quiet environment' followed by 'A toilet flushing'."
},
"output": {}
},
{
"id": "tcta_310",
"input": {
"text": "Wind blowing with ducks quacking and birds chirping # Rapid filing and scraping of wood occurs, followed by brushing and a thump",
"prompt": "I want to generate 'Wind blowing with ducks quacking and birds chirping' followed by 'Rapid filing and scraping of wood occurs, followed by brushing and a thump'."
},
"output": {}
},
{
"id": "tcta_299",
"input": {
"text": "Revving of a motorcycle with a man speaking # Music plays continuously along with swooshing followed by a man speaking quickly",
"prompt": "I want to generate 'Revving of a motorcycle with a man speaking' followed by 'Music plays continuously along with swooshing followed by a man speaking quickly'."
},
"output": {}
},
{
"id": "tcta_255",
"input": {
"text": "In an echoing space, an older man speaks loudly, followed by enthusiastic applause # A man speaks with some distant hum and a child speaking",
"prompt": "I want to generate 'In an echoing space, an older man speaks loudly, followed by enthusiastic applause' followed by 'A man speaks with some distant hum and a child speaking'."
},
"output": {}
},
{
"id": "tcta_354",
"input": {
"text": "A door creaking open followed by wind blowing and leaves rustling then a cat meowing # A man yelling very loudly while speaking",
"prompt": "I want to generate 'A door creaking open followed by wind blowing and leaves rustling then a cat meowing' followed by 'A man yelling very loudly while speaking'."
},
"output": {}
},
{
"id": "tcta_399",
"input": {
"text": "A man speaks with some humming and birds chirping # A person whistling followed by a young woman singing",
"prompt": "I want to generate 'A man speaks with some humming and birds chirping' followed by 'A person whistling followed by a young woman singing'."
},
"output": {}
},
{
"id": "tcta_225",
"input": {
"text": "A woman shrieking and laughing, followed by a man laughing in the background, and a woman speaks a few words # A male speaking and shoes squeaking after a swoosh",
"prompt": "I want to generate 'A woman shrieking and laughing, followed by a man laughing in the background, and a woman speaks a few words' followed by 'A male speaking and shoes squeaking after a swoosh'."
},
"output": {}
},
{
"id": "tcta_353",
"input": {
"text": "A telephone dialing tone followed by a plastic switch flipping # Repeated scraping with faint music in the background",
"prompt": "I want to generate 'A telephone dialing tone followed by a plastic switch flipping' followed by 'Repeated scraping with faint music in the background'."
},
"output": {}
},
{
"id": "tcta_234",
"input": {
"text": "A clock ticks repeatedly # A woman laughing followed by the bleating of sheep and a soft breeze",
"prompt": "I want to generate 'A clock ticks repeatedly' followed by 'A woman laughing followed by the bleating of sheep and a soft breeze'."
},
"output": {}
},
{
"id": "tcta_382",
"input": {
"text": "A couple of horses are slowly walking in unison # People speaking faintly with some humming and a hydraulic hiss",
"prompt": "I want to generate 'A couple of horses are slowly walking in unison' followed by 'People speaking faintly with some humming and a hydraulic hiss'."
},
"output": {}
},
{
"id": "tcta_274",
"input": {
"text": "Constant rattling noise and sharp vibrations # A rocket flies by followed by a loud explosion and fire crackling as a truck engine runs idle",
"prompt": "I want to generate 'Constant rattling noise and sharp vibrations' followed by 'A rocket flies by followed by a loud explosion and fire crackling as a truck engine runs idle'."
},
"output": {}
},
{
"id": "tcta_036",
"input": {
"text": "A clock ticks, and an object is tapped # A cup is filled from a faucet",
"prompt": "I want to generate 'A clock ticks, and an object is tapped' followed by 'A cup is filled from a faucet'."
},
"output": {}
},
{
"id": "tcta_196",
"input": {
"text": "A girl speaks followed by barking then a splash and laughter # A girl giving a speech",
"prompt": "I want to generate 'A girl speaks followed by barking then a splash and laughter' followed by 'A girl giving a speech'."
},
"output": {}
},
{
"id": "tcta_139",
"input": {
"text": "Rustling and then a machine operating # Humming of an engine with rapid gunshots",
"prompt": "I want to generate 'Rustling and then a machine operating' followed by 'Humming of an engine with rapid gunshots'."
},
"output": {}
},
{
"id": "tcta_364",
"input": {
"text": "A girl speaks while rain pitter-patters followed by male sneezing # A toilet flushing followed by a person speaking in the distance as birds chirp in the background",
"prompt": "I want to generate 'A girl speaks while rain pitter-patters followed by male sneezing' followed by 'A toilet flushing followed by a person speaking in the distance as birds chirp in the background'."
},
"output": {}
},
{
"id": "tcta_244",
"input": {
"text": "Goats are bleating with other natural outdoor noises # A train passes and then a horn honks",
"prompt": "I want to generate 'Goats are bleating with other natural outdoor noises' followed by 'A train passes and then a horn honks'."
},
"output": {}
},
{
"id": "tcta_439",
"input": {
"text": "Sheep bleating with a baby sheep baaing # Speech and then a pop and laughter",
"prompt": "I want to generate 'Sheep bleating with a baby sheep baaing' followed by 'Speech and then a pop and laughter'."
},
"output": {}
},
{
"id": "tcta_286",
"input": {
"text": "Woman speaks, girl speaks, clapping, croaking noise interrupts, followed by laughter # A loud, long explosion",
"prompt": "I want to generate 'Woman speaks, girl speaks, clapping, croaking noise interrupts, followed by laughter' followed by 'A loud, long explosion'."
},
"output": {}
},
{
"id": "tcta_059",
"input": {
"text": "A woman whispering then talking normally after an infant cries followed by a man shouting # Wood lightly shuffling as insects buzz and birds chirp in the background",
"prompt": "I want to generate 'A woman whispering then talking normally after an infant cries followed by a man shouting' followed by 'Wood lightly shuffling as insects buzz and birds chirp in the background'."
},
"output": {}
},
{
"id": "tcta_111",
"input": {
"text": "Rhythmic oinking is followed by repeated short squeaks, then more oinking # A whooshing effect followed by a robotic woman speaking and electronic beeps then a man speaking and music playing along with a man speaking through an intercom",
"prompt": "I want to generate 'Rhythmic oinking is followed by repeated short squeaks, then more oinking' followed by 'A whooshing effect followed by a robotic woman speaking and electronic beeps then a man speaking and music playing along with a man speaking through an intercom'."
},
"output": {}
},
{
"id": "tcta_089",
"input": {
"text": "Birds chirping and water trickling # A person clapping followed by a dog barking then wood clanking as birds chirp and gusts of wind blow in the background",
"prompt": "I want to generate 'Birds chirping and water trickling' followed by 'A person clapping followed by a dog barking then wood clanking as birds chirp and gusts of wind blow in the background'."
},
"output": {}
},
{
"id": "tcta_436",
"input": {
"text": "Chirps and croaks of different frogs near and far # An aircraft is moving with low speech of people talking",
"prompt": "I want to generate 'Chirps and croaks of different frogs near and far' followed by 'An aircraft is moving with low speech of people talking'."
},
"output": {}
},
{
"id": "tcta_006",
"input": {
"text": "A truck engine revving followed by tires skidding as a crowd of people talk in the background # A toy helicopter flying then powering down before powering up",
"prompt": "I want to generate 'A truck engine revving followed by tires skidding as a crowd of people talk in the background' followed by 'A toy helicopter flying then powering down before powering up'."
},
"output": {}
},
{
"id": "tcta_360",
"input": {
"text": "Clicking on a keyboard with a man speaking # A toilet flushing water as music plays in the background",
"prompt": "I want to generate 'Clicking on a keyboard with a man speaking' followed by 'A toilet flushing water as music plays in the background'."
},
"output": {}
},
{
"id": "tcta_346",
"input": {
"text": "Wind blows hard and a motor hums in the distance # Drums and music playing with a man speaking",
"prompt": "I want to generate 'Wind blows hard and a motor hums in the distance' followed by 'Drums and music playing with a man speaking'."
},
"output": {}
},
{
"id": "tcta_338",
"input": {
"text": "Rain and thunder # Crying and then a sneeze and speech",
"prompt": "I want to generate 'Rain and thunder' followed by 'Crying and then a sneeze and speech'."
},
"output": {}
},
{
"id": "tcta_158",
"input": {
"text": "An adult female speaks as a pan sizzles # The whir of an aircraft engine",
"prompt": "I want to generate 'An adult female speaks as a pan sizzles' followed by 'The whir of an aircraft engine'."
},
"output": {}
},
{
"id": "tcta_150",
"input": {
"text": "White noise followed by brief, muffled speech and rustling # A man talking as wood clanking as steam hisses in the background",
"prompt": "I want to generate 'White noise followed by brief, muffled speech and rustling' followed by 'A man talking as wood clanking as steam hisses in the background'."
},
"output": {}
},
{
"id": "tcta_177",
"input": {
"text": "A man speaking over an intercom followed by a crowd of people talking then applauding # Silence followed by white noise and meowing",
"prompt": "I want to generate 'A man speaking over an intercom followed by a crowd of people talking then applauding' followed by 'Silence followed by white noise and meowing'."
},
"output": {}
},
{
"id": "tcta_393",
"input": {
"text": "A woman is speaking over a microphone # Whistling with small rustling and groaning",
"prompt": "I want to generate 'A woman is speaking over a microphone' followed by 'Whistling with small rustling and groaning'."
},
"output": {}
},
{
"id": "tcta_184",
"input": {
"text": "Low humming of an idling and accelerating engine # A bus engine accelerating followed by a man talking then a woman speaking in the background",
"prompt": "I want to generate 'Low humming of an idling and accelerating engine' followed by 'A bus engine accelerating followed by a man talking then a woman speaking in the background'."
},
"output": {}
},
{
"id": "tcta_449",
"input": {
"text": "A baby cries and shout from time to time # A woman and a child speaking",
"prompt": "I want to generate 'A baby cries and shout from time to time' followed by 'A woman and a child speaking'."
},
"output": {}
},
{
"id": "tcta_010",
"input": {
"text": "A woman speaking followed by spraying # Compressed air releasing and scissors snipping",
"prompt": "I want to generate 'A woman speaking followed by spraying' followed by 'Compressed air releasing and scissors snipping'."
},
"output": {}
},
{
"id": "tcta_380",
"input": {
"text": "Birds chirping loudly # An infant yelling as a young boy talks while a hard surface is slapped several times",
"prompt": "I want to generate 'Birds chirping loudly' followed by 'An infant yelling as a young boy talks while a hard surface is slapped several times'."
},
"output": {}
},
{
"id": "tcta_103",
"input": {
"text": "A crowd of people talking as emergency sirens sound and a truck accelerates followed by a man speaking over an intercom # Metal squeaking and clanking followed by a man talking then a faucet pouring water",
"prompt": "I want to generate 'A crowd of people talking as emergency sirens sound and a truck accelerates followed by a man speaking over an intercom' followed by 'Metal squeaking and clanking followed by a man talking then a faucet pouring water'."
},
"output": {}
},
{
"id": "tcta_081",
"input": {
"text": "Humming of engines with people speaking # A group of people laughing followed by a man talking then more laughter",
"prompt": "I want to generate 'Humming of engines with people speaking' followed by 'A group of people laughing followed by a man talking then more laughter'."
},
"output": {}
},
{
"id": "tcta_038",
"input": {
"text": "Water running quickly # Male speaking with many people cheering in background",
"prompt": "I want to generate 'Water running quickly' followed by 'Male speaking with many people cheering in background'."
},
"output": {}
},
{
"id": "tcta_314",
"input": {
"text": "Ocean waves crashing and water streaming as wind blows into a microphone while a man talks faintly in the distance # Water flowing and splashing, increases in volume suddenly",
"prompt": "I want to generate 'Ocean waves crashing and water streaming as wind blows into a microphone while a man talks faintly in the distance' followed by 'Water flowing and splashing, increases in volume suddenly'."
},
"output": {}
},
{
"id": "tcta_167",
"input": {
"text": "Several clicks and pops with people cheering and yodeling # Clip-clops from a horse in the distant with some knocking",
"prompt": "I want to generate 'Several clicks and pops with people cheering and yodeling' followed by 'Clip-clops from a horse in the distant with some knocking'."
},
"output": {}
},
{
"id": "tcta_469",
"input": {
"text": "A vehicle engine revving several times with a series of compressed air releasing and plastic pops # Spraying and hissing with some light vibrations",
"prompt": "I want to generate 'A vehicle engine revving several times with a series of compressed air releasing and plastic pops' followed by 'Spraying and hissing with some light vibrations'."
},
"output": {}
},
{
"id": "tcta_296",
"input": {
"text": "A main horn honks, a train passes by # Humming and vibrating followed by rustling and splashes with a man speaking briefly",
"prompt": "I want to generate 'A main horn honks, a train passes by' followed by 'Humming and vibrating followed by rustling and splashes with a man speaking briefly'."
},
"output": {}
},
{
"id": "tcta_474",
"input": {
"text": "Several birds chirp with trickling water followed by booms of drums # Low humming and vibrating with a spray and a man speaking",
"prompt": "I want to generate 'Several birds chirp with trickling water followed by booms of drums' followed by 'Low humming and vibrating with a spray and a man speaking'."
},
"output": {}
},
{
"id": "tcta_198",
"input": {
"text": "An engine idling consistently # A toy helicopter flying followed by wind blowing into a microphone",
"prompt": "I want to generate 'An engine idling consistently' followed by 'A toy helicopter flying followed by wind blowing into a microphone'."
},
"output": {}
},
{
"id": "tcta_297",
"input": {
"text": "Continuous light snoring # An engine revving with whooshing",
"prompt": "I want to generate 'Continuous light snoring' followed by 'An engine revving with whooshing'."
},
"output": {}
},
{
"id": "tcta_416",
"input": {
"text": "People laugh followed by whispering and a child speaking # A man talking as a motorbike engine revs and accelerates",
"prompt": "I want to generate 'People laugh followed by whispering and a child speaking' followed by 'A man talking as a motorbike engine revs and accelerates'."
},
"output": {}
},
{
"id": "tcta_146",
"input": {
"text": "Men speak with gunshots and booms # Pigeons are cooing",
"prompt": "I want to generate 'Men speak with gunshots and booms' followed by 'Pigeons are cooing'."
},
"output": {}
},
{
"id": "tcta_392",
"input": {
"text": "A train running on railroad tracks as a train horn blows several times alongside a child yelling in the distance followed by a man speaking then a child speaking in the background # An air gun firing rapidly followed by plastic rattling and a young boy talking while footsteps walk over grass",
"prompt": "I want to generate 'A train running on railroad tracks as a train horn blows several times alongside a child yelling in the distance followed by a man speaking then a child speaking in the background' followed by 'An air gun firing rapidly followed by plastic rattling and a young boy talking while footsteps walk over grass'."
},
"output": {}
},
{
"id": "tcta_147",
"input": {
"text": "A baby crying and a female speaking # A man talking then laughing as a ducks quack",
"prompt": "I want to generate 'A baby crying and a female speaking' followed by 'A man talking then laughing as a ducks quack'."
},
"output": {}
},
{
"id": "tcta_447",
"input": {
"text": "A critter squealing as a man is talking and leaves are rustling # A clock ticking for several seconds followed by faint coughing",
"prompt": "I want to generate 'A critter squealing as a man is talking and leaves are rustling' followed by 'A clock ticking for several seconds followed by faint coughing'."
},
"output": {}
},
{
"id": "tcta_287",
"input": {
"text": "Water splashes and wind blows # Rough sanding and scraping",
"prompt": "I want to generate 'Water splashes and wind blows' followed by 'Rough sanding and scraping'."
},
"output": {}
},
{
"id": "tcta_123",
"input": {
"text": "A man speaking through a radio as a truck engine runs idle and a vehicle accelerates in the distance # Several very loud explosions occur",
"prompt": "I want to generate 'A man speaking through a radio as a truck engine runs idle and a vehicle accelerates in the distance' followed by 'Several very loud explosions occur'."
},
"output": {}
},
{
"id": "tcta_368",
"input": {
"text": "Speaking followed by water running # A cat is meowing in a quiet environment",
"prompt": "I want to generate 'Speaking followed by water running' followed by 'A cat is meowing in a quiet environment'."
},
"output": {}
},
{
"id": "tcta_096",
"input": {
"text": "A child talking followed by a man talking as a young boy mumbles while birds chirp in the background # A ticktock sound playing at the same rhythm with piano notes",
"prompt": "I want to generate 'A child talking followed by a man talking as a young boy mumbles while birds chirp in the background' followed by 'A ticktock sound playing at the same rhythm with piano notes'."
},
"output": {}
},
{
"id": "tcta_143",
"input": {
"text": "A vehicle horn beeps # Woman speaking followed by child speaking",
"prompt": "I want to generate 'A vehicle horn beeps' followed by 'Woman speaking followed by child speaking'."
},
"output": {}
},
{
"id": "tcta_239",
"input": {
"text": "Breathing and ducks quaking # A rhythmic whistle plays a tune",
"prompt": "I want to generate 'Breathing and ducks quaking' followed by 'A rhythmic whistle plays a tune'."
},
"output": {}
},
{
"id": "tcta_442",
"input": {
"text": "High powered vibrations from a power tool # Rustling and tapping followed by brief gurgling",
"prompt": "I want to generate 'High powered vibrations from a power tool' followed by 'Rustling and tapping followed by brief gurgling'."
},
"output": {}
},
{
"id": "tcta_097",
"input": {
"text": "A man talking as music is playing in the background followed by a popping explosion then a man laughing # Hissing and buzzing of insects with a horse neigh and clip clops",
"prompt": "I want to generate 'A man talking as music is playing in the background followed by a popping explosion then a man laughing' followed by 'Hissing and buzzing of insects with a horse neigh and clip clops'."
},
"output": {}
},
{
"id": "tcta_407",
"input": {
"text": "A man speaking on the phone to another person # A man talking as a vehicle drives by as rain patters on a hard surface",
"prompt": "I want to generate 'A man speaking on the phone to another person' followed by 'A man talking as a vehicle drives by as rain patters on a hard surface'."
},
"output": {}
},
{
"id": "tcta_122",
"input": {
"text": "A person whistling as wind blows lightly into a microphone # Insects buzzing as a man is talking.",
"prompt": "I want to generate 'A person whistling as wind blows lightly into a microphone' followed by 'Insects buzzing as a man is talking.'."
},
"output": {}
},
{
"id": "tcta_183",
"input": {
"text": "An engine starting and running # An engine is being started up then idles",
"prompt": "I want to generate 'An engine starting and running' followed by 'An engine is being started up then idles'."
},
"output": {}
},
{
"id": "tcta_202",
"input": {
"text": "A woman crying followed by a man talking # Squealing and whimpering with some rustling followed by a man speaking",
"prompt": "I want to generate 'A woman crying followed by a man talking' followed by 'Squealing and whimpering with some rustling followed by a man speaking'."
},
"output": {}
},
{
"id": "tcta_246",
"input": {
"text": "Car horn and alarm blare simultaneously # A jackhammer operating",
"prompt": "I want to generate 'Car horn and alarm blare simultaneously' followed by 'A jackhammer operating'."
},
"output": {}
},
{
"id": "tcta_305",
"input": {
"text": "A woman talking then a man talking followed by a goat baaing as a kid talks in the background # Some cars passing by with people murmuring in the distance",
"prompt": "I want to generate 'A woman talking then a man talking followed by a goat baaing as a kid talks in the background' followed by 'Some cars passing by with people murmuring in the distance'."
},
"output": {}
},
{
"id": "tcta_298",
"input": {
"text": "A man speaking on a microphone as a crowd of people laugh followed by glass clinking # A bird chirps and water splashes lightly",
"prompt": "I want to generate 'A man speaking on a microphone as a crowd of people laugh followed by glass clinking' followed by 'A bird chirps and water splashes lightly'."
},
"output": {}
},
{
"id": "tcta_351",
"input": {
"text": "Hissing and ticking with whistling of a horn # A fire siren with people talking",
"prompt": "I want to generate 'Hissing and ticking with whistling of a horn' followed by 'A fire siren with people talking'."
},
"output": {}
},
{
"id": "tcta_386",
"input": {
"text": "Several frogs chirping near and far with men speaking and some banging # A large duck quacks and small ducks chirp",
"prompt": "I want to generate 'Several frogs chirping near and far with men speaking and some banging' followed by 'A large duck quacks and small ducks chirp'."
},
"output": {}
},
{
"id": "tcta_395",
"input": {
"text": "Music and a man speaking followed by bleeps and someone singing # Motorboat engine screams as it accelerates",
"prompt": "I want to generate 'Music and a man speaking followed by bleeps and someone singing' followed by 'Motorboat engine screams as it accelerates'."
},
"output": {}
},
{
"id": "tcta_284",
"input": {
"text": "Two men talk followed by a person belching as a car drives # Male speech and metal clanking",
"prompt": "I want to generate 'Two men talk followed by a person belching as a car drives' followed by 'Male speech and metal clanking'."
},
"output": {}
},
{
"id": "tcta_125",
"input": {
"text": "A man speaks followed by whistling and guitar music # A baby cries, and people are communicating",
"prompt": "I want to generate 'A man speaks followed by whistling and guitar music' followed by 'A baby cries, and people are communicating'."
},
"output": {}
},
{
"id": "tcta_302",
"input": {
"text": "Train blowing horn then approaching track sounds # Graveling shuffling followed by a young kid talking as pigeons are cooing and a motor hums in the background",
"prompt": "I want to generate 'Train blowing horn then approaching track sounds' followed by 'Graveling shuffling followed by a young kid talking as pigeons are cooing and a motor hums in the background'."
},
"output": {}
},
{
"id": "tcta_223",
"input": {
"text": "Cat meowing sadly # A baby laughs repetitively",
"prompt": "I want to generate 'Cat meowing sadly' followed by 'A baby laughs repetitively'."
},
"output": {}
},
{
"id": "tcta_418",
"input": {
"text": "Scrapping and filing of wood followed by a man talking as a dog barks in the background # A man shouting before and after a person belches loudly",
"prompt": "I want to generate 'Scrapping and filing of wood followed by a man talking as a dog barks in the background' followed by 'A man shouting before and after a person belches loudly'."
},
"output": {}
},
{
"id": "tcta_219",
"input": {
"text": "Men speak as insects buzz # Metal clinking with faint clip-clops of a horse",
"prompt": "I want to generate 'Men speak as insects buzz' followed by 'Metal clinking with faint clip-clops of a horse'."
},
"output": {}
},
{
"id": "tcta_129",
"input": {
"text": "An adult female speaks and claps, a bird whistles in the foreground, another bird chirps in the background, and then a human whistles a tune # An adult male speaks and then an audience laughs and claps somewhat, followed by the adult male speaking again and then the audience laughing and clapping harder",
"prompt": "I want to generate 'An adult female speaks and claps, a bird whistles in the foreground, another bird chirps in the background, and then a human whistles a tune' followed by 'An adult male speaks and then an audience laughs and claps somewhat, followed by the adult male speaking again and then the audience laughing and clapping harder'."
},
"output": {}
},
{
"id": "tcta_420",
"input": {
"text": "A man talking followed by wood sawing then paper shuffling # Dogs bark and whine and growl",
"prompt": "I want to generate 'A man talking followed by wood sawing then paper shuffling' followed by 'Dogs bark and whine and growl'."
},
"output": {}
},
{
"id": "tcta_289",
"input": {
"text": "Man yelling and belching # Snoring is occurring, and an electronic entertainment device is playing in the background",
"prompt": "I want to generate 'Man yelling and belching' followed by 'Snoring is occurring, and an electronic entertainment device is playing in the background'."
},
"output": {}
},
{
"id": "tcta_444",
"input": {
"text": "A quick burst of vibrations from a sewing machine with clicking and rattling # Leaves rustling in the wind with dogs barking and birds chirping",
"prompt": "I want to generate 'A quick burst of vibrations from a sewing machine with clicking and rattling' followed by 'Leaves rustling in the wind with dogs barking and birds chirping'."
},
"output": {}
},
{
"id": "tcta_376",
"input": {
"text": "A train blows its horn several times # Humming of a passing vehicle with a honking engine and wind blowing",
"prompt": "I want to generate 'A train blows its horn several times' followed by 'Humming of a passing vehicle with a honking engine and wind blowing'."
},
"output": {}
},
{
"id": "tcta_291",
"input": {
"text": "A woman talking followed by a bird whistling then a person whistling # A toy helicopter flying as wind blows into a microphone",
"prompt": "I want to generate 'A woman talking followed by a bird whistling then a person whistling' followed by 'A toy helicopter flying as wind blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_355",
"input": {
"text": "Metal clanking followed by steam hissing as a truck engine is running then accelerating # A steam engine runs as steam hisses and sprays while a man is talking in the background",
"prompt": "I want to generate 'Metal clanking followed by steam hissing as a truck engine is running then accelerating' followed by 'A steam engine runs as steam hisses and sprays while a man is talking in the background'."
},
"output": {}
},
{
"id": "tcta_294",
"input": {
"text": "Engine idling consistently # A woman talking followed by plastic thumping then metal clanking as food and oil sizzles",
"prompt": "I want to generate 'Engine idling consistently' followed by 'A woman talking followed by plastic thumping then metal clanking as food and oil sizzles'."
},
"output": {}
},
{
"id": "tcta_396",
"input": {
"text": "A large volume of water is running, splashing and gurgling, a sneeze occurs, and two adult females speak # A man speaks then a small bird chirps",
"prompt": "I want to generate 'A large volume of water is running, splashing and gurgling, a sneeze occurs, and two adult females speak' followed by 'A man speaks then a small bird chirps'."
},
"output": {}
},
{
"id": "tcta_340",
"input": {
"text": "Continuous, quiet tick-tocking # A cuckoo bird coos followed by a train running on railroad tracks as a bell dings in the background",
"prompt": "I want to generate 'Continuous, quiet tick-tocking' followed by 'A cuckoo bird coos followed by a train running on railroad tracks as a bell dings in the background'."
},
"output": {}
},
{
"id": "tcta_112",
"input": {
"text": "A vehicle horn honking as a motor engine gurgles and wind blows into a microphone # Gusts of wind blowing as leaves rustle and birds chirp in the distance while wind blows into a microphone",
"prompt": "I want to generate 'A vehicle horn honking as a motor engine gurgles and wind blows into a microphone' followed by 'Gusts of wind blowing as leaves rustle and birds chirp in the distance while wind blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_179",
"input": {
"text": "A cat meowing and young female speaking # Wind is blowing along with some engines",
"prompt": "I want to generate 'A cat meowing and young female speaking' followed by 'Wind is blowing along with some engines'."
},
"output": {}
},
{
"id": "tcta_307",
"input": {
"text": "An ambulance siren with rain # Laser followed by a gun shot",
"prompt": "I want to generate 'An ambulance siren with rain' followed by 'Laser followed by a gun shot'."
},
"output": {}
},
{
"id": "tcta_432",
"input": {
"text": "Humming and vibrations from a speeding car # Ocean waves crashing as wind blows into a microphone",
"prompt": "I want to generate 'Humming and vibrations from a speeding car' followed by 'Ocean waves crashing as wind blows into a microphone'."
},
"output": {}
},
{
"id": "tcta_487",
"input": {
"text": "A man and an elderly woman talking as plastic clacks followed by a faucet pouring water as water runs down a drain # A high frequency motor hums loudly and splashes water",
"prompt": "I want to generate 'A man and an elderly woman talking as plastic clacks followed by a faucet pouring water as water runs down a drain' followed by 'A high frequency motor hums loudly and splashes water'."
},
"output": {}
},
{
"id": "tcta_481",
"input": {
"text": "Church bells tolling followed by a smaller bell ringing # A man talking followed by plastic clunking and rattling as frogs croak and crickets chirp",
"prompt": "I want to generate 'Church bells tolling followed by a smaller bell ringing' followed by 'A man talking followed by plastic clunking and rattling as frogs croak and crickets chirp'."
},
"output": {}
}
]
} |