File size: 52,439 Bytes
6835659 | 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 | [
{
"id": "fs_001",
"freesound_id": 405136,
"caption": "Recorded in October 2017 in a German forest using a Zoom H2n. Loops seemlessly.",
"query": "forest ambience",
"domain": "nature",
"audio": "audio/fs_001_nature_Autumn_leaves_falling_on_forest_floor_(close,_loopable).wav",
"duration": 9.41656,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmo",
"autumn",
"fall",
"field-recording",
"forest",
"game",
"leaves"
]
},
{
"id": "fs_002",
"freesound_id": 792699,
"caption": "A #0:00 Wood Pigeon called, a #0:10 Black Woodpecker practiced its voice which was laughed at by #0:12 Green Woodpecker. \nMorning March in park estate Haanwijk Van Gogh National Park.\nForest / park am",
"query": "forest ambience",
"domain": "nature",
"audio": "audio/fs_002_nature_woodpeckers_Haanwijk_1206_PM_250306_1056.wav",
"duration": 20.4779,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmosphere",
"background-sound",
"bird",
"birds",
"birdsong",
"estate",
"field-recording"
]
},
{
"id": "fs_003",
"freesound_id": 735744,
"caption": "Female tawny owl, characteristic high-pitch hoot, recorded in a calm courtyard without any other sound. Exceptionally close, it was just in front of me, perched on the roof. We can even hear the noise",
"query": "forest ambience",
"domain": "nature",
"audio": "audio/fs_003_nature_Bird_-_Tawny_owl,_female.wav",
"duration": 12.9142,
"tags": [
"beak",
"bird",
"birds",
"bird-song",
"birdsong",
"chouette",
"field-recording",
"forest",
"hibou",
"hoot"
]
},
{
"id": "fs_004",
"freesound_id": 234391,
"caption": "This is the recording of an unknown bird singing mating calls.\r\nEffects: noise removal, basic EQ to clean it up",
"query": "birds singing nature",
"domain": "nature",
"audio": "audio/fs_004_nature_Bird_Chirps.wav",
"duration": 20.7505,
"tags": [
"bird",
"birds",
"birdsong",
"chirp",
"chirping",
"field-recording",
"nature",
"raw",
"tweet"
]
},
{
"id": "fs_005",
"freesound_id": 254082,
"caption": "Some busy Birds singing, recorded with a Zoom H6n X/Y mic. The sound was recorded in an open field in Vorarlberg/Austria",
"query": "birds singing nature",
"domain": "nature",
"audio": "audio/fs_005_nature_Birds_Chirping_Busy.wav.wav",
"duration": 22.8777,
"tags": [
"Animal",
"Birds",
"Chirp",
"Countryside",
"Field",
"Fiel-Recording",
"Forest",
"Nature",
"Singing"
]
},
{
"id": "fs_006",
"freesound_id": 266376,
"caption": "Birds singing in oostduinen park in Scheveningen, The Netherlands. Recorded with a zoom H4n using a Sony ECM-678/9X Shotgun Microphone.\r\nEvening- 08-03-2015\r\n",
"query": "birds singing nature",
"domain": "nature",
"audio": "audio/fs_006_nature_bird_in_oostduinen_17.wav.wav",
"duration": 26.0,
"tags": [
"birds",
"field-recording",
"nature",
"netherlands"
]
},
{
"id": "fs_007",
"freesound_id": 735332,
"caption": "Wind in bushes (common holly ore Ilex aquifolium).\nInland, 1.3 km from the North Sea and Schelde river in The Netherlands. Wind through bushes and trees. \n\n<img src=\"https://upload.wikimedia.org/wikip",
"query": "wind through trees",
"domain": "nature",
"audio": "audio/fs_007_nature_wind_bushes_coast_903_PM_240311_0680.wav",
"duration": 26.0108,
"tags": [
"ambiance",
"ambient",
"aquifolium",
"background-sound",
"bare",
"breeze",
"bushes",
"common-holly",
"field-recording",
"gale"
]
},
{
"id": "fs_008",
"freesound_id": 634032,
"caption": "Estate afternoon in spring, Sint Michielsgestel, NL EU.\n<a href=\"https://commons.wikimedia.org/wiki/File:Landgoed_Zegenwerp_Sint-Michielsgestel_03.jpg\" rel=\"nofollow\"><img alt=\"Landgoed Zegenwerp Sint",
"query": "wind through trees",
"domain": "nature",
"audio": "audio/fs_008_nature_estate_farm_noise_1153AM3_220509_0343.wav.wav",
"duration": 13.4398,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmosphere",
"background",
"background-sound",
"birds",
"birdsong",
"chorus",
"dawn"
]
},
{
"id": "fs_009",
"freesound_id": 812933,
"caption": "A howler monkey is calling in the evening jungle near Monteverde in Costa Rica. Some birds are singing, cicadas are chirping, and the wind is rustling through the trees. Recorded with an iPhone 12 Pro",
"query": "wind through trees",
"domain": "nature",
"audio": "audio/fs_009_nature_Howler_monkey_howling_in_the_evening_jungle.wav",
"duration": 29.4078,
"tags": [
"ape",
"field-recording",
"howler",
"jungle",
"monkey",
"monkeys"
]
},
{
"id": "fs_010",
"freesound_id": 671409,
"caption": "Rain in the jungle. This was in Karura Forest in Kenya",
"query": "rain forest",
"domain": "nature",
"audio": "audio/fs_010_nature_forest_heavy_rain_loop.wav.wav",
"duration": 21.0,
"tags": [
"Drops",
"Rain",
"Splash",
"Water"
]
},
{
"id": "fs_011",
"freesound_id": 187927,
"caption": "A short, simple recording of a Cardinal chirping in deep woods during a light rain. He gets closer toward the end of this 21 second recording---very simple, yet peaceful.\r\n\r\nI used by Zoom H4N recor",
"query": "rain forest",
"domain": "nature",
"audio": "audio/fs_011_nature_CardinalChirpingParabolicMP3VersionMay62013.mp3.wav",
"duration": 21.541,
"tags": [
"bird",
"cardinal",
"field-recording",
"forest",
"nature",
"nature-scape",
"sound-scape",
"woods"
]
},
{
"id": "fs_012",
"freesound_id": 399796,
"caption": "A recording of a Superb Lyrebird, near Bogong Village in Victoria, Australia. Note some raindrops falling on the recorder! It was a wet Spring day;)\r\n\r\nRecorded with a Zoom H1, post-production in Adob",
"query": "rain forest",
"domain": "nature",
"audio": "audio/fs_012_nature_Superb_Lyrebird_II.wav",
"duration": 28.4484,
"tags": [
"australia",
"birds",
"field-recording",
"forest",
"nature",
"rain"
]
},
{
"id": "fs_013",
"freesound_id": 667173,
"caption": "A scene from outdoors at night- a peaceful and serene soundscape with the sound of crickets and a wind chime.",
"query": "crickets night",
"domain": "nature",
"audio": "audio/fs_013_nature_Night_Wind_Chimes.wav",
"duration": 16.213,
"tags": [
"ambience",
"crickets",
"field-recording",
"fieldrecording",
"nature",
"night",
"sounds",
"soundscape",
"wind",
"windchimes"
]
},
{
"id": "fs_014",
"freesound_id": 746365,
"caption": "Southern Summer Evening Ambience with Crickets. Recorded in Middle Tennessee, on July 13th 2024. Licensed as Creative Commons 0. Enjoy!",
"query": "crickets night",
"domain": "nature",
"audio": "audio/fs_014_nature_Southern_Summer_Evening_Ambience_with_Crickets_4.wav",
"duration": 29.2804,
"tags": [
"ambience",
"bugs",
"cicadas",
"crickets",
"evening",
"field-recording",
"insects",
"nature",
"night",
"nighttime"
]
},
{
"id": "fs_015",
"freesound_id": 717766,
"caption": "A field next to Li River, outside Yangzhou. Crickets and frogs serenade those who traveled there, on boats, to see one of the most amazing musical theater spectacles in the world, Impression Sanjie Li",
"query": "crickets night",
"domain": "nature",
"audio": "audio/fs_015_nature_Li_River._Crickets_&_Frogs.wav",
"duration": 28.7373,
"tags": [
"Asia",
"China",
"crickets",
"field-recording",
"frogs",
"insects",
"Nature",
"night",
"river",
"Yangshuo"
]
},
{
"id": "fs_016",
"freesound_id": 441836,
"caption": "Thunder sound recorded with Tascam DR 07 and remastered with Adobe Audition",
"query": "thunder storm nature",
"domain": "nature",
"audio": "audio/fs_016_nature_Thunder_sound_effect_2.wav",
"duration": 18.2351,
"tags": [
"ambient",
"explosion",
"field-recording",
"lightning",
"nature",
"rain",
"rolling-thunder",
"shower",
"storm",
"strike"
]
},
{
"id": "fs_017",
"freesound_id": 234075,
"caption": "Rain medium - falling on soft surface by <a href=\"http://www.squeakyfish.com.au\" rel=\"nofollow\">Kyle Evans</a> is part of the <a href=\"http://www.thalamuslab.com/xsl/\" rel=\"nofollow\">XSL</a>, a free ",
"query": "thunder storm nature",
"domain": "nature",
"audio": "audio/fs_017_nature_Rain_medium_-_falling_on_soft_surface.wav",
"duration": 27.0404,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmosphere",
"background",
"background-sound",
"experimental",
"field-recording",
"lightning",
"nature"
]
},
{
"id": "fs_018",
"freesound_id": 750667,
"caption": "Thunder recorded during rainstorm",
"query": "thunder storm nature",
"domain": "nature",
"audio": "audio/fs_018_nature_Thunder_6.wav",
"duration": 13.7188,
"tags": [
"lightning",
"nature",
"rain",
"storm",
"thunder",
"weather"
]
},
{
"id": "fs_019",
"freesound_id": 552485,
"caption": "Water flowing from an above-ground stream into a sinkhole leading to an underground cave. Recording captures the gurgling of water running over rocks along with the deeper, bassy rumble of the undergr",
"query": "river stream flowing",
"domain": "nature",
"audio": "audio/fs_019_nature_Water_Flowing_into_Underground_Sinkhole.wav",
"duration": 22.8333,
"tags": [
"babbling",
"brook",
"cave",
"cavern",
"creek",
"field-recording",
"flowing",
"forest",
"gurgle",
"gurgling"
]
},
{
"id": "fs_020",
"freesound_id": 349067,
"caption": "Close field recording of water flowing through some rapids in a creek.\r\n\r\nRecorded at Springbrook National Park, Queensland using the Zoom H6 Mid-side module.",
"query": "river stream flowing",
"domain": "nature",
"audio": "audio/fs_020_nature_Water_Flowing_Through_Close_Rapids_6.wav",
"duration": 23.0639,
"tags": [
"brook",
"close",
"creek",
"field-recording",
"flow",
"flowing",
"gurgle",
"liquid",
"river",
"stream"
]
},
{
"id": "fs_021",
"freesound_id": 349068,
"caption": "Close field recording of water flowing through some rapids in a creek.\r\n\r\nRecorded at Springbrook National Park, Queensland using the Zoom H6 Mid-side module.",
"query": "river stream flowing",
"domain": "nature",
"audio": "audio/fs_021_nature_Water_Flowing_Through_Close_Rapids_5.wav",
"duration": 27.2537,
"tags": [
"brook",
"close",
"creek",
"field-recording",
"flow",
"flowing",
"gurgle",
"liquid",
"river",
"stream"
]
},
{
"id": "fs_022",
"freesound_id": 325506,
"caption": "Recorded Oct. 20 2015 at 2pm with Tascam DR-05 from balcony of downtown Vancouver BC apartment building. ",
"query": "city traffic ambience",
"domain": "urban",
"audio": "audio/fs_022_urban_CITY_AMBIENCE_for_CLEAN_LOOP.wav.wav",
"duration": 22.3608,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmos",
"atmosphere",
"background-sound",
"city",
"general-noise",
"soundscape",
"traffic"
]
},
{
"id": "fs_023",
"freesound_id": 473723,
"caption": "Recording of city ambience from inside my kitchen during daytime.\n\nRecorded and processed at 24bit 96kHz using the Tascam DR-40 Linear PCM Recorder.\n\nProcessing: Gain-staging and soft high and low fre",
"query": "city traffic ambience",
"domain": "urban",
"audio": "audio/fs_023_urban_Kitchen_Ambience_During_Daytime_.wav.wav",
"duration": 28.896,
"tags": [
"ambiance",
"ambience",
"ambient",
"Apartment",
"atmosphere",
"background",
"background-sound",
"cars",
"city",
"field-recording"
]
},
{
"id": "fs_024",
"freesound_id": 532683,
"caption": "Police Alarm in Street of Paris,\nRecorded with zoom H2n in August 2020,\nV. SCHOEFFTER",
"query": "city traffic ambience",
"domain": "urban",
"audio": "audio/fs_024_urban_police_in_Paris.wav.wav",
"duration": 29.788,
"tags": [
"alarm",
"ambience",
"ambient",
"atmosphere",
"car",
"city",
"emergency",
"field-recording",
"general-noise",
"klaxon"
]
},
{
"id": "fs_025",
"freesound_id": 267246,
"caption": "Crowd cheering at Talk & Play event in Berlin.\r\n\r\n<strong>Please include \"BerlinGameScene.com\" in your credits!</strong>\r\n\r\nThank you and enjoy the sound!",
"query": "crowd people talking",
"domain": "urban",
"audio": "audio/fs_025_urban_BerlinGameScene.com_Crowd_Cheer_4.wav",
"duration": 7.10692,
"tags": [
"applause",
"cheer",
"cheering",
"crowd",
"mass",
"meeting",
"people",
"positive",
"yay"
]
},
{
"id": "fs_026",
"freesound_id": 438197,
"caption": "Woman describes her son reaction to a new movie announcement. Russian language and laughing is heard.",
"query": "crowd people talking",
"domain": "urban",
"audio": "audio/fs_026_urban_\u0414\u0430_\u043b\u0430\u0434\u043d\u043e.wav",
"duration": 10.7243,
"tags": [
"chat",
"chatting",
"crowd",
"group",
"laughing",
"people",
"public",
"russian",
"talking"
]
},
{
"id": "fs_027",
"freesound_id": 674257,
"caption": "Crowded Restaurant",
"query": "crowd people talking",
"domain": "urban",
"audio": "audio/fs_027_urban_Restaurant_5.mp3.wav",
"duration": 28.4092,
"tags": [
"bar",
"bartending",
"cafe",
"chatter",
"crowd",
"dishes",
"people",
"pub",
"restaurant",
"talking"
]
},
{
"id": "fs_028",
"freesound_id": 221926,
"caption": "Recorded on Marantz PMD661 with Rode NTG-2.\r\n\r\nThe sound of an industrial grinder being used on metal.",
"query": "construction site",
"domain": "urban",
"audio": "audio/fs_028_urban_Industrial_grinder.wav",
"duration": 24.4065,
"tags": [
"building",
"construction",
"field-recording",
"industrial",
"machine",
"site"
]
},
{
"id": "fs_029",
"freesound_id": 221932,
"caption": "Recorded on Marantz PMD661 with Rode NTG-2.\r\n\r\nThe sound of continuos mechanical whirring coming from industrial boilers.",
"query": "construction site",
"domain": "urban",
"audio": "audio/fs_029_urban_Continuous_mechanical_whir_.wav",
"duration": 26.7684,
"tags": [
"building",
"construction",
"field-recording",
"industrial",
"machine",
"site"
]
},
{
"id": "fs_030",
"freesound_id": 784912,
"caption": "Recording of a electric saw in constucton site.",
"query": "construction site",
"domain": "urban",
"audio": "audio/fs_030_urban_Electric_saw.wav",
"duration": 26.8887,
"tags": [
"construction",
"industrial",
"machine",
"noise",
"power",
"powertool",
"saw",
"sfx",
"soundeffect",
"tool"
]
},
{
"id": "fs_031",
"freesound_id": 425848,
"caption": "This sound effect was recorded with high quality sound equipment and comes from a sound library called Renault Master F3500 dCi 135 which is pack of 102 high quality audio files with a total length of",
"query": "car horn city",
"domain": "urban",
"audio": "audio/fs_031_urban_Renault_Master_F3500_dCi135_Foley_Horn_Outside_Mono.wav.wav",
"duration": 7.73133,
"tags": [
"automobile",
"bus",
"car",
"city",
"diesel",
"doppler",
"engine",
"exterior",
"horn",
"master"
]
},
{
"id": "fs_032",
"freesound_id": 711026,
"caption": "People's voices, whistles and talking in the background, Carabinieri siren in the distance in the background, car horn sounds.",
"query": "car horn city",
"domain": "urban",
"audio": "audio/fs_032_urban_Street_atmosphere_and_sounds_in_Rome.wav",
"duration": 23.9166,
"tags": [
"ambience",
"ambient",
"car",
"city",
"field-recording",
"horn",
"people",
"police",
"siren",
"soundscape"
]
},
{
"id": "fs_033",
"freesound_id": 575262,
"caption": "City, distant car alarm horn, Toronto. Zoom H2 internal mics.",
"query": "car horn city",
"domain": "urban",
"audio": "audio/fs_033_urban_Distant_horn_beeps_09.flac.wav",
"duration": 16.5417,
"tags": [
"alarm",
"car",
"horn"
]
},
{
"id": "fs_034",
"freesound_id": 451720,
"caption": "We recorded this sound while our trip through Hawaii. You can watch the travel video about Hawaii HERE: <a href=\"https://youtu.be/V9YfOn_NoxI\" rel=\"nofollow\">https://youtu.be/V9YfOn_NoxI</a>\nYou can u",
"query": "subway train metro",
"domain": "urban",
"audio": "audio/fs_034_urban_Underground_Train_Station_Ambience.wav",
"duration": 21.6541,
"tags": [
"Ambience",
"berlin",
"locomotive",
"Metro",
"platform",
"s-bahn",
"Station",
"stuttgart",
"Subway",
"Train"
]
},
{
"id": "fs_035",
"freesound_id": 181927,
"caption": "This is the usual start sequence of a line 5 subway train in Paris, France. It includes a start buzzer, the sound of the door-closing mechanism, a blast of compressed air beeing released (probably som",
"query": "subway train metro",
"domain": "urban",
"audio": "audio/fs_035_urban_subwaystartsequence.wav.wav",
"duration": 14.574,
"tags": [
"doors",
"field-recording",
"metro",
"Paris-subway",
"subway",
"tone",
"underground"
]
},
{
"id": "fs_036",
"freesound_id": 368650,
"caption": "Recorder/Mic: Zoom H4n Pro (Stereo X-Y)",
"query": "subway train metro",
"domain": "urban",
"audio": "audio/fs_036_urban_Train,_Subway,_Pass_By,_Under_Bridge_Perspective.wav",
"duration": 20.7371,
"tags": [
"metro",
"pass",
"rumble",
"subway",
"train",
"underground"
]
},
{
"id": "fs_037",
"freesound_id": 479073,
"caption": "This sound was recorded on a busy market street in Somalia. You hear the man in the background speaking to his donkeys asking them to speed up.",
"query": "street market",
"domain": "urban",
"audio": "audio/fs_037_urban_SFX_Donkey_Cart.MP3.wav",
"duration": 8.89576,
"tags": [
"ambiance",
"cart",
"Donkey",
"Field",
"recording",
"street"
]
},
{
"id": "fs_038",
"freesound_id": 346960,
"caption": "Sound recorded at a french street market (Albi). Date 26/3/2016. \r\nRecorded using Voice recording app on iPhone 5s.",
"query": "street market",
"domain": "urban",
"audio": "audio/fs_038_urban_people_talking_at_street_market.wav",
"duration": 12.2587,
"tags": [
"french",
"laugh",
"market",
"people",
"street",
"talking"
]
},
{
"id": "fs_039",
"freesound_id": 364897,
"caption": "A guys shouting to promote a restaurant (I believe), in the Shinjuku area of Tokyo (lots of electronics and entertainment shops, etc.). It seems street promotors often make a kind of nasal voice, perh",
"query": "street market",
"domain": "urban",
"audio": "audio/fs_039_urban_Japan_Tokyo_Shinjuku_Street_Promoter_Yelling_City.wav.wav",
"duration": 25.506,
"tags": [
"advertisement",
"advertiser",
"commercial",
"Japan",
"Japanese",
"market",
"nasal-voice",
"promotion",
"restaurant",
"seller"
]
},
{
"id": "fs_040",
"freesound_id": 395032,
"caption": "Small waves on sand-beach recorded close.\r\n\r\nLocation; Beach Westduin, Vlissingen, Zeeland, Netherlands (Holland), Europe. Geotag 51.46261 3.52789 \r\n\r\nGear chain: Sennheiser mkh30/50 MS, in Rycote cyc",
"query": "ocean waves beach",
"domain": "water",
"audio": "audio/fs_040_water_waves_close_coast_small_004.wav.wav",
"duration": 12.6395,
"tags": [
"beach",
"breaking",
"breaking-waves",
"close",
"coast",
"coastal",
"crashing",
"field-recording",
"gentle",
"lapping"
]
},
{
"id": "fs_041",
"freesound_id": 627358,
"caption": "One small wave on sand-beach recorded close. MORE IN THIS PACK.\n\nThank Cees for all the effort extracting these waves out of my recordings.\n\nEdited: 2 film frames(24 fps) fade-in and fade-out. Normali",
"query": "ocean waves beach",
"domain": "water",
"audio": "audio/fs_041_water_wave_sand_beach_012.wav.wav",
"duration": 5.95833,
"tags": [
"1",
"beach",
"breaking",
"breaking-waves",
"close",
"coast",
"coastal",
"crashing",
"field-recording",
"gentle"
]
},
{
"id": "fs_042",
"freesound_id": 276923,
"caption": "Waves/water over mall shells on a sandy beach. It gives a nice tickling sound. \r\nClose recording (10cm from water and shells).\r\n\r\nRecorded: North-Sea - Schelde, Dishoek, Westduin-beach, zeeland, the N",
"query": "ocean waves beach",
"domain": "water",
"audio": "audio/fs_042_water_waves_over_mall_shells_01_150515_00.wav.wav",
"duration": 14.318,
"tags": [
"ambience",
"ambient",
"Atlantic",
"background-sound",
"beach",
"breaking",
"bubbles",
"calm",
"coast",
"coastal"
]
},
{
"id": "fs_043",
"freesound_id": 823199,
"caption": "The sounds of rain falling on a plastic roof. Recorded 27th August in Somerset, England. Recorded with a Google Pixel 9a phone.\n\nI'm a YouTuber who collects sounds for my videos. I want to share them ",
"query": "rain on roof",
"domain": "water",
"audio": "audio/fs_043_water_Rain_on_a_Plastic_Roof.wav",
"duration": 22.2556,
"tags": [
"drops",
"falling",
"house",
"rain",
"raindrops",
"roof",
"water",
"weather",
"wind"
]
},
{
"id": "fs_044",
"freesound_id": 690223,
"caption": "Waterfall - Strong - Far Recording - Loop.\n\nRecorded in Skogafoss in Iceland.\n\nGear: Zoom H5.\nFile: 48khz, 24 bit, Stereo, WAV.",
"query": "waterfall flowing",
"domain": "water",
"audio": "audio/fs_044_water_Ambiance_Waterfall_Big_Skogafoss_Far_Loop_Stereo_02.wav.wav",
"duration": 30.0,
"tags": [
"ambiance",
"atmosphere",
"field-recording",
"flow",
"iceland",
"Iceland",
"loop",
"nature",
"Skogafoss",
"soundscape"
]
},
{
"id": "fs_045",
"freesound_id": 786171,
"caption": "Recorded with Zoom H4n Recorder by a stream near a waterfall. No need to give credit. Use it for whatever you want. Enjoy!!",
"query": "waterfall flowing",
"domain": "water",
"audio": "audio/fs_045_water_Water_Stream_1.wav",
"duration": 26.0,
"tags": [
"creek",
"flow",
"flowing",
"river",
"stream",
"water"
]
},
{
"id": "fs_046",
"freesound_id": 523022,
"caption": "The churning white water of a rushing river cut into a perfectly seemless loop. Recorded on location during a video shoot using in camera microphone and then later processed in my DAW. Proof I haven't",
"query": "waterfall flowing",
"domain": "water",
"audio": "audio/fs_046_water_Rushing_River_Loop.wav",
"duration": 11.829,
"tags": [
"ambient",
"brook",
"cascade",
"creek",
"current",
"environment",
"field-recording",
"flow",
"flowing",
"nature"
]
},
{
"id": "fs_047",
"freesound_id": 514800,
"caption": "A water stage game loop!\n\nTo use this song, please, make a donation of any amount more than 1 dollar to my pay pal:\n<a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=UNV52MULJ",
"query": "lake calm water",
"domain": "water",
"audio": "audio/fs_047_water_Water_Game_Theme_Loop_2.wav.wav",
"duration": 8.47116,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmosphere",
"background",
"calm",
"dark",
"deep",
"feeling",
"game"
]
},
{
"id": "fs_048",
"freesound_id": 627623,
"caption": "Small waves 5-10 cm high on sand-beach recorded close 40 cm. Clean recording. MORE IN THIS PACK.\n\nThank Cees for all the effort extracting these waves out of my recordings.\n\nEdited: 2 film frames(24 f",
"query": "lake calm water",
"domain": "water",
"audio": "audio/fs_048_water_waves_sand_beach_048.wav.wav",
"duration": 8.75,
"tags": [
"beach",
"breaking",
"breaking-waves",
"calm",
"close",
"coast",
"coastal",
"crashing",
"field-recording",
"gentle"
]
},
{
"id": "fs_049",
"freesound_id": 627698,
"caption": "Small waves 5-10 cm high on sand-beach recorded close 40 cm. Clean recording. MORE IN THIS PACK.\n\nThank Cees for all the effort extracting these waves out of my recordings.\n\nEdited: 2 film frames(24 f",
"query": "lake calm water",
"domain": "water",
"audio": "audio/fs_049_water_waves_sand_beach_013.wav.wav",
"duration": 7.54167,
"tags": [
"beach",
"breaking",
"breaking-waves",
"calm",
"close",
"coast",
"coastal",
"crashing",
"field-recording",
"gentle"
]
},
{
"id": "fs_050",
"freesound_id": 369494,
"caption": "This was created by recording the sound of rain as it landed in a puddle on my front yard. It sounds similar to my 'Rain Hitting Pavement' sound, but with the added stream-like sounds made by the pudd",
"query": "rain puddle dripping",
"domain": "water",
"audio": "audio/fs_050_water_Rain_Hitting_Puddle.wav",
"duration": 15.872,
"tags": [
"drip",
"dripping",
"puddle",
"rain",
"raining",
"splashes",
"water",
"wet"
]
},
{
"id": "fs_051",
"freesound_id": 202898,
"caption": "Hard rain in a puddle",
"query": "rain puddle dripping",
"domain": "water",
"audio": "audio/fs_051_water_EXT_RainInPuddle.wav.wav",
"duration": 18.6813,
"tags": [
"dripping",
"drips",
"exterior",
"hard",
"precipitation",
"puddle",
"rain"
]
},
{
"id": "fs_052",
"freesound_id": 168128,
"caption": "Standing in an alcove in front of my door, it's raining quite hard; drops approximately half an inch in diameter. A car is somewhat audible towards the end, but it's rather faint. Every now and then t",
"query": "rain puddle dripping",
"domain": "water",
"audio": "audio/fs_052_water_Heavy_Rain,_Outside.wav",
"duration": 20.8995,
"tags": [
"field-recording",
"heavy",
"outdoors",
"rain",
"storm"
]
},
{
"id": "fs_053",
"freesound_id": 493076,
"caption": "Enjoy my new generation of udnerwater ambiences. Will be happy for any feedback.\nCheck the full collection here:\n<a href=\"https://www.asoundeffect.com/sound-library/dive-deep-2/\" rel=\"nofollow\">https:",
"query": "underwater ambience",
"domain": "water",
"audio": "audio/fs_053_water_09_Stream,_Dirty_Sewer,_Dark,_Trickling,_Burbling,_Flowing,_Underwa.wav",
"duration": 30.0,
"tags": [
"ambience",
"deep",
"diver",
"ocean",
"pool",
"scuba",
"sea",
"underwater",
"water"
]
},
{
"id": "fs_054",
"freesound_id": 246156,
"caption": "suspense metallic underwater",
"query": "underwater ambience",
"domain": "water",
"audio": "audio/fs_054_water_15_ca_pads.wav.wav",
"duration": 11.9714,
"tags": [
"amb",
"ambiance",
"ambience",
"ambient",
"atmo",
"atmos",
"atmosphere",
"atmospheric",
"background-sound",
"city"
]
},
{
"id": "fs_055",
"freesound_id": 493077,
"caption": "Enjoy my new generation of udnerwater ambiences. Will be happy for any feedback.\nCheck the full collection here:\n<a href=\"https://www.asoundeffect.com/sound-library/dive-deep-2/\" rel=\"nofollow\">https:",
"query": "underwater ambience",
"domain": "water",
"audio": "audio/fs_055_water_12_Stream,_Muddy_Current,_Dark,_Trickling,_Drips,_Flowing,_Underwat.wav",
"duration": 30.0,
"tags": [
"ambience",
"deep",
"diver",
"ocean",
"pool",
"scuba",
"sea",
"underwater",
"water"
]
},
{
"id": "fs_056",
"freesound_id": 818647,
"caption": "Field recording. Babbling brook in North Georgia, United States. Recorded April 7th, 2025, using iPhone 11, version 16.2, and Voice Memos application--no other microphones, mufflers, or modification o",
"query": "stream babbling brook",
"domain": "water",
"audio": "audio/fs_056_water_r18_babbling_brook.wav",
"duration": 17.8933,
"tags": [
"babbling",
"brook",
"creek",
"flowing",
"gurgle",
"stream",
"trickle"
]
},
{
"id": "fs_057",
"freesound_id": 254335,
"caption": "Running water flowing\r\n\r\nRecorded and processed with the following equipment:\r\n\r\nInterfaces:\r\nfocusrite scarlett 2i2\r\nAlesis firewire io14\r\n\r\nMicrophones:\r\nRode NT1000\r\nSE 2200 A\r\nAKG C1000s\r\nSuperlux",
"query": "stream babbling brook",
"domain": "water",
"audio": "audio/fs_057_water_Running_water_flowing.wav",
"duration": 12.7299,
"tags": [
"ambient",
"babbling",
"brook",
"bubbling",
"creek",
"flow",
"flowing",
"gurgle",
"gurgling",
"liquid"
]
},
{
"id": "fs_058",
"freesound_id": 805163,
"caption": "Water babbling in a small creek",
"query": "stream babbling brook",
"domain": "water",
"audio": "audio/fs_058_water_Creek_02.wav",
"duration": 16.1378,
"tags": [
"brook",
"creek",
"nature",
"river",
"stream",
"water"
]
},
{
"id": "fs_059",
"freesound_id": 477191,
"caption": "a warm day, the sound of water moving in the harbor: summertime and the livin\u00b4is easy",
"query": "harbor boats water",
"domain": "water",
"audio": "audio/fs_059_water_2019-06-14_Nyord_Hafen_2_mono_niere.wav.wav",
"duration": 27.9947,
"tags": [
"boats",
"splash",
"water",
"wharbour"
]
},
{
"id": "fs_060",
"freesound_id": 753722,
"caption": "Marina. Summer ambiance in the calm marina \"Lage-Zwaluwe\", the Netherlands.\n\n<img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Buitenhaven_Lage-Zwaluwe_02.jpg/800px-Buitenhaven_Lage-",
"query": "harbor boats water",
"domain": "water",
"audio": "audio/fs_060_water_Ambiance_marina_1154_AM_220801_0468.wav",
"duration": 27.2903,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmos",
"atmosphere",
"atmospheric",
"background-sound",
"boat",
"engine",
"field"
]
},
{
"id": "fs_061",
"freesound_id": 744723,
"caption": "Clear recording of single thunder sound during a small storm. I got very lucky when recording these since the rain had already passed but the thunder sounds could still be heard clearly in my back yar",
"query": "thunder lightning storm",
"domain": "nature",
"audio": "audio/fs_061_nature_Thunder_08.wav",
"duration": 18.9852,
"tags": [
"field-recording",
"lightning",
"nature",
"sound-design",
"storm",
"thunder",
"thunder-storm",
"thunderstorm",
"weather"
]
},
{
"id": "fs_062",
"freesound_id": 744766,
"caption": "Hit a hill right in front of me",
"query": "thunder lightning storm",
"domain": "nature",
"audio": "audio/fs_062_nature_Close_lightning_strike.wav",
"duration": 21.9543,
"tags": [
"lightning",
"loud",
"storm",
"thunder",
"thunder-storm",
"thunderstorm",
"weather"
]
},
{
"id": "fs_063",
"freesound_id": 237732,
"caption": "ATTENTION- Please leave a comment saying what you plan to use the sound for, I am interested.\r\nRain and Thunder",
"query": "thunder lightning storm",
"domain": "nature",
"audio": "audio/fs_063_nature_Rain_and_Thunder_3.wav",
"duration": 27.5461,
"tags": [
"field-recording",
"lightning",
"nature",
"rain",
"rainstorm",
"storm",
"thunder",
"thunder-storm",
"thunderstorm",
"weather"
]
},
{
"id": "fs_064",
"freesound_id": 768870,
"caption": "Heavy rain recorded outside of home.",
"query": "heavy rain",
"domain": "nature",
"audio": "audio/fs_064_nature_heavy_rain_outside.wav",
"duration": 26.5,
"tags": [
"field-recording",
"nature",
"rain",
"storm",
"weather"
]
},
{
"id": "fs_065",
"freesound_id": 316895,
"caption": "Recording of really heavy rain with distant thunder. This is a short segment taken from Heavy_Rain_Thunder_UK_Cambridge.wav in case you only want a couple of seconds.\r\nEquipment used: Zoom H4 recorder",
"query": "heavy rain",
"domain": "nature",
"audio": "audio/fs_065_nature_Heavy_Rain_Thunder_UK_Cambridge_Short.wav.wav",
"duration": 11.1787,
"tags": [
"distant-thunder",
"Heavy-rain",
"rain",
"raining",
"shower",
"thunder",
"thunder-storm",
"weather"
]
},
{
"id": "fs_066",
"freesound_id": 828933,
"caption": "The Sound of Heavy Rain.\n\n48 KHz / 24 bit. Recorded with a ZOOM H6 and a Sennheiser MKE 600 Shotgun Microphone. Use Freely and Enjoy. Go Create!!!",
"query": "heavy rain",
"domain": "nature",
"audio": "audio/fs_066_nature_Heavy_Rain.wav",
"duration": 25.0987,
"tags": [
"Environment",
"Nature",
"Rain",
"Storm",
"Water",
"Weather"
]
},
{
"id": "fs_067",
"freesound_id": 522752,
"caption": "Storm (5-7 bft) rushes sideways along the facade of a building. Howling wind and rain. Sound recorded indoors 50cm from windows. \nNot spectacular. Just clear that the wind is blowing and bouncing outd",
"query": "wind howling",
"domain": "nature",
"audio": "audio/fs_067_nature_room-tone_wind_rain_11_200216_0114.wav.wav",
"duration": 7.40031,
"tags": [
"ambience",
"ambient",
"apartment",
"atmosphere",
"atmospheric",
"background-sound",
"blowing",
"bouncing",
"breeze",
"building"
]
},
{
"id": "fs_068",
"freesound_id": 463893,
"caption": "The wind ajar trough a door-gap indoors (recorded 10cm from gap). MORE (short) IN THIS PACK. Life recorded.\nGear chain: Sennheiser mkh30/50 MS, in Rycote cyclone small, windjammer > Sound Devices 3",
"query": "wind howling",
"domain": "nature",
"audio": "audio/fs_068_nature_wind_gap_indoors_013_170305_1100.wav.wav",
"duration": 25.7202,
"tags": [
"air-flow",
"air-stream",
"ajar",
"ambience",
"ambient",
"atmo",
"atmosphere",
"atmospheric",
"background-sound",
"blast"
]
},
{
"id": "fs_069",
"freesound_id": 484727,
"caption": "Howling recorded near half-open window. EM172 Matched Stereo Pair (Clippy XLR, by FEL Communications Ltd) into Sound Devices Mixpre-3",
"query": "wind howling",
"domain": "nature",
"audio": "audio/fs_069_nature_20190809.howling131.wav.wav",
"duration": 22.4803,
"tags": [
"field-recording",
"howling",
"wind"
]
},
{
"id": "fs_070",
"freesound_id": 251661,
"caption": "Recording of the tires of a flat bed trailer going over a gravel path. This was from a hayride where I was sitting in the back with a bunch of kids being pulled by the tractor. Recorder was just a cou",
"query": "hailstorm",
"domain": "nature",
"audio": "audio/fs_070_nature_Tires_on_Gravel_Road_1.wav",
"duration": 12.8261,
"tags": [
"ambient",
"background",
"car",
"country",
"cracking",
"crackle",
"crunch",
"crunching",
"dirt",
"driving"
]
},
{
"id": "fs_071",
"freesound_id": 371771,
"caption": "A hailstorm is coming very fast, so quickly that the speaker don't really feel safe. A Little easy job. The speaker got some problem. The recording was performed on inside of a small greenhouse. The h",
"query": "hailstorm",
"domain": "nature",
"audio": "audio/fs_071_nature_novasoundhail260.wav.wav",
"duration": 21.7378,
"tags": [
"forecast",
"hail",
"radio",
"speakerr",
"sudden",
"surprise",
"weather"
]
},
{
"id": "fs_072",
"freesound_id": 394489,
"caption": "Raekuuro ikkunaa vasten. Recorded with Tascam DR-05V2.",
"query": "hailstorm",
"domain": "nature",
"audio": "audio/fs_072_nature_Raekuuro_ikkunaa_vasten___Hail_hitting_against_a_window.wav",
"duration": 24.0056,
"tags": [
"comfy",
"hail",
"hailstorm",
"rae",
"raekuuro",
"rain",
"s",
"sade",
"weather",
"window"
]
},
{
"id": "fs_073",
"freesound_id": 400916,
"caption": "Several dogs barking, some sounds recorded up close, while some can be heard in the background.",
"query": "dog barking",
"domain": "nature",
"audio": "audio/fs_073_nature_dogs_barking_mono_4824.wav.wav",
"duration": 24.8088,
"tags": [
"animal",
"bark",
"barking",
"canine",
"dog",
"dogs",
"woof"
]
},
{
"id": "fs_074",
"freesound_id": 635113,
"caption": "Dog barking",
"query": "dog barking",
"domain": "nature",
"audio": "audio/fs_074_nature_dog_barking.wav.wav",
"duration": 6.8091,
"tags": [
"bark",
"barking",
"barks",
"dog",
"dogs",
"woof"
]
},
{
"id": "fs_075",
"freesound_id": 553188,
"caption": "Barking Shiba Inu",
"query": "dog barking",
"domain": "nature",
"audio": "audio/fs_075_nature_Barking_Dog.wav",
"duration": 6.4707,
"tags": [
"animal",
"bark",
"barking",
"Dog",
"small"
]
},
{
"id": "fs_076",
"freesound_id": 364893,
"caption": "My four month old kitten purring",
"query": "cat purring",
"domain": "nature",
"audio": "audio/fs_076_nature_Cat_purring.wav",
"duration": 23.0,
"tags": [
"animal",
"cat",
"feline",
"kitten",
"kitty",
"pet",
"purr",
"purring"
]
},
{
"id": "fs_077",
"freesound_id": 532216,
"caption": "my cat eating, she's purring a little",
"query": "cat purring",
"domain": "nature",
"audio": "audio/fs_077_nature_cat_eating.wav.wav",
"duration": 9.864,
"tags": [
"animal",
"cat",
"cat-eating",
"cats",
"eating",
"pet",
"pets",
"purr",
"purring"
]
},
{
"id": "fs_078",
"freesound_id": 505445,
"caption": "Close mic on a cat purring.",
"query": "cat purring",
"domain": "nature",
"audio": "audio/fs_078_nature_Cat_Purring.wav",
"duration": 18.4628,
"tags": [
"animal",
"cat",
"pet",
"purr"
]
},
{
"id": "fs_079",
"freesound_id": 711995,
"caption": "Blackbirds in estate Zegenwerp in the afternoon on wonderful spring day. Many other birds and some insects around.\n<img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Landgoed_Zegenwer",
"query": "birds dawn chorus",
"domain": "nature",
"audio": "audio/fs_079_nature_estate_spring_NL_EU_1235PM_220509_0434.wav",
"duration": 20.4253,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmosphere",
"background",
"background-sound",
"birds",
"birdsong",
"blackbird",
"chorus"
]
},
{
"id": "fs_080",
"freesound_id": 730297,
"caption": "Early Sunday farmland morning in spring on the edge of forest and farm-fields. Birds around in the trees.\n<img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Hooghei_01.jpg/800px-Hoogh",
"query": "birds dawn chorus",
"domain": "nature",
"audio": "audio/fs_080_nature_farmfield_817_AM_NL_EU_220515_0345.wav",
"duration": 29.0458,
"tags": [
"ambiance",
"ambience",
"ambient",
"birds",
"birdsong",
"bushes",
"chorus",
"dawn",
"early",
"farmland"
]
},
{
"id": "fs_081",
"freesound_id": 619325,
"caption": "Dawn chorus. Early morning forest/field ambience Loonse en Drunense Duinen near Giersbergen In the province North-Brabant in The Netherlands. \n<a href=\"https://commons.wikimedia.org/wiki/File:Bos_bij_",
"query": "birds dawn chorus",
"domain": "nature",
"audio": "audio/fs_081_nature_edge_forest_735AM_210221_0257.wav.wav",
"duration": 15.3626,
"tags": [
"ambiance",
"ambience",
"ambient",
"atmospheric",
"background-sound",
"bird",
"birds",
"birdsong",
"chorus",
"dawn"
]
},
{
"id": "fs_082",
"freesound_id": 586934,
"caption": "Frog calls next to a lake, recorded late at night. There were hundreds of them. Check out my page for more spots of the same \u00ab\u00a0event\u00a0\u00bb!\n\nPlease note this sound is under the CC BY license which means y",
"query": "frogs pond night",
"domain": "nature",
"audio": "audio/fs_082_nature_frogs_lake_night_spot_3.wav.wav",
"duration": 25.2608,
"tags": [
"ambiance",
"ambience",
"calls",
"croak",
"croaking",
"evening",
"field-recording",
"frog",
"frogs",
"lake"
]
},
{
"id": "fs_083",
"freesound_id": 570306,
"caption": "the frogs are loud at night. recorded in a wet field near a tree line.",
"query": "frogs pond night",
"domain": "nature",
"audio": "audio/fs_083_nature_night-frogs2.wav.wav",
"duration": 29.9861,
"tags": [
"field-recording",
"forest",
"frog",
"frogs",
"insects",
"nature",
"night",
"night-time",
"pond",
"spring"
]
},
{
"id": "fs_084",
"freesound_id": 32511,
"caption": "Binaural recording of Pacific Chorus frogs (Pseudacris regilla) in a backyard pond. The mics were right at the edge of the pond, at ground level, so the frogs are just a few inches from the mics. Th",
"query": "frogs pond night",
"domain": "nature",
"audio": "audio/fs_084_nature_200703101950PacificChorusFrogs1.wav.wav",
"duration": 27.7045,
"tags": [
"ambience",
"binaural",
"close",
"evening",
"field-recording",
"frogs",
"night",
"pacific-chorus-frog",
"pond"
]
},
{
"id": "fs_085",
"freesound_id": 397069,
"caption": "Bumblebee nest in old, half open, barn in village garden. A nest of sipping young blackbird chicks. \r\n\r\nDate/time: June 1st Thursday 2017\r\n\r\nWeather: 23c, clear sky, wind NE 2bft, 1020 hPa. \r\n\r\nLocati",
"query": "insects buzzing",
"domain": "nature",
"audio": "audio/fs_085_nature_bees_and_birds_170601_1190.wav.wav",
"duration": 20.3328,
"tags": [
"ambience",
"ambient",
"around",
"bee",
"beehive",
"beep",
"beeping",
"bees",
"birds",
"blackbirds"
]
},
{
"id": "fs_086",
"freesound_id": 268956,
"caption": "Short field recordings made with my iPhone in August 2013 while visiting family on one of the many small residential islands located in Beaufort, South Carolina (of Forrest Gump, The Prince of Tides, ",
"query": "insects buzzing",
"domain": "nature",
"audio": "audio/fs_086_nature_Cicada_Insects_8_25_13_10_06_PM_1.wav.wav",
"duration": 22.5451,
"tags": [
"Beaufort",
"birds",
"cicadas",
"crickets",
"day",
"field-recording",
"forest",
"frogs",
"hot",
"humid"
]
},
{
"id": "fs_087",
"freesound_id": 536656,
"caption": "Cicadas buzzing on a very hot August day in Chania, Crete",
"query": "insects buzzing",
"domain": "nature",
"audio": "audio/fs_087_nature_Cicadas.wav",
"duration": 12.6084,
"tags": [
"cicadas",
"Crete",
"crickets",
"field-recording",
"Greece",
"insects",
"nature",
"outdoors",
"summer"
]
},
{
"id": "fs_088",
"freesound_id": 682192,
"caption": "Typing on a mechanical keyboard to help create that office background ambience. Variant 2",
"query": "office ambience typing",
"domain": "urban",
"audio": "audio/fs_088_urban_Typing_2.wav.wav",
"duration": 28.9918,
"tags": [
"Foley",
"Mechanical-keyboard",
"SFX",
"Typing"
]
},
{
"id": "fs_089",
"freesound_id": 534123,
"caption": "Office ambience loop with no voices to be heard. There are multiple phones ringing, quick typing and printing. Could be useful if you want to put dialogue on top, or just want to represent a 100% focu",
"query": "office ambience typing",
"domain": "urban",
"audio": "audio/fs_089_urban_Busy_Office_No_People_Loop.wav",
"duration": 24.1488,
"tags": [
"busy",
"computer",
"keyboard",
"loop",
"office",
"print",
"telephone",
"typing",
"working",
"workplace"
]
},
{
"id": "fs_090",
"freesound_id": 223101,
"caption": "Typing on a keyboard. Great sound effect for office ambience, and anything else you need. ",
"query": "office ambience typing",
"domain": "urban",
"audio": "audio/fs_090_urban_Keyboard_typing.WAV.wav",
"duration": 24.7293,
"tags": [
"click",
"computer",
"home",
"internet",
"key",
"keyboard",
"keystroke",
"laptop",
"office",
"search"
]
},
{
"id": "fs_091",
"freesound_id": 534483,
"caption": "Frying meat on the pan",
"query": "kitchen cooking",
"domain": "urban",
"audio": "audio/fs_091_urban_pan_fry2.wav.wav",
"duration": 18.111,
"tags": [
"cooking",
"frying",
"meat",
"oil",
"pan",
"sizzle",
"sizzling"
]
},
{
"id": "fs_092",
"freesound_id": 232696,
"caption": "The sizzling sound of a piece of meat being grilled at the kitchen of UPF Communication Campus in Barcelona.\r\nRecorded with a Zoom H4n using the internal microphones.",
"query": "kitchen cooking",
"domain": "urban",
"audio": "audio/fs_092_urban_meat_grill.wav.wav",
"duration": 21.8882,
"tags": [
"cafeteria",
"campus-upf",
"cooking",
"grill",
"kitchen",
"sizzling",
"UPF-CS14"
]
},
{
"id": "fs_093",
"freesound_id": 610255,
"caption": "A close-up sound of tomato sauce bubbling aggressively.",
"query": "kitchen cooking",
"domain": "urban",
"audio": "audio/fs_093_urban_boilingtomatosauce.wav.wav",
"duration": 15.4645,
"tags": [
"boiling",
"cooking",
"kitchen",
"soup"
]
},
{
"id": "fs_094",
"freesound_id": 671310,
"caption": "A collection of free sounds from the sound library \"Designed Fire\".\n\nIf you would like to support this channel: <a href=\"https://www.paypal.com/donate?hosted_button_id=QYCPGMHHM8XXG\" rel=\"nofollow\">ht",
"query": "fireplace crackling",
"domain": "urban",
"audio": "audio/fs_094_urban_Fire_-_Swooshes_-_Burst_Evolving_32.wav.wav",
"duration": 8.92866,
"tags": [
"blowing",
"burning",
"burst",
"crackle",
"crackling",
"field-recording",
"fire",
"fireplace",
"flame",
"flames"
]
},
{
"id": "fs_095",
"freesound_id": 549208,
"caption": "This is a foley fireplace. Recorded with the Blue Snowball iCE in audacity. I layered the sounds together using audacity. This recording consists of two tracks of a smarties candy wrapper (for the cra",
"query": "fireplace crackling",
"domain": "urban",
"audio": "audio/fs_095_urban_Fireplace.wav.wav",
"duration": 28.3689,
"tags": [
"burn",
"crackling",
"fire",
"fireplace"
]
},
{
"id": "fs_096",
"freesound_id": 770108,
"caption": "A recently lit fireplace/stove in which the wood crackles and heats.\n* No background noise.\n* No reverb nor echo.\n* Clean sound, close range. Recorded with Iphone or Thomann micro t.bone SC 420.",
"query": "fireplace crackling",
"domain": "urban",
"audio": "audio/fs_096_urban_Fire_-_Chimney___Stove.wav",
"duration": 28.1089,
"tags": [
"blaze",
"burn",
"burning",
"cabin",
"chimney",
"christmas",
"cold",
"combustion",
"crackle",
"crackling"
]
},
{
"id": "fs_097",
"freesound_id": 407261,
"caption": "This is a sound of a small clock ticking. (deep sound, recorded very close)\r\n\r\nThis sound was recorded by a Zoom H6 recorder using the included X/Y capsule. (The recorded was placed very closely in fr",
"query": "clock ticking room",
"domain": "urban",
"audio": "audio/fs_097_urban_Clock_sound.mp3.wav",
"duration": 27.7213,
"tags": [
"24bit",
"48kHz",
"Clock",
"Close",
"Electric",
"Loop",
"OWI",
"rate",
"recorded",
"Rhythmic"
]
},
{
"id": "fs_098",
"freesound_id": 417593,
"caption": "A plastic desk clock ticking away. I placed the microphone realllyyyyy ridiculously close to the clock to try and minimize room-sound, so hopefully this will help someone somewhere! :) \n\nAlso rendered",
"query": "clock ticking room",
"domain": "urban",
"audio": "audio/fs_098_urban_Clock_ticking.wav.wav",
"duration": 28.0,
"tags": [
"Clock",
"Foley",
"Plastic",
"Seconds",
"Tick",
"Ticking"
]
},
{
"id": "fs_099",
"freesound_id": 365055,
"caption": "Old Grandfather Clock ticking away in a living room.",
"query": "clock ticking room",
"domain": "urban",
"audio": "audio/fs_099_urban_Clock_Ticking.wav",
"duration": 18.884,
"tags": [
"Clock",
"Clock-ticking",
"Grandfather-clock",
"hours",
"minutes",
"OWI",
"seconds",
"Ticking",
"Time"
]
}
] |