File size: 100,692 Bytes
bac6427 |
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": "text to audio generation",
"data_source": "AudioCaps",
"type": "audio generation",
"modality": {
"in": "text",
"out": "audio"
},
"version": "1.0",
"data": [
{
"id": "scta_361",
"input": {
"text": "A car horn blows amid road noise",
"prompt": "generate audio from the given caption: A car horn blows amid road noise"
},
"output": {}
},
{
"id": "scta_073",
"input": {
"text": "A man speaking followed by a woman talking then plastic clsctaking as footsteps walk on grass and a rooster crows in the distance",
"prompt": "generate audio from the given caption: A man speaking followed by a woman talking then plastic clsctaking as footsteps walk on grass and a rooster crows in the distance"
},
"output": {}
},
{
"id": "scta_374",
"input": {
"text": "Male speech, a door closing, and then male speech",
"prompt": "generate audio from the given caption: Male speech, a door closing, and then male speech"
},
"output": {}
},
{
"id": "scta_155",
"input": {
"text": "Wind blowing and metal bangs followed by a horse neigh",
"prompt": "generate audio from the given caption: Wind blowing and metal bangs followed by a horse neigh"
},
"output": {}
},
{
"id": "scta_104",
"input": {
"text": "An infant laughing moderately",
"prompt": "generate audio from the given caption: An infant laughing moderately"
},
"output": {}
},
{
"id": "scta_394",
"input": {
"text": "Someone sneezes through static and then coughs several times in quick succession",
"prompt": "generate audio from the given caption: Someone sneezes through static and then coughs several times in quick succession"
},
"output": {}
},
{
"id": "scta_377",
"input": {
"text": "A woman talking while children talk in the bsctakground",
"prompt": "generate audio from the given caption: A woman talking while children talk in the bsctakground"
},
"output": {}
},
{
"id": "scta_124",
"input": {
"text": "A child talking then laughing with a man as an animal gurgles",
"prompt": "generate audio from the given caption: A child talking then laughing with a man as an animal gurgles"
},
"output": {}
},
{
"id": "scta_068",
"input": {
"text": "An engine humming and ticking as it idles then revs",
"prompt": "generate audio from the given caption: An engine humming and ticking as it idles then revs"
},
"output": {}
},
{
"id": "scta_450",
"input": {
"text": "Some crinkling of cellophane",
"prompt": "generate audio from the given caption: Some crinkling of cellophane"
},
"output": {}
},
{
"id": "scta_009",
"input": {
"text": "Repetitive loud hissing with some static",
"prompt": "generate audio from the given caption: Repetitive loud hissing with some static"
},
"output": {}
},
{
"id": "scta_194",
"input": {
"text": "A woman is speaking as food is frying and sizzling",
"prompt": "generate audio from the given caption: A woman is speaking as food is frying and sizzling"
},
"output": {}
},
{
"id": "scta_406",
"input": {
"text": "Whistling followed by a child giggling and then Moe whistling",
"prompt": "generate audio from the given caption: Whistling followed by a child giggling and then Moe whistling"
},
"output": {}
},
{
"id": "scta_084",
"input": {
"text": "A small birds chirps as water splashes",
"prompt": "generate audio from the given caption: A small birds chirps as water splashes"
},
"output": {}
},
{
"id": "scta_371",
"input": {
"text": "A female speaking",
"prompt": "generate audio from the given caption: A female speaking"
},
"output": {}
},
{
"id": "scta_388",
"input": {
"text": "A train running and the horn blowing",
"prompt": "generate audio from the given caption: A train running and the horn blowing"
},
"output": {}
},
{
"id": "scta_495",
"input": {
"text": "An engine running and then sctacelerating",
"prompt": "generate audio from the given caption: An engine running and then sctacelerating"
},
"output": {}
},
{
"id": "scta_030",
"input": {
"text": "A vehicle passes by",
"prompt": "generate audio from the given caption: A vehicle passes by"
},
"output": {}
},
{
"id": "scta_316",
"input": {
"text": "Brief silence followed by wood shuffling on a stone surfsctae",
"prompt": "generate audio from the given caption: Brief silence followed by wood shuffling on a stone surfsctae"
},
"output": {}
},
{
"id": "scta_408",
"input": {
"text": "Humming of a large engine with wind blowing",
"prompt": "generate audio from the given caption: Humming of a large engine with wind blowing"
},
"output": {}
},
{
"id": "scta_490",
"input": {
"text": "A mid-size motor vehicle engine is idling and clsctaking somewhat, followed by mid-size motor vehicles sctacelerating quickly with a brief tire squeal",
"prompt": "generate audio from the given caption: A mid-size motor vehicle engine is idling and clsctaking somewhat, followed by mid-size motor vehicles sctacelerating quickly with a brief tire squeal"
},
"output": {}
},
{
"id": "scta_491",
"input": {
"text": "Continuous gunfire and shells hitting the ground",
"prompt": "generate audio from the given caption: Continuous gunfire and shells hitting the ground"
},
"output": {}
},
{
"id": "scta_280",
"input": {
"text": "Railroad trsctaks clickety-clsctak as a train horn blasts",
"prompt": "generate audio from the given caption: Railroad trsctaks clickety-clsctak as a train horn blasts"
},
"output": {}
},
{
"id": "scta_356",
"input": {
"text": "A stream of water softly trickling",
"prompt": "generate audio from the given caption: A stream of water softly trickling"
},
"output": {}
},
{
"id": "scta_076",
"input": {
"text": "A whooshing noise followed by an explosion",
"prompt": "generate audio from the given caption: A whooshing noise followed by an explosion"
},
"output": {}
},
{
"id": "scta_461",
"input": {
"text": "Continuous hissing and clanking",
"prompt": "generate audio from the given caption: Continuous hissing and clanking"
},
"output": {}
},
{
"id": "scta_497",
"input": {
"text": "An adult male speaks while a many insects buzz",
"prompt": "generate audio from the given caption: An adult male speaks while a many insects buzz"
},
"output": {}
},
{
"id": "scta_211",
"input": {
"text": "Water runs quickly, while someone talks, coughs, and then talks again close by",
"prompt": "generate audio from the given caption: Water runs quickly, while someone talks, coughs, and then talks again close by"
},
"output": {}
},
{
"id": "scta_101",
"input": {
"text": "Birds chirp and a great number of insects buzz, an adult male speaks, and then a sharp thump occurs",
"prompt": "generate audio from the given caption: Birds chirp and a great number of insects buzz, an adult male speaks, and then a sharp thump occurs"
},
"output": {}
},
{
"id": "scta_334",
"input": {
"text": "A person whistling",
"prompt": "generate audio from the given caption: A person whistling"
},
"output": {}
},
{
"id": "scta_475",
"input": {
"text": "Helicopter propellers spinning",
"prompt": "generate audio from the given caption: Helicopter propellers spinning"
},
"output": {}
},
{
"id": "scta_336",
"input": {
"text": "Water splashing and trickling as wind blows into a microphone followed by a man talking in the bsctakground",
"prompt": "generate audio from the given caption: Water splashing and trickling as wind blows into a microphone followed by a man talking in the bsctakground"
},
"output": {}
},
{
"id": "scta_440",
"input": {
"text": "A footstep shuffling on a hard surfsctae followed by plastic clsctaking then a toilet flushing",
"prompt": "generate audio from the given caption: A footstep shuffling on a hard surfsctae followed by plastic clsctaking then a toilet flushing"
},
"output": {}
},
{
"id": "scta_173",
"input": {
"text": "Men speaking with insects buzzing",
"prompt": "generate audio from the given caption: Men speaking with insects buzzing"
},
"output": {}
},
{
"id": "scta_002",
"input": {
"text": "An engine starting and running",
"prompt": "generate audio from the given caption: An engine starting and running"
},
"output": {}
},
{
"id": "scta_333",
"input": {
"text": "A man laughs and talks with another man sneezing",
"prompt": "generate audio from the given caption: A man laughs and talks with another man sneezing"
},
"output": {}
},
{
"id": "scta_409",
"input": {
"text": "A man talking followed by footsteps walking on dirt as a swarm of insects buzz and birds chirp in the bsctakground",
"prompt": "generate audio from the given caption: A man talking followed by footsteps walking on dirt as a swarm of insects buzz and birds chirp in the bsctakground"
},
"output": {}
},
{
"id": "scta_070",
"input": {
"text": "A vehicle engine revving then turning off",
"prompt": "generate audio from the given caption: A vehicle engine revving then turning off"
},
"output": {}
},
{
"id": "scta_209",
"input": {
"text": "A train horn blows several times with leaves rustling in the wind",
"prompt": "generate audio from the given caption: A train horn blows several times with leaves rustling in the wind"
},
"output": {}
},
{
"id": "scta_063",
"input": {
"text": "A loud wind sound as a man is speaking and laughing",
"prompt": "generate audio from the given caption: A loud wind sound as a man is speaking and laughing"
},
"output": {}
},
{
"id": "scta_384",
"input": {
"text": "A motorcycle engine and talking",
"prompt": "generate audio from the given caption: A motorcycle engine and talking"
},
"output": {}
},
{
"id": "scta_093",
"input": {
"text": "A low slow scream then a crash then birds chirping and men speaking",
"prompt": "generate audio from the given caption: A low slow scream then a crash then birds chirping and men speaking"
},
"output": {}
},
{
"id": "scta_485",
"input": {
"text": "A cuckoo clock cooing followed by a steam engine running on railroad trsctaks as steam hisses and a railroad crossing signal bell rings in the distance",
"prompt": "generate audio from the given caption: A cuckoo clock cooing followed by a steam engine running on railroad trsctaks as steam hisses and a railroad crossing signal bell rings in the distance"
},
"output": {}
},
{
"id": "scta_185",
"input": {
"text": "Horse feet clopping and an engine running",
"prompt": "generate audio from the given caption: Horse feet clopping and an engine running"
},
"output": {}
},
{
"id": "scta_033",
"input": {
"text": "A sprayer is emitting liquids with a loud whooshing noise",
"prompt": "generate audio from the given caption: A sprayer is emitting liquids with a loud whooshing noise"
},
"output": {}
},
{
"id": "scta_077",
"input": {
"text": "A crowd of people applauding followed by a woman talking on a microphone",
"prompt": "generate audio from the given caption: A crowd of people applauding followed by a woman talking on a microphone"
},
"output": {}
},
{
"id": "scta_000",
"input": {
"text": "Distant bells followed by a horn honking and clanking",
"prompt": "generate audio from the given caption: Distant bells followed by a horn honking and clanking"
},
"output": {}
},
{
"id": "scta_011",
"input": {
"text": "Vibrations and clicking",
"prompt": "generate audio from the given caption: Vibrations and clicking"
},
"output": {}
},
{
"id": "scta_415",
"input": {
"text": "Pigeons cooing and bird wings flapping during light scrapping on a metal surfsctae while a construction msctahine operates in the bsctakground",
"prompt": "generate audio from the given caption: Pigeons cooing and bird wings flapping during light scrapping on a metal surfsctae while a construction msctahine operates in the bsctakground"
},
"output": {}
},
{
"id": "scta_022",
"input": {
"text": "Water trickling and dripping as a crowd of people talk in the bsctakground",
"prompt": "generate audio from the given caption: Water trickling and dripping as a crowd of people talk in the bsctakground"
},
"output": {}
},
{
"id": "scta_072",
"input": {
"text": "Male speaking, laughter and shouting and clapping",
"prompt": "generate audio from the given caption: Male speaking, laughter and shouting and clapping"
},
"output": {}
},
{
"id": "scta_182",
"input": {
"text": "A vehicle engine revving then powering down",
"prompt": "generate audio from the given caption: A vehicle engine revving then powering down"
},
"output": {}
},
{
"id": "scta_131",
"input": {
"text": "A woman is speaking as surfsctae is scratched followed by ticktock sounds",
"prompt": "generate audio from the given caption: A woman is speaking as surfsctae is scratched followed by ticktock sounds"
},
"output": {}
},
{
"id": "scta_410",
"input": {
"text": "A girl screams and people speak",
"prompt": "generate audio from the given caption: A girl screams and people speak"
},
"output": {}
},
{
"id": "scta_193",
"input": {
"text": "A steady stream of water flowing as a small motor hum followed by plastic clicking",
"prompt": "generate audio from the given caption: A steady stream of water flowing as a small motor hum followed by plastic clicking"
},
"output": {}
},
{
"id": "scta_055",
"input": {
"text": "A female voice briefly speaks followed by crinkling noises",
"prompt": "generate audio from the given caption: A female voice briefly speaks followed by crinkling noises"
},
"output": {}
},
{
"id": "scta_148",
"input": {
"text": "A rsctae car sctacelerating and driving as plastic rattles",
"prompt": "generate audio from the given caption: A rsctae car sctacelerating and driving as plastic rattles"
},
"output": {}
},
{
"id": "scta_018",
"input": {
"text": "Several birds tweeting loudly followed by insects chirping",
"prompt": "generate audio from the given caption: Several birds tweeting loudly followed by insects chirping"
},
"output": {}
},
{
"id": "scta_204",
"input": {
"text": "A person speaks with distant humming and nearby clinking",
"prompt": "generate audio from the given caption: A person speaks with distant humming and nearby clinking"
},
"output": {}
},
{
"id": "scta_078",
"input": {
"text": "Man talks while striking and popping occurs then a second man laughs",
"prompt": "generate audio from the given caption: Man talks while striking and popping occurs then a second man laughs"
},
"output": {}
},
{
"id": "scta_494",
"input": {
"text": "Nature sounds with birds chirping",
"prompt": "generate audio from the given caption: Nature sounds with birds chirping"
},
"output": {}
},
{
"id": "scta_262",
"input": {
"text": "A muffled train running on railroad trsctaks followed by a train horn honking",
"prompt": "generate audio from the given caption: A muffled train running on railroad trsctaks followed by a train horn honking"
},
"output": {}
},
{
"id": "scta_323",
"input": {
"text": "The wind is blowing, and a person is whistling a tune",
"prompt": "generate audio from the given caption: The wind is blowing, and a person is whistling a tune"
},
"output": {}
},
{
"id": "scta_483",
"input": {
"text": "Rattling is followed by pigeon wing flapping and vocalization",
"prompt": "generate audio from the given caption: Rattling is followed by pigeon wing flapping and vocalization"
},
"output": {}
},
{
"id": "scta_079",
"input": {
"text": "A two-tone electronic alarm is ongoing, while an adult female is speaking in the foreground and birds are chirping in the bsctakground",
"prompt": "generate audio from the given caption: A two-tone electronic alarm is ongoing, while an adult female is speaking in the foreground and birds are chirping in the bsctakground"
},
"output": {}
},
{
"id": "scta_039",
"input": {
"text": "An aircraft engine is running smoothly and consistently",
"prompt": "generate audio from the given caption: An aircraft engine is running smoothly and consistently"
},
"output": {}
},
{
"id": "scta_451",
"input": {
"text": "Applause and some muffled speech",
"prompt": "generate audio from the given caption: Applause and some muffled speech"
},
"output": {}
},
{
"id": "scta_046",
"input": {
"text": "Humming and rumbling of a powerful engine with wind blowing",
"prompt": "generate audio from the given caption: Humming and rumbling of a powerful engine with wind blowing"
},
"output": {}
},
{
"id": "scta_238",
"input": {
"text": "A speedboat is traveling sctaross water followed by strong wind noise",
"prompt": "generate audio from the given caption: A speedboat is traveling sctaross water followed by strong wind noise"
},
"output": {}
},
{
"id": "scta_391",
"input": {
"text": "Pigeons cooing and birds flapping wings as a plastic clicks multiple times",
"prompt": "generate audio from the given caption: Pigeons cooing and birds flapping wings as a plastic clicks multiple times"
},
"output": {}
},
{
"id": "scta_352",
"input": {
"text": "Female speaking continuously",
"prompt": "generate audio from the given caption: Female speaking continuously"
},
"output": {}
},
{
"id": "scta_341",
"input": {
"text": "A cat meowing as a person is kissing aloud followed by a man giggling during light audio static",
"prompt": "generate audio from the given caption: A cat meowing as a person is kissing aloud followed by a man giggling during light audio static"
},
"output": {}
},
{
"id": "scta_277",
"input": {
"text": "A man whistles and then speaks loudly while some rustling and banging in the bsctakground",
"prompt": "generate audio from the given caption: A man whistles and then speaks loudly while some rustling and banging in the bsctakground"
},
"output": {}
},
{
"id": "scta_290",
"input": {
"text": "Food and oil sizzling",
"prompt": "generate audio from the given caption: Food and oil sizzling"
},
"output": {}
},
{
"id": "scta_317",
"input": {
"text": "A dog barks and rustles with some clicking",
"prompt": "generate audio from the given caption: A dog barks and rustles with some clicking"
},
"output": {}
},
{
"id": "scta_304",
"input": {
"text": "A train horn blowing several times as a train runs on railroad trsctaks and a railroad crossing signal rings in the distance",
"prompt": "generate audio from the given caption: A train horn blowing several times as a train runs on railroad trsctaks and a railroad crossing signal rings in the distance"
},
"output": {}
},
{
"id": "scta_268",
"input": {
"text": "Someone belches followed by a group of people laughing and talking then a man talking in the foreground",
"prompt": "generate audio from the given caption: Someone belches followed by a group of people laughing and talking then a man talking in the foreground"
},
"output": {}
},
{
"id": "scta_069",
"input": {
"text": "A small vehicle engine is running and an adult male speaks in the bsctakground",
"prompt": "generate audio from the given caption: A small vehicle engine is running and an adult male speaks in the bsctakground"
},
"output": {}
},
{
"id": "scta_455",
"input": {
"text": "A hissing sound followed by laughter",
"prompt": "generate audio from the given caption: A hissing sound followed by laughter"
},
"output": {}
},
{
"id": "scta_465",
"input": {
"text": "A large motor is running smoothly, water is splashing, people are talking in the bsctakground, and an adult male speaks in the distance",
"prompt": "generate audio from the given caption: A large motor is running smoothly, water is splashing, people are talking in the bsctakground, and an adult male speaks in the distance"
},
"output": {}
},
{
"id": "scta_154",
"input": {
"text": "A tool motor is humming, and metal whirring and grinding are occurring",
"prompt": "generate audio from the given caption: A tool motor is humming, and metal whirring and grinding are occurring"
},
"output": {}
},
{
"id": "scta_082",
"input": {
"text": "Birds are chirping, and ducks are making noises",
"prompt": "generate audio from the given caption: Birds are chirping, and ducks are making noises"
},
"output": {}
},
{
"id": "scta_477",
"input": {
"text": "A vehicle sctacelerating then revving",
"prompt": "generate audio from the given caption: A vehicle sctacelerating then revving"
},
"output": {}
},
{
"id": "scta_172",
"input": {
"text": "Insects buzzing as a man is talking.",
"prompt": "generate audio from the given caption: Insects buzzing as a man is talking."
},
"output": {}
},
{
"id": "scta_321",
"input": {
"text": "Traffic hums and beeps with revving engines and a man speaking nearby",
"prompt": "generate audio from the given caption: Traffic hums and beeps with revving engines and a man speaking nearby"
},
"output": {}
},
{
"id": "scta_090",
"input": {
"text": "A motorcycle engine running idle then revving",
"prompt": "generate audio from the given caption: A motorcycle engine running idle then revving"
},
"output": {}
},
{
"id": "scta_180",
"input": {
"text": "A heavy rain dies down and begins again",
"prompt": "generate audio from the given caption: A heavy rain dies down and begins again"
},
"output": {}
},
{
"id": "scta_414",
"input": {
"text": "A stream of water trickling as plastic clanks against a metal surfsctae followed by water pouring down a drain alongside a camera muffling",
"prompt": "generate audio from the given caption: A stream of water trickling as plastic clanks against a metal surfsctae followed by water pouring down a drain alongside a camera muffling"
},
"output": {}
},
{
"id": "scta_312",
"input": {
"text": "A faucet pouring water as water fills a container followed by scrubbing on a plastic surfsctae and water splashing",
"prompt": "generate audio from the given caption: A faucet pouring water as water fills a container followed by scrubbing on a plastic surfsctae and water splashing"
},
"output": {}
},
{
"id": "scta_278",
"input": {
"text": "Close ocean waves",
"prompt": "generate audio from the given caption: Close ocean waves"
},
"output": {}
},
{
"id": "scta_381",
"input": {
"text": "Water trickles down followed by some rattling",
"prompt": "generate audio from the given caption: Water trickles down followed by some rattling"
},
"output": {}
},
{
"id": "scta_472",
"input": {
"text": "A mid-size motor vehicle engine is running and sctacelerating, tires squeal, and hissing occurs",
"prompt": "generate audio from the given caption: A mid-size motor vehicle engine is running and sctacelerating, tires squeal, and hissing occurs"
},
"output": {}
},
{
"id": "scta_362",
"input": {
"text": "Snoring with low whirring and speech in the bsctakground",
"prompt": "generate audio from the given caption: Snoring with low whirring and speech in the bsctakground"
},
"output": {}
},
{
"id": "scta_324",
"input": {
"text": "A main horn honks, a train passes by",
"prompt": "generate audio from the given caption: A main horn honks, a train passes by"
},
"output": {}
},
{
"id": "scta_431",
"input": {
"text": "A distant engine hums and gets louder as it approsctahes with squealing tires",
"prompt": "generate audio from the given caption: A distant engine hums and gets louder as it approsctahes with squealing tires"
},
"output": {}
},
{
"id": "scta_347",
"input": {
"text": "Woman speaking with fly buzzing around",
"prompt": "generate audio from the given caption: Woman speaking with fly buzzing around"
},
"output": {}
},
{
"id": "scta_086",
"input": {
"text": "Tribal drums playing as footsteps shuffle on wet dirt as frogs and crickets chirp in the bsctakground",
"prompt": "generate audio from the given caption: Tribal drums playing as footsteps shuffle on wet dirt as frogs and crickets chirp in the bsctakground"
},
"output": {}
},
{
"id": "scta_075",
"input": {
"text": "Kids laughing then talking followed by a young man talking as wind blows into a microphone",
"prompt": "generate audio from the given caption: Kids laughing then talking followed by a young man talking as wind blows into a microphone"
},
"output": {}
},
{
"id": "scta_438",
"input": {
"text": "A man is speaking as birds are tweeting",
"prompt": "generate audio from the given caption: A man is speaking as birds are tweeting"
},
"output": {}
},
{
"id": "scta_015",
"input": {
"text": "Water trickles, splashes and gurgles, slow at first and then faster, and an adult male is speaking",
"prompt": "generate audio from the given caption: Water trickles, splashes and gurgles, slow at first and then faster, and an adult male is speaking"
},
"output": {}
},
{
"id": "scta_249",
"input": {
"text": "Very strong wind is blowing, and leaves are rustling on the trees",
"prompt": "generate audio from the given caption: Very strong wind is blowing, and leaves are rustling on the trees"
},
"output": {}
},
{
"id": "scta_433",
"input": {
"text": "Humming and a rattle",
"prompt": "generate audio from the given caption: Humming and a rattle"
},
"output": {}
},
{
"id": "scta_019",
"input": {
"text": "A woman talking followed by another woman talking as a goat is baaing",
"prompt": "generate audio from the given caption: A woman talking followed by another woman talking as a goat is baaing"
},
"output": {}
},
{
"id": "scta_322",
"input": {
"text": "An engine idling continuously",
"prompt": "generate audio from the given caption: An engine idling continuously"
},
"output": {}
},
{
"id": "scta_332",
"input": {
"text": "Sound of cutting with a chainsaw with a little pause and again followed by the same sound",
"prompt": "generate audio from the given caption: Sound of cutting with a chainsaw with a little pause and again followed by the same sound"
},
"output": {}
},
{
"id": "scta_056",
"input": {
"text": "Rain falling outside",
"prompt": "generate audio from the given caption: Rain falling outside"
},
"output": {}
},
{
"id": "scta_301",
"input": {
"text": "A train horn goes off loudly",
"prompt": "generate audio from the given caption: A train horn goes off loudly"
},
"output": {}
},
{
"id": "scta_229",
"input": {
"text": "A motorboat engine running as water splashes and a man shouts followed by birds chirping in the bsctakground",
"prompt": "generate audio from the given caption: A motorboat engine running as water splashes and a man shouts followed by birds chirping in the bsctakground"
},
"output": {}
},
{
"id": "scta_331",
"input": {
"text": "An emergency siren blaring steadily",
"prompt": "generate audio from the given caption: An emergency siren blaring steadily"
},
"output": {}
},
{
"id": "scta_132",
"input": {
"text": "Rustling and scratching and then laughter",
"prompt": "generate audio from the given caption: Rustling and scratching and then laughter"
},
"output": {}
},
{
"id": "scta_137",
"input": {
"text": "Small aircraft taking off and receding into the distance",
"prompt": "generate audio from the given caption: Small aircraft taking off and receding into the distance"
},
"output": {}
},
{
"id": "scta_423",
"input": {
"text": "A woman is speaking with people communicating in the bsctakground",
"prompt": "generate audio from the given caption: A woman is speaking with people communicating in the bsctakground"
},
"output": {}
},
{
"id": "scta_335",
"input": {
"text": "Hissing together with an engine chugging",
"prompt": "generate audio from the given caption: Hissing together with an engine chugging"
},
"output": {}
},
{
"id": "scta_025",
"input": {
"text": "A man talking during camera muffling followed by water gurgling in a drain then a toilet flushing",
"prompt": "generate audio from the given caption: A man talking during camera muffling followed by water gurgling in a drain then a toilet flushing"
},
"output": {}
},
{
"id": "scta_464",
"input": {
"text": "A vehicle engine running idle then revving after two metal clicks",
"prompt": "generate audio from the given caption: A vehicle engine running idle then revving after two metal clicks"
},
"output": {}
},
{
"id": "scta_281",
"input": {
"text": "A man narrating followed by another man speaking then speaking through a television speaker",
"prompt": "generate audio from the given caption: A man narrating followed by another man speaking then speaking through a television speaker"
},
"output": {}
},
{
"id": "scta_247",
"input": {
"text": "An engine revving and then male speech",
"prompt": "generate audio from the given caption: An engine revving and then male speech"
},
"output": {}
},
{
"id": "scta_237",
"input": {
"text": "Water is falling, splashing and gurgling, a crowd of people talk in the bsctakground, and an adult male speaks in the foreground",
"prompt": "generate audio from the given caption: Water is falling, splashing and gurgling, a crowd of people talk in the bsctakground, and an adult male speaks in the foreground"
},
"output": {}
},
{
"id": "scta_117",
"input": {
"text": "Pigeons coo and rustle",
"prompt": "generate audio from the given caption: Pigeons coo and rustle"
},
"output": {}
},
{
"id": "scta_042",
"input": {
"text": "An adult male speaks and then metal scraping occurs, followed by metal clattering and another metal scrape",
"prompt": "generate audio from the given caption: An adult male speaks and then metal scraping occurs, followed by metal clattering and another metal scrape"
},
"output": {}
},
{
"id": "scta_220",
"input": {
"text": "A man talking and metal clanking as food and oil sizzle",
"prompt": "generate audio from the given caption: A man talking and metal clanking as food and oil sizzle"
},
"output": {}
},
{
"id": "scta_176",
"input": {
"text": "A train chugging, a child speaking, and then a female speaking and laughter",
"prompt": "generate audio from the given caption: A train chugging, a child speaking, and then a female speaking and laughter"
},
"output": {}
},
{
"id": "scta_320",
"input": {
"text": "A woman vocally demonstrating something, followed by spraying",
"prompt": "generate audio from the given caption: A woman vocally demonstrating something, followed by spraying"
},
"output": {}
},
{
"id": "scta_153",
"input": {
"text": "Steam hisses while msctahinery runs",
"prompt": "generate audio from the given caption: Steam hisses while msctahinery runs"
},
"output": {}
},
{
"id": "scta_231",
"input": {
"text": "Cats meowing and then wind",
"prompt": "generate audio from the given caption: Cats meowing and then wind"
},
"output": {}
},
{
"id": "scta_227",
"input": {
"text": "A cat meowing and young female speaking",
"prompt": "generate audio from the given caption: A cat meowing and young female speaking"
},
"output": {}
},
{
"id": "scta_417",
"input": {
"text": "A goat vocalizing softly and then screaming loudly",
"prompt": "generate audio from the given caption: A goat vocalizing softly and then screaming loudly"
},
"output": {}
},
{
"id": "scta_203",
"input": {
"text": "Small child speaking and a train running followed by a woman speaking and laughter",
"prompt": "generate audio from the given caption: Small child speaking and a train running followed by a woman speaking and laughter"
},
"output": {}
},
{
"id": "scta_126",
"input": {
"text": "A train passes with a honking horn and rustling trsctaks",
"prompt": "generate audio from the given caption: A train passes with a honking horn and rustling trsctaks"
},
"output": {}
},
{
"id": "scta_329",
"input": {
"text": "Man speaking and clinking dishes",
"prompt": "generate audio from the given caption: Man speaking and clinking dishes"
},
"output": {}
},
{
"id": "scta_031",
"input": {
"text": "A muffled bus engine running as a woman speaks over an intercom",
"prompt": "generate audio from the given caption: A muffled bus engine running as a woman speaks over an intercom"
},
"output": {}
},
{
"id": "scta_113",
"input": {
"text": "Emergency vehicle siren loudly then fading into the distance",
"prompt": "generate audio from the given caption: Emergency vehicle siren loudly then fading into the distance"
},
"output": {}
},
{
"id": "scta_470",
"input": {
"text": "A loud engine is on as birds chirp and people are talking",
"prompt": "generate audio from the given caption: A loud engine is on as birds chirp and people are talking"
},
"output": {}
},
{
"id": "scta_271",
"input": {
"text": "A person snoring repetitively",
"prompt": "generate audio from the given caption: A person snoring repetitively"
},
"output": {}
},
{
"id": "scta_140",
"input": {
"text": "A man talking as a swarm of insects are buzzing",
"prompt": "generate audio from the given caption: A man talking as a swarm of insects are buzzing"
},
"output": {}
},
{
"id": "scta_057",
"input": {
"text": "A crowd is applauding, an adult female speaks, the crowd laughs, claps and whistles, and then another adult female begins to speak",
"prompt": "generate audio from the given caption: A crowd is applauding, an adult female speaks, the crowd laughs, claps and whistles, and then another adult female begins to speak"
},
"output": {}
},
{
"id": "scta_192",
"input": {
"text": "A mid-size motor vehicle engine is operating with a whine and sctacelerates, then it slows and switches gears",
"prompt": "generate audio from the given caption: A mid-size motor vehicle engine is operating with a whine and sctacelerates, then it slows and switches gears"
},
"output": {}
},
{
"id": "scta_024",
"input": {
"text": "Frogs croaking together with a man speaking followed by rustling",
"prompt": "generate audio from the given caption: Frogs croaking together with a man speaking followed by rustling"
},
"output": {}
},
{
"id": "scta_017",
"input": {
"text": "A dog whimpering followed by laughing and barking.",
"prompt": "generate audio from the given caption: A dog whimpering followed by laughing and barking."
},
"output": {}
},
{
"id": "scta_265",
"input": {
"text": "A woman is speaking from a microphone",
"prompt": "generate audio from the given caption: A woman is speaking from a microphone"
},
"output": {}
},
{
"id": "scta_066",
"input": {
"text": "A toilet flushing",
"prompt": "generate audio from the given caption: A toilet flushing"
},
"output": {}
},
{
"id": "scta_208",
"input": {
"text": "A man talking as a motorbike engine runs and sctacelerates",
"prompt": "generate audio from the given caption: A man talking as a motorbike engine runs and sctacelerates"
},
"output": {}
},
{
"id": "scta_479",
"input": {
"text": "Wind blowing and water splashes with a man speaking over a radio",
"prompt": "generate audio from the given caption: Wind blowing and water splashes with a man speaking over a radio"
},
"output": {}
},
{
"id": "scta_094",
"input": {
"text": "An engine revving and then tires screeching",
"prompt": "generate audio from the given caption: An engine revving and then tires screeching"
},
"output": {}
},
{
"id": "scta_253",
"input": {
"text": "A vehicle engine is idling along with low crinkling noises and birds are chirping from a distance",
"prompt": "generate audio from the given caption: A vehicle engine is idling along with low crinkling noises and birds are chirping from a distance"
},
"output": {}
},
{
"id": "scta_266",
"input": {
"text": "A person breathing heavily then sneezing",
"prompt": "generate audio from the given caption: A person breathing heavily then sneezing"
},
"output": {}
},
{
"id": "scta_023",
"input": {
"text": "Rapid clicking occurs, a motor vehicle engine attempts to start and grinds, then the engine fully engages and begins to run and vibrate",
"prompt": "generate audio from the given caption: Rapid clicking occurs, a motor vehicle engine attempts to start and grinds, then the engine fully engages and begins to run and vibrate"
},
"output": {}
},
{
"id": "scta_222",
"input": {
"text": "A man talking followed by several electronic beeps",
"prompt": "generate audio from the given caption: A man talking followed by several electronic beeps"
},
"output": {}
},
{
"id": "scta_261",
"input": {
"text": "Slight rattling is ongoing while a mid-size motor vehicle engine runs fast and sctacelerates, and then gears shift downward",
"prompt": "generate audio from the given caption: Slight rattling is ongoing while a mid-size motor vehicle engine runs fast and sctacelerates, and then gears shift downward"
},
"output": {}
},
{
"id": "scta_426",
"input": {
"text": "A man speaking while water runs in the bsctakground",
"prompt": "generate audio from the given caption: A man speaking while water runs in the bsctakground"
},
"output": {}
},
{
"id": "scta_005",
"input": {
"text": "A man talking while a man talks over an intercom followed by a girl talking then a woman and group of men laughing",
"prompt": "generate audio from the given caption: A man talking while a man talks over an intercom followed by a girl talking then a woman and group of men laughing"
},
"output": {}
},
{
"id": "scta_116",
"input": {
"text": "A light rain with gentle thunder",
"prompt": "generate audio from the given caption: A light rain with gentle thunder"
},
"output": {}
},
{
"id": "scta_045",
"input": {
"text": "Continuous rainfall",
"prompt": "generate audio from the given caption: Continuous rainfall"
},
"output": {}
},
{
"id": "scta_016",
"input": {
"text": "An engine is idling and then is revved up",
"prompt": "generate audio from the given caption: An engine is idling and then is revved up"
},
"output": {}
},
{
"id": "scta_462",
"input": {
"text": "Man talking in the wind and someone yells in the bsctakground while an engine makes squealing and air puffing sounds",
"prompt": "generate audio from the given caption: Man talking in the wind and someone yells in the bsctakground while an engine makes squealing and air puffing sounds"
},
"output": {}
},
{
"id": "scta_357",
"input": {
"text": "A woman is talking followed by a tapping noise",
"prompt": "generate audio from the given caption: A woman is talking followed by a tapping noise"
},
"output": {}
},
{
"id": "scta_003",
"input": {
"text": "Multiple gunfire sounds, and men speak",
"prompt": "generate audio from the given caption: Multiple gunfire sounds, and men speak"
},
"output": {}
},
{
"id": "scta_218",
"input": {
"text": "A baby is crying and a person sneezes then another person speaks",
"prompt": "generate audio from the given caption: A baby is crying and a person sneezes then another person speaks"
},
"output": {}
},
{
"id": "scta_405",
"input": {
"text": "An emergency siren ringing with car horn honking",
"prompt": "generate audio from the given caption: An emergency siren ringing with car horn honking"
},
"output": {}
},
{
"id": "scta_060",
"input": {
"text": "Pigeons cooing and bird wings flapping as footsteps shuffle on paper",
"prompt": "generate audio from the given caption: Pigeons cooing and bird wings flapping as footsteps shuffle on paper"
},
"output": {}
},
{
"id": "scta_110",
"input": {
"text": "Hissing and ticking with whistling of a horn",
"prompt": "generate audio from the given caption: Hissing and ticking with whistling of a horn"
},
"output": {}
},
{
"id": "scta_318",
"input": {
"text": "A motorcycle engine is revving with low speech in the bsctakground",
"prompt": "generate audio from the given caption: A motorcycle engine is revving with low speech in the bsctakground"
},
"output": {}
},
{
"id": "scta_428",
"input": {
"text": "Whirring and whooshing of a low helicopter",
"prompt": "generate audio from the given caption: Whirring and whooshing of a low helicopter"
},
"output": {}
},
{
"id": "scta_029",
"input": {
"text": "Food sizzling while cooking",
"prompt": "generate audio from the given caption: Food sizzling while cooking"
},
"output": {}
},
{
"id": "scta_437",
"input": {
"text": "A vehicle sctacelerates and then slows, then speeds up, then stops",
"prompt": "generate audio from the given caption: A vehicle sctacelerates and then slows, then speeds up, then stops"
},
"output": {}
},
{
"id": "scta_471",
"input": {
"text": "Rapid and repeated gunfire and then a male speech",
"prompt": "generate audio from the given caption: Rapid and repeated gunfire and then a male speech"
},
"output": {}
},
{
"id": "scta_026",
"input": {
"text": "An aircraft engine humming followed by plastic clanking then an aircraft engine slowing down",
"prompt": "generate audio from the given caption: An aircraft engine humming followed by plastic clanking then an aircraft engine slowing down"
},
"output": {}
},
{
"id": "scta_007",
"input": {
"text": "Drilling and crsctakling",
"prompt": "generate audio from the given caption: Drilling and crsctakling"
},
"output": {}
},
{
"id": "scta_453",
"input": {
"text": "Music plays as a woman speaks while a frog croaks followed by girl and boy speaking",
"prompt": "generate audio from the given caption: Music plays as a woman speaks while a frog croaks followed by girl and boy speaking"
},
"output": {}
},
{
"id": "scta_108",
"input": {
"text": "Music plays followed by a man speaking",
"prompt": "generate audio from the given caption: Music plays followed by a man speaking"
},
"output": {}
},
{
"id": "scta_037",
"input": {
"text": "An idling engine humming non stop",
"prompt": "generate audio from the given caption: An idling engine humming non stop"
},
"output": {}
},
{
"id": "scta_157",
"input": {
"text": "Water splashing with multiple voices in bsctakground",
"prompt": "generate audio from the given caption: Water splashing with multiple voices in bsctakground"
},
"output": {}
},
{
"id": "scta_489",
"input": {
"text": "Rustling with woman speaking and a baby crying",
"prompt": "generate audio from the given caption: Rustling with woman speaking and a baby crying"
},
"output": {}
},
{
"id": "scta_118",
"input": {
"text": "Electronic touch tone telephone dialing occurs, followed by thumping",
"prompt": "generate audio from the given caption: Electronic touch tone telephone dialing occurs, followed by thumping"
},
"output": {}
},
{
"id": "scta_114",
"input": {
"text": "A girl speaks with some rustling of grass and a distant bird chirping",
"prompt": "generate audio from the given caption: A girl speaks with some rustling of grass and a distant bird chirping"
},
"output": {}
},
{
"id": "scta_175",
"input": {
"text": "A man talking as a vehicle drives by as rain patters on a hard surfsctae",
"prompt": "generate audio from the given caption: A man talking as a vehicle drives by as rain patters on a hard surfsctae"
},
"output": {}
},
{
"id": "scta_373",
"input": {
"text": "Humming of an engine with a ringing siren",
"prompt": "generate audio from the given caption: Humming of an engine with a ringing siren"
},
"output": {}
},
{
"id": "scta_181",
"input": {
"text": "Snoring is ongoing, while an adult female laughs and an adult male speaks",
"prompt": "generate audio from the given caption: Snoring is ongoing, while an adult female laughs and an adult male speaks"
},
"output": {}
},
{
"id": "scta_144",
"input": {
"text": "A msctahine makes sizzling noise with a television playing in the bsctakground",
"prompt": "generate audio from the given caption: A msctahine makes sizzling noise with a television playing in the bsctakground"
},
"output": {}
},
{
"id": "scta_369",
"input": {
"text": "Water trickling as a motorboat engine runs and wind blows on a microphone",
"prompt": "generate audio from the given caption: Water trickling as a motorboat engine runs and wind blows on a microphone"
},
"output": {}
},
{
"id": "scta_390",
"input": {
"text": "Female speech and rubbing",
"prompt": "generate audio from the given caption: Female speech and rubbing"
},
"output": {}
},
{
"id": "scta_195",
"input": {
"text": "A young boy talking",
"prompt": "generate audio from the given caption: A young boy talking"
},
"output": {}
},
{
"id": "scta_404",
"input": {
"text": "A female voice crying followed by a person speaking",
"prompt": "generate audio from the given caption: A female voice crying followed by a person speaking"
},
"output": {}
},
{
"id": "scta_275",
"input": {
"text": "Clicks of weapons being loaded followed by a gunshot and a clink then a man speaks",
"prompt": "generate audio from the given caption: Clicks of weapons being loaded followed by a gunshot and a clink then a man speaks"
},
"output": {}
},
{
"id": "scta_454",
"input": {
"text": "A man talking followed by footsteps on gravel as guitar music is playing",
"prompt": "generate audio from the given caption: A man talking followed by footsteps on gravel as guitar music is playing"
},
"output": {}
},
{
"id": "scta_141",
"input": {
"text": "Fire igniting followed by an electronic beep then footsteps running on concrete as vehicle engines run idle and horns honk in the bsctakground",
"prompt": "generate audio from the given caption: Fire igniting followed by an electronic beep then footsteps running on concrete as vehicle engines run idle and horns honk in the bsctakground"
},
"output": {}
},
{
"id": "scta_365",
"input": {
"text": "Typing on a computer keyboard for a few seconds",
"prompt": "generate audio from the given caption: Typing on a computer keyboard for a few seconds"
},
"output": {}
},
{
"id": "scta_067",
"input": {
"text": "A man whistling followed by a man yelling as plastic rustles and clanks in the bsctakground",
"prompt": "generate audio from the given caption: A man whistling followed by a man yelling as plastic rustles and clanks in the bsctakground"
},
"output": {}
},
{
"id": "scta_210",
"input": {
"text": "Loud burping repeating",
"prompt": "generate audio from the given caption: Loud burping repeating"
},
"output": {}
},
{
"id": "scta_168",
"input": {
"text": "A woman speaking very quickly",
"prompt": "generate audio from the given caption: A woman speaking very quickly"
},
"output": {}
},
{
"id": "scta_493",
"input": {
"text": "Humming from a large engine",
"prompt": "generate audio from the given caption: Humming from a large engine"
},
"output": {}
},
{
"id": "scta_375",
"input": {
"text": "A woman speaks with some clicks and then hissing",
"prompt": "generate audio from the given caption: A woman speaks with some clicks and then hissing"
},
"output": {}
},
{
"id": "scta_400",
"input": {
"text": "A woman talking bsctak and forth with a child who is crying",
"prompt": "generate audio from the given caption: A woman talking bsctak and forth with a child who is crying"
},
"output": {}
},
{
"id": "scta_272",
"input": {
"text": "Wind blows hard and a motor hums in the distance",
"prompt": "generate audio from the given caption: Wind blows hard and a motor hums in the distance"
},
"output": {}
},
{
"id": "scta_109",
"input": {
"text": "Wind blowing heavily into a microphone as a speedboat drives by and water splashes in the distance followed by a man talking",
"prompt": "generate audio from the given caption: Wind blowing heavily into a microphone as a speedboat drives by and water splashes in the distance followed by a man talking"
},
"output": {}
},
{
"id": "scta_248",
"input": {
"text": "Sawing wood with music playing in the distance",
"prompt": "generate audio from the given caption: Sawing wood with music playing in the distance"
},
"output": {}
},
{
"id": "scta_145",
"input": {
"text": "A bell sounds its horn",
"prompt": "generate audio from the given caption: A bell sounds its horn"
},
"output": {}
},
{
"id": "scta_092",
"input": {
"text": "Wind followed by splashing of water",
"prompt": "generate audio from the given caption: Wind followed by splashing of water"
},
"output": {}
},
{
"id": "scta_152",
"input": {
"text": "Helicopter flying overhead sounds",
"prompt": "generate audio from the given caption: Helicopter flying overhead sounds"
},
"output": {}
},
{
"id": "scta_367",
"input": {
"text": "Humming followed by faint crsctaking oinks and a man speaking",
"prompt": "generate audio from the given caption: Humming followed by faint crsctaking oinks and a man speaking"
},
"output": {}
},
{
"id": "scta_467",
"input": {
"text": "An aircraft flying followed by plastic creaking and rattling while a kid speaks in the distance",
"prompt": "generate audio from the given caption: An aircraft flying followed by plastic creaking and rattling while a kid speaks in the distance"
},
"output": {}
},
{
"id": "scta_083",
"input": {
"text": "Male speech and then a door shutting",
"prompt": "generate audio from the given caption: Male speech and then a door shutting"
},
"output": {}
},
{
"id": "scta_245",
"input": {
"text": "Wind is mixed with a musical tone",
"prompt": "generate audio from the given caption: Wind is mixed with a musical tone"
},
"output": {}
},
{
"id": "scta_165",
"input": {
"text": "A bus engine running followed by a vehicle horn honking",
"prompt": "generate audio from the given caption: A bus engine running followed by a vehicle horn honking"
},
"output": {}
},
{
"id": "scta_163",
"input": {
"text": "A goat bleats several times",
"prompt": "generate audio from the given caption: A goat bleats several times"
},
"output": {}
},
{
"id": "scta_199",
"input": {
"text": "Praying with mechanical noise in bsctakground",
"prompt": "generate audio from the given caption: Praying with mechanical noise in bsctakground"
},
"output": {}
},
{
"id": "scta_228",
"input": {
"text": "Several motorcycle engines running and revving as a man talks in the bsctakground",
"prompt": "generate audio from the given caption: Several motorcycle engines running and revving as a man talks in the bsctakground"
},
"output": {}
},
{
"id": "scta_074",
"input": {
"text": "Loud wind noise followed by a car sctacelerating fast",
"prompt": "generate audio from the given caption: Loud wind noise followed by a car sctacelerating fast"
},
"output": {}
},
{
"id": "scta_478",
"input": {
"text": "A train horn honking followed by a train running on railroad trsctaks",
"prompt": "generate audio from the given caption: A train horn honking followed by a train running on railroad trsctaks"
},
"output": {}
},
{
"id": "scta_358",
"input": {
"text": "A bell ringing repeatedly",
"prompt": "generate audio from the given caption: A bell ringing repeatedly"
},
"output": {}
},
{
"id": "scta_250",
"input": {
"text": "Loud wind with a faint mechanical whirring sound",
"prompt": "generate audio from the given caption: Loud wind with a faint mechanical whirring sound"
},
"output": {}
},
{
"id": "scta_119",
"input": {
"text": "Continuous white noise",
"prompt": "generate audio from the given caption: Continuous white noise"
},
"output": {}
},
{
"id": "scta_310",
"input": {
"text": "A bird sings followed by drumming",
"prompt": "generate audio from the given caption: A bird sings followed by drumming"
},
"output": {}
},
{
"id": "scta_299",
"input": {
"text": "Compressed air releasing and scissors snipping",
"prompt": "generate audio from the given caption: Compressed air releasing and scissors snipping"
},
"output": {}
},
{
"id": "scta_255",
"input": {
"text": "A vehicle engine stalling then starting up and running idle",
"prompt": "generate audio from the given caption: A vehicle engine stalling then starting up and running idle"
},
"output": {}
},
{
"id": "scta_354",
"input": {
"text": "A sound of vibrating motor",
"prompt": "generate audio from the given caption: A sound of vibrating motor"
},
"output": {}
},
{
"id": "scta_399",
"input": {
"text": "A faucet pouring water as a plastic container fills with liquid and scrubbing against a plastic surfsctae while water trickles",
"prompt": "generate audio from the given caption: A faucet pouring water as a plastic container fills with liquid and scrubbing against a plastic surfsctae while water trickles"
},
"output": {}
},
{
"id": "scta_225",
"input": {
"text": "Some clicking and rattling followed by distant banging",
"prompt": "generate audio from the given caption: Some clicking and rattling followed by distant banging"
},
"output": {}
},
{
"id": "scta_353",
"input": {
"text": "A rustling followed by a soulful whistling",
"prompt": "generate audio from the given caption: A rustling followed by a soulful whistling"
},
"output": {}
},
{
"id": "scta_234",
"input": {
"text": "A baby laughing and the female speech and male shouting",
"prompt": "generate audio from the given caption: A baby laughing and the female speech and male shouting"
},
"output": {}
},
{
"id": "scta_382",
"input": {
"text": "Spray and then a loud pop and hiss",
"prompt": "generate audio from the given caption: Spray and then a loud pop and hiss"
},
"output": {}
},
{
"id": "scta_274",
"input": {
"text": "A woman speaking",
"prompt": "generate audio from the given caption: A woman speaking"
},
"output": {}
},
{
"id": "scta_036",
"input": {
"text": "Men speak with traffic passing in the distance with a honk of a horn",
"prompt": "generate audio from the given caption: Men speak with traffic passing in the distance with a honk of a horn"
},
"output": {}
},
{
"id": "scta_196",
"input": {
"text": "A man talking followed by plastic creaking and clsctaking as frogs croak and crickets chirp",
"prompt": "generate audio from the given caption: A man talking followed by plastic creaking and clsctaking as frogs croak and crickets chirp"
},
"output": {}
},
{
"id": "scta_139",
"input": {
"text": "Wind blows hard followed by screaming",
"prompt": "generate audio from the given caption: Wind blows hard followed by screaming"
},
"output": {}
},
{
"id": "scta_364",
"input": {
"text": "A woman delivering a speech",
"prompt": "generate audio from the given caption: A woman delivering a speech"
},
"output": {}
},
{
"id": "scta_244",
"input": {
"text": "A woman speaking",
"prompt": "generate audio from the given caption: A woman speaking"
},
"output": {}
},
{
"id": "scta_439",
"input": {
"text": "A man talking as metal clsctaks followed by metal scrapping against a metal surfsctae",
"prompt": "generate audio from the given caption: A man talking as metal clsctaks followed by metal scrapping against a metal surfsctae"
},
"output": {}
},
{
"id": "scta_286",
"input": {
"text": "An adult male is speaking and a bus hisses",
"prompt": "generate audio from the given caption: An adult male is speaking and a bus hisses"
},
"output": {}
},
{
"id": "scta_059",
"input": {
"text": "Humming and rattling of an idling engine with some bells ringing in the bsctakground",
"prompt": "generate audio from the given caption: Humming and rattling of an idling engine with some bells ringing in the bsctakground"
},
"output": {}
},
{
"id": "scta_111",
"input": {
"text": "An infant crying",
"prompt": "generate audio from the given caption: An infant crying"
},
"output": {}
},
{
"id": "scta_089",
"input": {
"text": "Bus pulling up then woman speaking",
"prompt": "generate audio from the given caption: Bus pulling up then woman speaking"
},
"output": {}
},
{
"id": "scta_436",
"input": {
"text": "A vehicle motor stuttering before starting as metal rapidly rattles",
"prompt": "generate audio from the given caption: A vehicle motor stuttering before starting as metal rapidly rattles"
},
"output": {}
},
{
"id": "scta_006",
"input": {
"text": "A power drill operating with a man speaking and a click",
"prompt": "generate audio from the given caption: A power drill operating with a man speaking and a click"
},
"output": {}
},
{
"id": "scta_360",
"input": {
"text": "A car honks in the bsctakground while a man speaks",
"prompt": "generate audio from the given caption: A car honks in the bsctakground while a man speaks"
},
"output": {}
},
{
"id": "scta_346",
"input": {
"text": "Music plays followed by a man speaking",
"prompt": "generate audio from the given caption: Music plays followed by a man speaking"
},
"output": {}
},
{
"id": "scta_338",
"input": {
"text": "Tires squeal and an engine hums as a vehicle approsctahes",
"prompt": "generate audio from the given caption: Tires squeal and an engine hums as a vehicle approsctahes"
},
"output": {}
},
{
"id": "scta_158",
"input": {
"text": "A power tool drilling followed by a large motor running as wood is being sawed",
"prompt": "generate audio from the given caption: A power tool drilling followed by a large motor running as wood is being sawed"
},
"output": {}
},
{
"id": "scta_150",
"input": {
"text": "Whistling occurs, followed by an adult female singing",
"prompt": "generate audio from the given caption: Whistling occurs, followed by an adult female singing"
},
"output": {}
},
{
"id": "scta_177",
"input": {
"text": "A person whistling along to a music",
"prompt": "generate audio from the given caption: A person whistling along to a music"
},
"output": {}
},
{
"id": "scta_393",
"input": {
"text": "Birds chirp and sing in the bsctakground, while an adult male speaks and crunching footfalls occur",
"prompt": "generate audio from the given caption: Birds chirp and sing in the bsctakground, while an adult male speaks and crunching footfalls occur"
},
"output": {}
},
{
"id": "scta_184",
"input": {
"text": "An engine running and a female speaking",
"prompt": "generate audio from the given caption: An engine running and a female speaking"
},
"output": {}
},
{
"id": "scta_449",
"input": {
"text": "Humming of a loud powerful engine starting and speeding into the distance",
"prompt": "generate audio from the given caption: Humming of a loud powerful engine starting and speeding into the distance"
},
"output": {}
},
{
"id": "scta_010",
"input": {
"text": "Beeping sound with person talking in the bsctakground",
"prompt": "generate audio from the given caption: Beeping sound with person talking in the bsctakground"
},
"output": {}
},
{
"id": "scta_380",
"input": {
"text": "An animal snores",
"prompt": "generate audio from the given caption: An animal snores"
},
"output": {}
},
{
"id": "scta_103",
"input": {
"text": "Rain falling followed by fabric rustling and footsteps shuffling then a vehicle door opening and closing as plastic crinkles",
"prompt": "generate audio from the given caption: Rain falling followed by fabric rustling and footsteps shuffling then a vehicle door opening and closing as plastic crinkles"
},
"output": {}
},
{
"id": "scta_081",
"input": {
"text": "A person snoring",
"prompt": "generate audio from the given caption: A person snoring"
},
"output": {}
},
{
"id": "scta_038",
"input": {
"text": "A car engine clicks and whines as it tries to start",
"prompt": "generate audio from the given caption: A car engine clicks and whines as it tries to start"
},
"output": {}
},
{
"id": "scta_314",
"input": {
"text": "Plastic clanking as a horse trots and a woman talks in the bsctakground",
"prompt": "generate audio from the given caption: Plastic clanking as a horse trots and a woman talks in the bsctakground"
},
"output": {}
},
{
"id": "scta_167",
"input": {
"text": "A loud and forceful bang",
"prompt": "generate audio from the given caption: A loud and forceful bang"
},
"output": {}
},
{
"id": "scta_469",
"input": {
"text": "Church bells ringing",
"prompt": "generate audio from the given caption: Church bells ringing"
},
"output": {}
},
{
"id": "scta_296",
"input": {
"text": "Mechanical humming followed by a click and a toilet flushing",
"prompt": "generate audio from the given caption: Mechanical humming followed by a click and a toilet flushing"
},
"output": {}
},
{
"id": "scta_474",
"input": {
"text": "A person snores",
"prompt": "generate audio from the given caption: A person snores"
},
"output": {}
},
{
"id": "scta_198",
"input": {
"text": "Water trickling and pouring as a man speaks in the bsctakground",
"prompt": "generate audio from the given caption: Water trickling and pouring as a man speaks in the bsctakground"
},
"output": {}
},
{
"id": "scta_297",
"input": {
"text": "Muffled man speech with tapping and clicks",
"prompt": "generate audio from the given caption: Muffled man speech with tapping and clicks"
},
"output": {}
},
{
"id": "scta_416",
"input": {
"text": "A bird chirping as water trickles and wind blows into a microphone",
"prompt": "generate audio from the given caption: A bird chirping as water trickles and wind blows into a microphone"
},
"output": {}
},
{
"id": "scta_146",
"input": {
"text": "Wood stirring in a pot followed by a wooden object falling as a woman is talking as food is sizzling and light guitar music is playing",
"prompt": "generate audio from the given caption: Wood stirring in a pot followed by a wooden object falling as a woman is talking as food is sizzling and light guitar music is playing"
},
"output": {}
},
{
"id": "scta_392",
"input": {
"text": "A male speaking",
"prompt": "generate audio from the given caption: A male speaking"
},
"output": {}
},
{
"id": "scta_147",
"input": {
"text": "A woman speaks while delivering a speech",
"prompt": "generate audio from the given caption: A woman speaks while delivering a speech"
},
"output": {}
},
{
"id": "scta_447",
"input": {
"text": "Men speak followed by a small burst and people laughing",
"prompt": "generate audio from the given caption: Men speak followed by a small burst and people laughing"
},
"output": {}
},
{
"id": "scta_287",
"input": {
"text": "Some rustling with distant birds chirping and wind blowing",
"prompt": "generate audio from the given caption: Some rustling with distant birds chirping and wind blowing"
},
"output": {}
},
{
"id": "scta_123",
"input": {
"text": "A car meows and a woman speaks",
"prompt": "generate audio from the given caption: A car meows and a woman speaks"
},
"output": {}
},
{
"id": "scta_368",
"input": {
"text": "A man talking as an infant is crying followed by a man humming",
"prompt": "generate audio from the given caption: A man talking as an infant is crying followed by a man humming"
},
"output": {}
},
{
"id": "scta_096",
"input": {
"text": "A man speaking through a radio as a truck engine runs idle and a vehicle sctacelerates in the distance",
"prompt": "generate audio from the given caption: A man speaking through a radio as a truck engine runs idle and a vehicle sctacelerates in the distance"
},
"output": {}
},
{
"id": "scta_143",
"input": {
"text": "Humming of an idling engine",
"prompt": "generate audio from the given caption: Humming of an idling engine"
},
"output": {}
},
{
"id": "scta_239",
"input": {
"text": "A woman speaks with nearby buzzing of insects",
"prompt": "generate audio from the given caption: A woman speaks with nearby buzzing of insects"
},
"output": {}
},
{
"id": "scta_442",
"input": {
"text": "A series of plastic clicking as muffled rock music plays and audio static hisses in the bsctakground",
"prompt": "generate audio from the given caption: A series of plastic clicking as muffled rock music plays and audio static hisses in the bsctakground"
},
"output": {}
},
{
"id": "scta_097",
"input": {
"text": "A person whistles with wind blowing",
"prompt": "generate audio from the given caption: A person whistles with wind blowing"
},
"output": {}
},
{
"id": "scta_407",
"input": {
"text": "An engine chugging with muffled speech",
"prompt": "generate audio from the given caption: An engine chugging with muffled speech"
},
"output": {}
},
{
"id": "scta_122",
"input": {
"text": "A baby cries and women speak",
"prompt": "generate audio from the given caption: A baby cries and women speak"
},
"output": {}
},
{
"id": "scta_183",
"input": {
"text": "Metal scrapping against a wooden surfsctae followed by light sanding then metal scraping against a wooden surfsctae",
"prompt": "generate audio from the given caption: Metal scrapping against a wooden surfsctae followed by light sanding then metal scraping against a wooden surfsctae"
},
"output": {}
},
{
"id": "scta_202",
"input": {
"text": "A male speaking over a microphone",
"prompt": "generate audio from the given caption: A male speaking over a microphone"
},
"output": {}
},
{
"id": "scta_246",
"input": {
"text": "Ticking of a clock",
"prompt": "generate audio from the given caption: Ticking of a clock"
},
"output": {}
},
{
"id": "scta_305",
"input": {
"text": "A man is talking while plastic clsctaks followed by a popping explosion then a group of people talking and laughing",
"prompt": "generate audio from the given caption: A man is talking while plastic clsctaks followed by a popping explosion then a group of people talking and laughing"
},
"output": {}
},
{
"id": "scta_298",
"input": {
"text": "Wind blowing heavily into a microphone as ocean waves crash and leaves rustle",
"prompt": "generate audio from the given caption: Wind blowing heavily into a microphone as ocean waves crash and leaves rustle"
},
"output": {}
},
{
"id": "scta_351",
"input": {
"text": "A sewing msctahine running briefly",
"prompt": "generate audio from the given caption: A sewing msctahine running briefly"
},
"output": {}
},
{
"id": "scta_386",
"input": {
"text": "A person speaks followed by a burping sound and laughter",
"prompt": "generate audio from the given caption: A person speaks followed by a burping sound and laughter"
},
"output": {}
},
{
"id": "scta_395",
"input": {
"text": "Two men are speaking and paper is being shuffled",
"prompt": "generate audio from the given caption: Two men are speaking and paper is being shuffled"
},
"output": {}
},
{
"id": "scta_284",
"input": {
"text": "A vehicle door opening as a crow caws and birds chirp while vehicles drive by in the bsctakground",
"prompt": "generate audio from the given caption: A vehicle door opening as a crow caws and birds chirp while vehicles drive by in the bsctakground"
},
"output": {}
},
{
"id": "scta_125",
"input": {
"text": "Footsteps running on a hard surfsctae followed by liquid spraying then an animal growling as static plays in the bsctakground",
"prompt": "generate audio from the given caption: Footsteps running on a hard surfsctae followed by liquid spraying then an animal growling as static plays in the bsctakground"
},
"output": {}
},
{
"id": "scta_302",
"input": {
"text": "Birds chirp with a low whirring bsctakground noise",
"prompt": "generate audio from the given caption: Birds chirp with a low whirring bsctakground noise"
},
"output": {}
},
{
"id": "scta_223",
"input": {
"text": "A high frequency motor hums loudly and splashes water",
"prompt": "generate audio from the given caption: A high frequency motor hums loudly and splashes water"
},
"output": {}
},
{
"id": "scta_418",
"input": {
"text": "Woman laughing and talking with another man and woman while something is clanging",
"prompt": "generate audio from the given caption: Woman laughing and talking with another man and woman while something is clanging"
},
"output": {}
},
{
"id": "scta_219",
"input": {
"text": "A man talking followed by goats baaing then a cow mooing",
"prompt": "generate audio from the given caption: A man talking followed by goats baaing then a cow mooing"
},
"output": {}
},
{
"id": "scta_129",
"input": {
"text": "Ocean waves crashing and water splashing as wind blows into a microphone followed by a man talking",
"prompt": "generate audio from the given caption: Ocean waves crashing and water splashing as wind blows into a microphone followed by a man talking"
},
"output": {}
},
{
"id": "scta_420",
"input": {
"text": "An electronic motor buzzing and paper tearing followed by a bell chiming and a plastic click then a toilet flushing as paper crinkles in the bsctakground",
"prompt": "generate audio from the given caption: An electronic motor buzzing and paper tearing followed by a bell chiming and a plastic click then a toilet flushing as paper crinkles in the bsctakground"
},
"output": {}
},
{
"id": "scta_289",
"input": {
"text": "Water is trickling while wind is blowing in the bsctakground",
"prompt": "generate audio from the given caption: Water is trickling while wind is blowing in the bsctakground"
},
"output": {}
},
{
"id": "scta_444",
"input": {
"text": "A bleeping noise followed by a loud object in use",
"prompt": "generate audio from the given caption: A bleeping noise followed by a loud object in use"
},
"output": {}
},
{
"id": "scta_376",
"input": {
"text": "A saw running continuously",
"prompt": "generate audio from the given caption: A saw running continuously"
},
"output": {}
},
{
"id": "scta_291",
"input": {
"text": "Dog whimpering and barking together with rustling",
"prompt": "generate audio from the given caption: Dog whimpering and barking together with rustling"
},
"output": {}
},
{
"id": "scta_355",
"input": {
"text": "Mechanical click clsctaking",
"prompt": "generate audio from the given caption: Mechanical click clsctaking"
},
"output": {}
},
{
"id": "scta_294",
"input": {
"text": "A msctahine is making clicking sound as people talk in the bsctakground",
"prompt": "generate audio from the given caption: A msctahine is making clicking sound as people talk in the bsctakground"
},
"output": {}
},
{
"id": "scta_396",
"input": {
"text": "Two men talking as a truck engine runs idle and wind blows into a microphone",
"prompt": "generate audio from the given caption: Two men talking as a truck engine runs idle and wind blows into a microphone"
},
"output": {}
},
{
"id": "scta_340",
"input": {
"text": "A male speaking and then growling followed by more male speaking",
"prompt": "generate audio from the given caption: A male speaking and then growling followed by more male speaking"
},
"output": {}
},
{
"id": "scta_112",
"input": {
"text": "Footsteps and intermittent spraying",
"prompt": "generate audio from the given caption: Footsteps and intermittent spraying"
},
"output": {}
},
{
"id": "scta_179",
"input": {
"text": "Subway horn blows followed by the sound traveling down the rails",
"prompt": "generate audio from the given caption: Subway horn blows followed by the sound traveling down the rails"
},
"output": {}
},
{
"id": "scta_307",
"input": {
"text": "Repeated scraping",
"prompt": "generate audio from the given caption: Repeated scraping"
},
"output": {}
},
{
"id": "scta_432",
"input": {
"text": "A bell is ringing",
"prompt": "generate audio from the given caption: A bell is ringing"
},
"output": {}
},
{
"id": "scta_487",
"input": {
"text": "A baby is crying",
"prompt": "generate audio from the given caption: A baby is crying"
},
"output": {}
},
{
"id": "scta_481",
"input": {
"text": "A train running on railroad trsctaks drives by followed by a train whistle blowing and warning signals ringing",
"prompt": "generate audio from the given caption: A train running on railroad trsctaks drives by followed by a train whistle blowing and warning signals ringing"
},
"output": {}
}
]
} |