-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearthfm.sql
892 lines (892 loc) · 467 KB
/
earthfm.sql
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
CREATE TABLE master-recordings(
ID INTEGER NOT NULL PRIMARY KEY
,title VARCHAR(82) NOT NULL
,slug VARCHAR(81) NOT NULL
,status VARCHAR(7) NOT NULL
,lat VARCHAR(20) NOT NULL
,lng VARCHAR(19) NOT NULL
,region VARCHAR(18) NOT NULL
,location VARCHAR(46) NOT NULL
,recording_date DATE
,publish_date DATE NOT NULL
,recordist INTEGER NOT NULL
,charity INTEGER
,habitat INTEGER
,mood INTEGER
,predominant_sound INTEGER
,notes VARCHAR(3139) NOT NULL
,audio_id INTEGER
,duration INTEGER NOT NULL
,is_livestream BIT
,streaming_url VARCHAR(53)
,thumbnail_id INTEGER NOT NULL
);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27823,'Solitude Bay','solitude-bay','publish','39.936033','19.936554','Albania','Gjipe','2018-04-29','2023-04-16',27238,NULL,380,366,376,'<p>This remote hidden gem on the Albanian Riviera is located in a tiny bay at the mouth of the dramatic Gjipe Canyon.</p>
<p>Surrounded by steep-sided cliffs, and with some of the clearest, calmest electric-blue water in all of the Mediterranean.</p>',27824,216,NULL,NULL,22788);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27726,'North Sea Waves','north-sea-waves','publish','52.916029','1.350597','England','Norfolk','2023-02-24','2023-04-13',26362,NULL,380,366,376,'<div>There is an arc with this recording that connects to this: we can hear the ocean waves rolling in at high tide, but what creates that wonderful deep roar are the wooden <b>groynes </b>that have been installed along the beach shoreline. They create resistance to the force of the ocean and reduce the amount of longshore drift, helping sand to build up in front of the cliffs. They have been constructed to preserve the shoreline and to protect the dunes and cliffs from erosion. The cliff retreats an average of approx. 2m per year here. Erosion is a natural and beautiful process in and of itself, and one that inevitably occurs over the passing of time. Intervention techniques such as groynes can be used to add an element of control to the situation, and for me demonstrates a constructive collaboration between man, technology and nature which demonstrates how we can create sustainable spaces for future generations to benefit from.</div>
<div></div>
<div>Deep, rolling waves.</div>
<div>Carrying the ocean’s song to the shore</div>
<div>Smooth pebbles caressed by time</div>
<div></div>
<p> </p>',27727,3600,NULL,NULL,27694);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27772,'Western Capercaillie Makes Vocalizations in Early Spring Forest','western-capercaillie-makes-vocalizations-in-early-spring-forest','publish','58.407056','26.292083','Estonia','Alam-Pedja Nature Reserve','2023-04-08','2023-04-13',23695,NULL,381,365,360,'<p>Early morning. I went to see if it would be possible to record moor frogs in a place where I know they are. I didn’t see any frogs, but I did meet a capercaillie, a species that is protected in Estonia. I tied the microphones to a tree and left to record.</p>',27795,333,NULL,NULL,27365);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27766,'Bullfinches Feeding in the Crown of a Large Maple Tree on a Cold Winter Day','bullfinches-feeding-in-the-crown-of-a-large-maple-tree-on-a-cold-winter-day','publish','58.4495','25.037944','Estonia','Soomaa','2022-12-18','2023-04-13',23695,NULL,381,361,360,'<p>At the end of a dead-end road in Soomaa National Park, there is an old forest ranger’s house.</p>
<p>There is a large maple tree in the farm’s yard, and bullfinches gather one by one and in small groups on the treetop.</p>
<p>When eating seeds, they grab the seed bunches with their feet and balance them with their wings. Feeding in this way, they move downwards in the canopy and closer to the microphones until something startles them.</p>',27767,331,NULL,NULL,27435);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27738,'Autumn Red Deer Rut','autumn-red-deer-rut','publish','51.504732','17.028961','Poland','Barycz Valley','2021-09-15','2023-04-11',27472,27475,382,364,386,'<p>The impressive Autumn rut is a top wildlife spectacle, in which you can observe and hear in the Lower Silesian Wilderness (western Poland) where red deer are widespread and common.<br />
From the end of September until October you can watch Red Deer as they engage in fierce battles for mating rights. You can hear strange groaning and belching sounds in the forests from sunset to sunrise.</p>',27739,960,NULL,NULL,25882);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27733,'Great Bittern Booming Accompanied by Amphibians','great-bittern-booming-accompanied-by-amphibians','publish','51.537306','17.386722','Poland','Barycz Valley','2022-05-15','2023-04-11',27472,27475,382,362,369,'<p>The mating call of Great Bittern recorded during lunar eclipse in the vicinity of Milicz Ponds in Barycz Valley.<br />
The male emits deep, sighing fog-horn or bull-like boom with a quick rise and an only slightly longer fall, easily audible from a distance of five kilometres on a calm night.<br />
Amphibians heard in the recording: European fire-bellied toad, Edible frog, Marsh frog, European tree frog</p>',27734,420,NULL,NULL,24049);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27729,'Golden Oriole Contact Call','golden-oriole-contact-call','publish','51.360803','16.56461','Poland','Jezierzyca Valley','2022-06-15','2023-04-11',27472,27475,381,364,360,'<p>The Golden Oriole is an outstanding singer among birds, able to produce a very full, melodious and pleasant tone.<br />
However, the bird’s contact call is surprisingly different: a forced, drawn “weeackt”, slightly resembling Jay, but less harsh, and much more nasal.</p>',27730,180,NULL,NULL,24045);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27715,'Morning in the Fedosov Forest','morning-in-the-fedosov-forest','publish','50.13347','41.54968','Russia','Volgograd Oblast','2022-05-02','2023-04-07',27504,NULL,381,367,360,'<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th></th>
<td>
<div>Early morning in the ravine steppe forest.</div>
<div>The sun has already risen, but the wind has not yet begun. Only the singing of birds breaks this silent dawn of nature.</div>
</td>
</tr>
</tbody>
</table>',27716,978,NULL,NULL,27368);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27513,'Calm Night in the Sahel','calm-night-in-the-sahel','publish','16.603769','-15.061838','Senegal','Degana','2017-11-15','2023-03-27',23689,NULL,379,366,371,'<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">As the sun sets in the savanna, a tentative insect chorus starts. It is hot, windy and dusty in the Sahel, with little humidity and not a whole lot of wildlife. </span></p>
<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">The Sahel is a transition zone between the dry expanses of the Sahara in the north, and the moist tropical forests and savannas further south, and stretches from Senegal and Mauritania all the way to Sudan and Eritrea. On our impromptu camping night we set up a few recording rigs before we went to sleep. The soundscapes we captured aren’t incredibly diverse, since this was the height of the dry season and wildlife was struggling to survive away from water sources. As a result we could only hear insects and birds, and the ever-present soft wind that occasionally picked up with no apparent reason. Even so, to my ears this soundscape is magical and full of detail. The insect chorus changes endlessly, with patterns emerging and disappearing all the time. Every now and then a nightjar will start purring, and you can even hear a sleepy dove on occasion. Wind in the dry vegetation sounds almost like static or microphone self-noise, until you start noticing individual gusts.</span></p>',27514,5269,NULL,NULL,21818);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27500,'Winter Wind in Snowy Forest','winter-wind-in-snowy-forest','publish','47.127003','26.172846','Romania','Natural Park Vanaori Neamt','2016-12-15','2023-03-27',23689,NULL,381,366,373,'<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">What does a quiet mountain forest sound like in winter? </span></p>
<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">When everything freezes over and a blanket of snow covers the land, the acoustics of the forest change dramatically. Little details like twigs snapping or leaves crackling can only be heard for very short distances. Reflections from trees and hillsides are heavily dampened and seem to disappear. Birds are too busy feeding themselves and trying to stay warm so they don’t sing anymore. Even alarm calls are muted. The short days and freezing temperatures slow down nature and bring most activity to a halt. Wind is omnipresent and takes over the soundscape. If at first it all sounds a bit boring, listen for a while and you will notice there is infinite variation in the sound of wind. Factors like wind speed and direction, humidity levels or sunlight cause significant changes in the soundscape. </span></p>
<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">Moving around the forest is an interesting experience because it can be quite challenging so you have to actively stop and listen. If you manage to stop for long enough without getting frostbite, your breath will slow down and you will be able to take in the sounds of the forest. Of course, if that sounds a bit complicated you can listen to this recording from the safety and comfort of your home. It’s not the same experience but it gets pretty close. Oh, and if the wind stops for long enough, if you’re far away from civilisation and if the atmospheric conditions are just right, you may just hear snow falling.</span></p>',27510,4428,NULL,NULL,25222);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27506,'Singing of the Thrush Warbler','singing-of-the-thrush-warbler','publish','50.219014','41.595239','Russia','Volgograd Oblast','2019-06-27','2023-03-27',27504,NULL,382,366,NULL,'<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th></th>
<td>
<div>Singing thrush warbler (<em>Acrocephalus arundinaceuson</em>) on the pond.</div>
<div>Evening, the sun has gone below the horizon. Thrush warblers began their evening singing at sunset.</div>
<div>When it gets completely dark, the singing will stop.</div>
</td>
</tr>
</tbody>
</table>',27507,820,NULL,NULL,22778);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27496,'Atacama Desert Wind','atacama-desert-wind','publish','-23.238165','-67.463756','Chile','Atacama','2023-02-15','2023-03-26',23689,NULL,383,365,373,'<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">The Atacama desert is the most arid desert on Earth. Let that sink in for a minute. </span></p>
<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">Some parts of it have <span class="">never</span> received any rain since measurements started a few hundred years ago. It is a hot, dusty and harsh environment that not much life can survive in. On my expedition to the Atacama I wasn’t sure what to expect. The little wildlife that exists in these places has to carefully manage their energy so they don’t really call much. Although I’ve seen animals like vicuñas, llamas, rheas, birds of prey, etc., they were all eerily quiet. The dusty and rocky plateau is the perfect location to record wind though. With careful research and planning it is not impossible to get away from the touristy places and associated noise. This way I was able to record wind in a variety of settings, from dry desert vegetation to rocks and canyons. </span></p>
<p><span class="yt-core-attributed-string yt-core-attributed-string--white-space-pre-wrap">Recording wind is much easier said than done, especially in the Atacama desert. Out on the open plateau, there is no shelter and wind batters everything with painful gusts. I needed excellent wind protection and complex techniques to avoid the mic capsules being overloaded by sudden gusts. Luckily my experience in other deserts has helped and I managed to capture some very immersive and delicate soundscapes.</span></p>',27497,3977,NULL,NULL,22965);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27488,'Flock of Cranes','flock-of-cranes','publish','51.532446','17.411959','Poland','Barycz Valley','2022-09-15','2023-03-24',27472,27475,382,362,360,'<p>The system of bird migration flyways over Poland is complex since it is where three big migration routes intersect: the Atlantic flyway (significant migration corridor along the coast), the Alpine flyway and the Middle East flyway.<br />
During spring and autumn migrations significant numbers of Common cranes can be found in Milicz Fishponds, totalling around 10,000 birds.</p>',27489,1500,NULL,NULL,25214);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27480,'Swan Song at Sunrise','swan-song-at-sunrise','publish','51.475958','17.04247','Poland','Barycz Valley','2022-03-15','2023-03-24',27472,27475,382,365,360,'<p>The swan song is a metaphorical phrase for a final gesture, effort, or performance given just before death or retirement.<br />
The phrase refers to an ancient belief that swans sing a beautiful song just before their death since they have been silent for most of their lifetime.<br />
Let’s listen to the touching song of the whooper swan recorded at sunrise over the Jamnik pond in the Barycz Valley.</p>',27481,240,NULL,NULL,26117);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27474,'Bombina Bombina Toad Call','bombina-bombina-toad-call','publish','51.540138','17.388854','Poland','Barycz Valley','2022-05-15','2023-03-24',27472,27475,382,364,369,'<p>Bombina bombina, also known as the European fire-bellied toad, is a species of fire-bellied toad native to eastern parts of mainland Europe, where it can be found near waterbodies such as ponds and marshes.<br />
It is known for its red colored belly used to ward off predators, an example of aposematism, and its distinctive “whoop” call.</p>',27477,599,NULL,NULL,27362);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27465,'Strong Wind on Mountain Top','strong-wind-on-mountain-top','publish','45.45855481929241','14.461783880136197','Croatia','Jelenje','2021-01-15','2023-03-23',23907,NULL,387,362,373,'<p>In an altitude of approx. 1400m above sea level, very strong north wind (Bora) with the sound of falling ice and snow crystals.</p>',27466,1893,NULL,NULL,24481);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27460,'Thunderstorm and Dawn Chorus','thunderstorm-and-dawn-chorus','publish','45.495579994244586','14.455560015354472','Croatia','Klana','2022-06-17','2023-03-23',23907,NULL,381,366,377,'<p>Dawn chorus with thunderstorm high in the mountain valley, approx. 1000m above sea leve in a remote mountain area.</p>
<p>The surrounding mountains create this nice natural echo. Recorded in late Spring</p>',27461,3993,NULL,NULL,27371);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27456,'Rain Under the Canopy in a Summer Thunderstorm','rain-under-the-canopy-in-a-summer-thunderstorm','publish','45.482893770377466','14.461563589840987','Croatia','Jelenje','2020-08-05','2023-03-23',23907,NULL,387,365,376,'<p>Summer thunderstorm with soft rain, under the tree canopy in mountain forest with an altitude of approx. 950m above sea level. The north face of the mountain is massive.</p>',27457,3600,NULL,NULL,22785);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27451,'Summer Thunderstorm at Mountain Ridge','summer-thunderstorm-mountain-ridge','publish','44.72034163870572','15.054741335847998','Croatia','Stinica','2012-08-14','2023-03-23',23907,NULL,387,367,377,'<p>Mountain ridge, summer thunderstorm, altitude approx. 1500m (MASL-above sea level), Stormy clouds are so close to the ridge, rolling thunder close. Soft rain.</p>',27452,1764,NULL,NULL,26184);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27448,'Riverine Forest in the Evening','riverine-forest-in-the-evening','publish','-31.310497401091396','147.13252032696477','Australia','Bogan River','2020-08-31','2023-03-23',23697,26783,381,362,369,'<p><span data-sheets-value="{"1":2,"2":"Recorded along the bank of a large river in a semi-arid region of Australia, this recording begins with the last sounds of birdsong on a windy spring evening. After about 8 minutes it slowly transitions into a rhythmic night frog chorus with a number of frog species active in the marshes along the rivers edge. From about 43 minutes the recording transitions into the first bird song of the new day as the predawn light begins to brighten."}" data-sheets-userformat="{"2":12735,"3":{"1":1},"4":{"1":2,"2":16777215},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"10":2,"11":4,"15":"Arial","16":10}">Recorded along the bank of a large river in a semi-arid region of Australia, the last sounds of birdsong on a windy spring evening.</span></p>',27449,454,NULL,NULL,27048);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26872,'Riverine Forest by Night','riverine-forest','publish','-31.310497401091396','147.13252032696477','Austrlia','Bogan River','2020-08-31','2023-03-23',23697,26783,381,366,369,'<p>Recorded along the bank of a large river in a semi-arid region of Australia. A rhythmic night frog chorus with a number of frog species active in the marshes along the rivers edge.</p>',27446,1120,NULL,NULL,27048);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27438,'Water Drops in a Lava Cave','water-drops-in-a-lava-cave','publish','64.7481588889','-23.8178461111','Iceland','Snæfellsbær','2023-02-22','2023-03-23',25298,NULL,396,365,376,'<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th></th>
<td>
<div>This recording was made 35 meters below the surface in a cave of lava made by a volcano 8000 years ago.</div>
<div>This cave can be visited and is located in the Snæfellsjökull National Park in Iceland.</div>
<div>With my friends we asked if we could come back and leave a pair of microphones and a recorder between two visits.<br />
The water drops come from the surface covered by snow. Lava being porous, it lets water infiltrate. Because of the same reason, the acoustic is not reverberant.</div>
</td>
</tr>
</tbody>
</table>',27439,1302,NULL,NULL,25879);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27250,'Low Tide On The Rugged Coast Of Redwood National Park','low-tide-on-the-rugged-coast-of-redwood-national-park','publish','-41.58322','-124.09884','USA','Redwood National Park','2023-02-19','2023-03-07',24079,24081,380,362,376,'<p>Recorded at sunset in the intertidal zone at low tide during a new moon.</p>
<p>It was a rare sunny afternoon on this rugged stretch of coastline, with strong wind blowing from the north and huge waves crashing far out which created a continuous low roar. Heavy haze hung in the air, kicked up by the wind and crashing surf. The rocky, boulder strewn shore was fully exposed by the low tide, with barnacles, mussels, sea anemones, and a myriad of other kinds of sea life awaiting the incoming tide. Small flocks of shorebirds called Black Turnstones foraged for food on the exposed rocks, quickly moving out of the way as waves crashed against the rocks.</p>
<p>I set up the microphone on a small patch of pebbles amongst the boulders at the base of a massive tree topped rock which towered above the shore. It was near the water’s edge, but far enough away that it didn’t risk being splashed by waves that crashed against the rocks.</p>',27251,3840,NULL,NULL,27700);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27245,'Textures & texts from the shoreline','textures-texts-from-the-shoreline','publish','36.7539','-3.8343','Spain','Nerja','2019-06-23','2023-03-06',27238,27241,380,366,376,'<p><span id="m_-6047257479962638783gmail-docs-internal-guid-ce8377e3-7fff-fd88-ac4a-63a5ce3d6d64">As each wave rolls onto the shore, it creates a soft and gentle sound as the water slowly recedes back into the ocean. The sound can be likened to a lullaby, calming and peaceful, with a gentle ebb and flow that lulls the listener into a state of relaxation. It’s a natural symphony of the ocean, with each wave adding its own unique note to the melody. A reminder of the beauty and tranquillity of nature.</span></p>',27246,300,NULL,NULL,27697);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27240,'Sea Breeze','sea-breeze','publish','37.3944','-8.8188','Portugal','Costa Vicentina','2019-05-07','2023-03-06',27238,27241,380,366,376,'<p><span id="m_-6047257479962638783gmail-docs-internal-guid-ce8377e3-7fff-fd88-ac4a-63a5ce3d6d64"> Imagine… the sun going down, you are sat on a warm, lush, beautiful beach. You feel the warm, gentle tiny pebbles between your toes. You sit and watch as the gentle waves break onto the beach and rocks, the sound of the sea spray is somehow magical to record.</span></p>',27243,328,NULL,NULL,27694);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27111,'High Páramo Lagoon','high-paramo-lagoon','publish','4.920208568060457','-75.26887762378752','Colombia','Los Nevados National Park','2021-12-15','2023-03-02',23678,26435,387,365,369,'<p>Calm evening at the mountain lagoon located at 4000m. Situated in <span class="x193iq5w xeuugli x13faqbe x1vvkbs x1xmvt09 x1lliihq x1s928wv xhkezso x1gmr53x x1cpjm7i x1fgarty x1943h6x xudqn12 x3x7a5m x6prxxf xvq8zen xo1l8bm xzsf02u" dir="auto">Páramo which is an important alpine tundra ecosystem, located in the Andes mountains range between the treeline and glaciers (average altitude 3500 – 4000m). This rare habitat is a remarkable natural wonder that is found only in a few places on Earth. The landscape is characterized by a diverse range of vegetation, mainly consisting of towering rosette plants, shrubs, and sprawling grasses.<br />
</span></p>',27113,2034,NULL,NULL,25231);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27225,'Snow Storm with Powerful Thunder','snow-storm-with-powerful-thunder','publish','45.31695722662418','14.898058708293114','Croatia','Mrkopalj','2023-01-18','2023-03-02',23907,NULL,381,365,1519,'<p>A short snowstorm since the arrival until it passed.</p>
<p>The recording was done at high altitude in the mountain forest, at the edge of a cabin roof.</p>
<p>The weather is unstable and unusually warm for Winter: the temperature is +1C and snow melts and falls. The storm comes quickly and brings a blizzard with hail and fresh snow, thunder, wind… Ravens can be heard at the beginning of the recording.</p>',27226,4471,NULL,NULL,27687);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27216,'Owls in the Summer Night','owls-in-the-summer-night','publish','45.42471897970901','14.422274934115078','Croatia','Studena','2022-08-19','2023-03-02',23907,NULL,381,NULL,360,'<p>The Eurasian eagle-owl (<em>Bubo bubo</em>) behavior/social life in the summer night in mountain cliffs and mixed forest slopes.</p>
<p>The cliffs are very high (approx 200 m) and the wind is very gentle wind in distant trees distant of the mountain ridge background. We can also hear nocturnal crickets and insect chorus and, occasionally, the European Edible Dormouse (<em>Glis glis</em>) in tree canopy squeals.</p>',27264,2727,NULL,NULL,26204);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27211,'A Night with Grey Wolves','a-night-with-grey-wolves','publish','45.03602133695893','14.987761675349924','Croatia','Mrzli Dol','2022-02-15','2023-03-02',23907,NULL,381,365,386,'<p>A nocturnal recording that gives you a “look” into the secret life of Wolves in nature.<br />
We are in the mountain slopes, and the recording spot is near the Wolves, close to a doe carcass killed by the Wolves probably night before; the carcass is mostly eaten. This is a perimeter of around 20m in diameter, a so-called ‘kill zone’ where everything happens.</p>
<p>The carcass is mostly eaten. What remains is the bones and some soft tissue. You can hear how the bones/spine are cracking in the Wolf’s jaws. Other than that, the Wolves are pretty much silent. There is no howling or other loud sounds because this spot is close to the shepherd dogs (cattle) down in the valley at approx. 1 km of air distance and those dogs are agitated from time to time during the night probably when winds change and start to blow towards them. The north wind (dark Bora) is blowing.</p>',27213,4831,NULL,NULL,21855);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27205,'Meadow in the End of Summer','meadow-in-the-end-of-summer','publish','45.424056998284456','14.424800810815212','Croatia','Zoretići','2020-09-10','2023-03-02',23907,NULL,381,363,360,'<p>A meadow soundscape in the late Summer.</p>
<p>Valley/plateau at approx. 350m above the sea level, near the river source – almost dry river bed by then – under the big cliff.</p>
<p>A very nice and calm recording with gentle hot summer breeze blowing from time to time. Birds chirping in background.</p>',27206,2894,NULL,NULL,27051);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27193,'Bee Sounds - Inside a Beehive','inside-a-beehive','publish','45.36007241660115','14.593899929686222','Croatia','Škrljevo','2015-06-20','2023-03-02',23907,NULL,381,362,386,'<h2>How Do Bees Generate Buzz?</h2>
<p>In summary, bees generate buzz through the rapid vibration of their wings, which is controlled by their thoracic muscles. The buzzing serves various purposes, including communication, defense, and pollination, and can be adjusted depending on the situation. Understanding how bees generate buzz is not only fascinating but also crucial for appreciating the essential role they play in our ecosystem.</p>
<h2>What Do Honey Bees Sound Like?</h2>
<p>Bees are known for their characteristic buzzing sound, which they generate through the rapid vibration of their wings. This buzzing serves several purposes, from communication within the hive to pollination of flowers. But how exactly do bees generate this buzzing sound?</p>
<p>The process begins with the contraction of the muscles in the bee’s thorax. These muscles control the movement of the wings and enable them to flap at an incredibly high frequency, up to 200 times per second. As the wings move, they create a disturbance in the air that produces sound waves, which we hear as the buzzing sound.</p>
<p>Interestingly, bees can adjust the frequency and intensity of their buzzing depending on the situation. For example, when the hive is threatened, they may generate a higher frequency and louder buzz to warn off predators. When they discover a new source of nectar, they may generate a more excited and energetic buzz to communicate this to other bees in the hive.</p>
<p>The ability to generate buzz is not only essential for communication and defense but also for the vital process of pollination. As bees buzz around flowers, their movement causes the release of pollen, which then fertilizes other flowers and allows them to reproduce.</p>
<p>Explore the fascinating world of bees with our recording from inside a beehive. Hear the buzzing of thousands of bees as they work together to create their home and produce honey.</p>
<h2>Where was the Recoding Made?</h2>
<p>The recording was made inside a beehive box located in a picturesque meadow surrounded by lush green forest. The meadow, which is in full bloom during the early summer season, is home to a diverse range of flora, including wildflowers and flowering shrubs that provide the bees with a rich source of nectar and pollen.</p>
<p>The beehive box itself is a marvel of engineering, with thousands of industrious bees working together to create a highly organized and efficient society. Inside the box, the bees can be seen tirelessly working to build their honeycomb homes, care for their young, and gather food for the hive.</p>
<p>The recording captures the unique sounds and rhythms of the beehive, from the gentle hum of the bees as they move about their tasks to the energetic buzz that signals excitement or danger. The busy and dynamic world of the beehive is a testament to the remarkable resilience and adaptability of these fascinating creatures.</p>
<p>By providing a window into the inner workings of the beehive, the recording offers a rare and insightful glimpse into the fascinating world of bees and the important role they play in our ecosystem.</p>',27196,263,NULL,NULL,26145);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27182,'Life of Birds in a Calm Evening Spring','life-of-birds-in-a-calm-evening-spring','publish','45.373453237989374','14.439442917722234','Croatia','Rijeka','2015-04-05','2023-03-02',23907,NULL,381,366,360,'<p>A relaxing evening song of birds in the a forested hill area near a big lake.</p>
<p>The most common birds on this recording are:<br />
Common cuckoo (Cuculus canorus), Common chaffinch (Fringilla coelebs), Common blackbird (Turdus merula) , Song thrush (Turdus philomelos), European robin (Erithacus rubecula), Common wood pigeon (Columba palumbus), European green woodpecker (Picus viridis) and the Nightjar (Caprimulgidae) at the end of the recording as the night falls.</p>
<p>Other sounds captured: insects, walking of the deer or roe deer nearby and a faraway gentle stream.</p>',27183,4325,NULL,NULL,24077);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27174,'Spring Dawn Chorus in the Forest Meadow','spring-dawn-chorus-in-the-forest-meadow','publish','45.515441496193205','14.495151713043033','Croatia','Jelenje','2015-06-18','2023-03-02',23907,NULL,381,366,360,'<p>In a remote mountain valley, around 1250m above sea level, the surrounding mountains create a nice natural echo felt through the songs of the dawn chorus in the late spring.</p>',27175,3827,NULL,NULL,25364);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27168,'Inside a Natural Cave','inside-a-natural-cave','publish','45.41464742918386','14.342195434802855','Croatia','Breza','2022-03-02','2023-03-02',23907,NULL,381,365,376,'<p>Natural cave ambience with small stream and water drops falling from the cave’s roof.</p>',27169,2400,NULL,NULL,22654);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (27157,'Dawn Chorus in Misty Morning','dawn-chorus-in-misty-morning','publish','45.503150768042296','14.426932896891435','Croatia','Klana','2022-07-01','2023-03-02',23907,NULL,381,367,360,'<p>An early Summer recording on a Mountain Plateau, from the first light to early morning.</p>
<p>One can listen to the dawn chorus and later to roe deer barking around the microphone array.</p>',27158,3608,NULL,NULL,24159);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26875,'Morning at a Blossoming Coastal Woodland','morning-at-a-blossoming-coastal-woodland','publish','-24.189431879904575','151.8128009364028','Australia','Eurimbula National Park, Queensland','2018-09-10','2023-02-20',23697,23696,381,361,360,'<p>A morning recording from a grassy coastal woodland on the coast of Queensland. Many trees and shrubs were in flower, attracting a variety of honeyeaters and other nectivorous birds. Later in the recording the birdsong becomes more sparse as the wind increases and the day heats up.</p>',26929,3702,NULL,NULL,26065);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26922,'Warm Summer Morning','warm-summer-morning','publish','44.00728','7.814071','Italy','Rezzo','2020-07-30','2023-02-18',26920,NULL,387,366,386,'<p>A warm summer soundscape in an early morning revealing a variety of close insects and birds in the background. There is a lot of movement on the ground and how the soundscape evolves throughout the one-hour recording gives away the landscape’s geography.</p>
<div role="listitem" data-item-index="34" data-message-id="14191419-4710-4ba5-a9d3-11e3fbd1be6b">
<div>
<div class="module-message module-message--incoming module-message--collapsed-below" tabindex="0" role="row" data-testid="1676735340084">
<div class="module-message__container-outer">
<div class="module-message__container module-message__container--incoming" tabindex="-1" role="row">
<div class="module-message__text module-message__text--incoming">This place is an ancient neolithic era settlement: there are monoliths nearby, and the field in which the recording took place has an ancient Celtic stone maze that can only be seen from satellite photos.</div>
</div>
</div>
</div>
</div>
</div>
<p> </p>
<p> </p>',26923,4591,NULL,NULL,27706);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26749,'Calm Forest Creek','calm-forest-creek','publish','42.053066191608764','27.791848536910877','Bulgaria','Kalkata','2023-01-18','2023-02-18',23678,26050,381,366,376,'<p>Strandzha Nature Park is the most sparsely inhabited protected area continuing inland from Bulgaria’s untamed Black Sea coastline. This forest creek is about 15 kilometers from the shore, situated in a peaceful valley between steep and rugged wooded hills inhabited by wildlife. The soothing sound of water in this quiet hideout will help you feel at ease.</p>',26916,2400,NULL,NULL,22641);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26902,'Wind in Pine Forest','wind-in-pine-forest','publish','45.795714','14.011162','Slovenia','Nanos','2023-02-08','2023-02-17',26898,25483,381,362,373,'<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<th></th>
<td>
<div>A typical wind for this area on the Nanos plateau (920m), called Burja, blew in gusts of up to 85 km/h. There is about 30cm of snow and the temperature was -8˚C.</div>
</td>
</tr>
</tbody>
</table>',26903,355,NULL,NULL,22640);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26868,'Montane Rainforest','montane-rainforest','publish','3.709435160136377','101.71347381964512','Malaysia','Bukit Fraser','2019-09-15','2023-02-15',23697,23707,381,366,370,'<p><span data-sheets-value="{"1":2,"2":"This recording was made by a small river in Taman Negara and starts in the early evening with the last birds and cicadas of the day calling from the surrounding forest. At around 25 minutes the loud ringing calls of Empress Cicada can be heard as the soundscape drifts into the night."}" data-sheets-userformat="{"2":12735,"3":{"1":1},"4":{"1":2,"2":16777215},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"10":2,"11":4,"15":"Arial","16":10}">This recording was made by a small river in Taman Negara and starts in the early evening with the last birds and cicadas of the day calling from the surrounding forest. At around 25 minutes the loud ringing calls of Empress Cicada can be heard as the soundscape drifts into the night.</span></p>',26869,3718,NULL,NULL,27359);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26864,'Taman Negara Rainforest Stream','taman-negara-rainforest-stream','publish','4.660621434879407','102.09045413755823','Malaysia','Taman Negara National Park','2014-03-04','2023-02-15',23697,23707,378,367,370,'<p><span data-sheets-value="{"1":2,"2":"This recording was made by a small river in Taman Negara and starts in the early evening with the last birds and cicadas of the day calling from the surrounding forest. At around 25 minutes the loud ringing calls of Empress Cicada can be heard as the soundscape drifts into the night."}" data-sheets-userformat="{"2":12735,"3":{"1":1},"4":{"1":2,"2":16777215},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"10":2,"11":4,"15":"Arial","16":10}">This recording was made by a small river in Taman Negara and starts in the early evening with the last birds and cicadas of the day calling from the surrounding forest. At around 25 minutes the loud ringing calls of Empress Cicada can be heard as the soundscape drifts into the night.</span></p>',26865,3340,NULL,NULL,27362);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26860,'Danum Valley Afternoon','danum-valley-afternoon','publish','5.032030834008144','117.75165270605669','Borneo','Danum Valley, Sabah','2023-02-24','2023-02-15',23697,26779,399,367,360,'<p><span data-sheets-value="{"1":2,"2":"A breezy afternoon in the lowland rainforest of Sabah. Although the birdsong is more sparse than earlier in the day, many birds are active and can be heard calling and moving about in the the surrounding forest."}" data-sheets-userformat="{"2":12733,"3":{"1":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"10":2,"11":4,"15":"Arial","16":10}">A breezy afternoon in the lowland rainforest of Sabah. </span></p>
<p><span data-sheets-value="{"1":2,"2":"A breezy afternoon in the lowland rainforest of Sabah. Although the birdsong is more sparse than earlier in the day, many birds are active and can be heard calling and moving about in the the surrounding forest."}" data-sheets-userformat="{"2":12733,"3":{"1":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"10":2,"11":4,"15":"Arial","16":10}">Although the birdsong is more sparse than earlier in the day, many birds are active and can be heard calling and moving about in the the surrounding forest.</span></p>',26861,3729,NULL,NULL,27365);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26768,'Waigeo Rainforest','waigeo-rainforest','publish','-0.39704116628512887','130.8117630684702','Papua New Guinea','Waigeo','2019-08-30','2023-02-15',23697,NULL,399,362,370,'<p>Sounds from a remote rainforest in the Raja Ampat archipelago of West Papua.</p>
<p>Home to an abundance of stunning species including the Red Bird-of-Paradise which is only found on Waigeo and three other islands in the area.</p>',26857,3319,NULL,NULL,27377);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26853,'Fiji Rainforest','fiji-rainforest','publish','-18.059834132851606','178.44209778094296','Fiji','Colo-i-Suva Forest Park','2017-04-15','2023-02-15',23697,26777,399,366,360,'<p><span data-sheets-value="{"1":2,"2":"The sound of dewdrops, birdsong & cicadas in one of Fiji''s last remaining areas of primary tropical rainforest. Deep gruff barks from Barking Imperial Pigeons can be heard, along with the higher-pitched coughs of the stunning Golden Fruit Dove. "}" data-sheets-userformat="{"2":12733,"3":{"1":1},"5":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"6":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"7":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"8":{"1":[{"1":2,"2":0,"5":{"1":2,"2":0}},{"1":0,"2":0,"3":1},{"1":1,"2":0,"4":1}]},"10":2,"11":4,"15":"Arial","16":10}">The sound of dewdrops, birdsong & cicadas in one of Fiji’s last remaining areas of primary tropical rainforest. Deep gruff barks from Barking Imperial Pigeons can be heard, along with the higher-pitched coughs of the stunning Golden Fruit Dove. </span></p>',26854,3362,NULL,NULL,27368);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26842,'Tacumshin Sunrise: Big Surf & Winter Waterbirds','tacumshin-sunrise-big-surf-winter-waterbirds','publish','52.198511','-6.456375','Ireland','Tacumshin Lake','2023-02-11','2023-02-13',26839,NULL,395,361,360,'<p>An eclectic mixture of shorebirds (golden plover, snipe, lapwing, etc.) and waterfowl (whooper swan, wigeon, mute swan, Eurasian teal, shoveler, etc.) awaken to a calm winter’s morning with big surf, at Tacumshin Lake Special Protection Area, Co. Wexford, Ireland.</p>
<p>A recent study has revealed that Ireland has lost more wetland habitat than any other country in the entire world – we have lost over 90% of our wetlands in the last 300 years.</p>
<p>Tacumshin is a rare haven for wetland species in Ireland. However, all is not as it seems. Hunting at such locations is very common, and the very species which are set out to be protected are frequently terrified and flushed as a result of frequent gunshots, which of course are extremely loud and unsettling. This is the last kind of activity one would expect in an area set out to protect birds. Although the practice of hunting in such locations is, amazingly, *not illegal*, it is morally, ethically and unfathomably wrong in every facet.</p>
<p>These areas should be sanctuaries – safe havens for birds that are struggling to find habitat to feed and breed, many of which are in national or even global decline. Instead, with a general paucity of suitable habitat in the Irish landscape, many hunters come to these so-called Special Protection Areas, to essentially shoot goldfish in a barrel.</p>
<p>This needs to change. I think the first step in doing so is through sharing the truth with people so they can realize what is actually happening at these locations. If the general public were to know the bloody irony of shooting in a bird sanctuary, I am sure there would be increased pressure to bring true protection to these sites.</p>',26847,2401,NULL,NULL,22202);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26811,'New Guinea Cloud Forest','new-guinea-cloud-forest','publish','-5.802138711200705','143.9639184427681','Papua New Guinea','Tomba','2012-09-17','2023-02-10',23697,26775,378,366,360,'<p>Recorded in cloud forest high in the mountains of Papua New Guinea, this recording features sounds from a variety of species found only in this cool, misty forests, including the spectacular King-of-Saxony Bird-of-Paradise.</p>',26812,3707,NULL,NULL,27371);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26744,'Creaking Trees in Winter','creaking-trees-in-winter','publish','46.27603','14.703856','Slovenia','Plešivec','2023-01-25','2023-02-04',26081,25483,387,367,373,'<p>I hiked in heavy fresh snow with snowshoes to reach a secluded location up on the mountain. Trees nearby my campsite were covered in freshly frozen snow. Under that weight and a moderate breeze, the forest sounds were wonderful, like trees talking to each other.</p>',26745,3661,NULL,NULL,25222);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26710,'Active Volcano','active-volcano','publish','-19.530189','169.445493','Vanuatu','Tanna Island','2022-11-06','2023-02-01',23669,26713,388,362,373,'<p>Active volcano recorded from the top, at the edge of the crater, during the night.</p>',26699,1800,NULL,NULL,27039);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26631,'Night Crickets and Toads','night-crickets-and-toads','publish','39.901188','20.746706','Greece','Vikos Gorge','2018-05-10','2023-01-27',23892,NULL,384,367,371,'<p>In the chilly darkness of Zagoria highlands European field crickets (Gryllus campestris) are singing with their mellow chiming calls. In some distance, a couple of European green toads (Bufotes viridis) are also calling. The meadow at the edge of the gorge has been used for grazing some time ago. Behind the treeline, in the darkness, the cliffs are plunging down nearly 500 meters.</p>',26634,487,NULL,NULL,26447);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26618,'Mangroves at Low Tide','mangroves-at-low-tide','publish','6.058373','-77.36382','Colombia','Utria National Park','2022-02-17','2023-01-26',23678,NULL,378,368,360,'<p>Morning inside the mangrove forest at the low tide inside Utria National Park. Colombian Pacific is one of the world’s few remaining areas with no road infrastructure and still vastly intact rainforest expanses. This was the most remote and inaccessible place I have ever come to and record. Reaching the mangroves included a 4 hours intense jungle hike and overnight wild camping near the mangroves.</p>',26621,4700,NULL,NULL,22779);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26438,'Thunder Rain at Dusk','thunder-rain-at-dusk','publish','43.32401','-2.64014','Basque Country','Arratzu','2022-06-01','2023-01-26',26432,26435,381,366,377,'<p>One of the most common Geophonical sounds, they could mean both great and bad news. Each bold of lighting releases enough power to charge an open fridge for a month.</p>',26608,3399,NULL,NULL,22577);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26434,'Nightingale Dawn Chorus','nightingale-dawn-chorus','publish','41.91002','0.37824','Basque Country','San Esteban De Litera','2022-06-10','2023-01-26',26432,26435,383,366,360,'<p>Nightingales males stop pretty quickly to sing after they mate in the UK, which is around June. Here in San Esteban De Litera, Basque Country, Spain, these Nightingales were still singing full on around mid June.</p>',26610,400,NULL,NULL,27432);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26441,'Cicada Crescendo','cicada-crescendo','publish','11.36619','103.482201','Cambodia','Phnom Penh','2019-12-26','2023-01-26',26432,26604,399,365,370,'<p>There are many species of Cicadas, each has its own sound. They have a special organ called “tymbal” that produces sound, which contains a series of ribs that buckle one after the other when the cicada flexes its muscles. Every time a rib buckles, the rib produces a click.</p>',26442,3720,NULL,NULL,24067);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26593,'Vleesbaai Beach Afternoon','vleesbaai-beach-afternoon','publish','-34.288679','21.913009','South Africa','Vlessbaai','2020-09-15','2023-01-26',26591,26599,380,362,NULL,'<p>On the southern coast of South Africa is a small holiday town called Vleesbaai. This recording was made on a peaceful, sunny winters afternoon roughly 3 meters from the waves which offers some nice delicate wave crashing details to be heard in the stereo image.</p>',26597,594,NULL,NULL,27045);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26273,'Gentle Waves of Black Sea','gentle-waves-of-black-sea','publish','42.30051514796731','27.768038556758935','Primorsko','Mirius Bay','2023-01-05','2023-01-26',23678,26050,380,366,375,'<p>A very calm night in a secluded bay on the Bulgarian Black Sea, with gentle waves crashing at the stone shore.</p>',26274,4500,NULL,NULL,25231);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26574,'Falling Snow in the Forest','falling-snow-in-the-forest','publish','45.697386','15.049503','Slovenia','Kočevski Rog','2023-01-23','2023-01-26',23678,25483,381,366,1519,'<p>A snowy wintertime deep inside Slovenia’s woodlands. There is moderate snow falling, and the microphones are placed beneath a thick pine tree, which protects them from the snow while still capturing the sound of flakes falling on the ground. The temperature was -3 degrees Celsius, and 40cm of fresh snow had fallen. It was pretty challenging to set up the recording rig in such harsh winter conditions.</p>',26640,3600,NULL,NULL,25222);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26313,'Impressive Alarm Clock Cicadas','impressive-alarm-clock-cicadas','publish','10.1893007','118.8977625','Philippines','Palawan','2009-10-26','2023-01-23',24451,26380,380,364,370,'<p>At dawn, the cicadas kick off the day’s performance by flying frantically, grazing the ground while emitting their characteristic and sensational sound, reaching a sound intensity that few animals can achieve. For the listener, it’s the sign of the day rising over the humid and tropical grasslands of Palawan island.</p>',26314,542,NULL,NULL,25200);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26310,'Crescendo of Cicadas Near the Beach','crescendo-of-cicadas-near-the-beach','publish','10.2008818','118.9209656','Philippines','Palawan','2009-10-23','2023-01-23',24451,26380,380,362,370,'<p>The jungle of Palawan island is so dense that some trees grow even on the coral beach. Within them, thousands of cicadas hum in a crescendo that has few equivalent in its power and spectrum, until covering the powerful waves of the Indian Ocean.</p>',26311,722,NULL,NULL,27386);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26316,'After the Rain','after-the-rain','publish','10.1980282','118.9209003','Philippines','Palawan','2009-10-24','2023-01-23',24451,26380,380,366,372,'<p>Under the effect of tropical showers, the wildlife of Palawan’s tropical forest falls silent. But as soon as the rain stops, insects and animals reclaim their territory, revealing with the last drops falling on thick vegetation the majestic depth of the space.</p>',26319,689,NULL,NULL,25410);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26393,'Saikan Temple Rainfall','saikan-temple-rainfall','publish','38.703443','139.979898','Japan','Mt. Haguro','2023-08-30','2023-01-20',26362,26394,381,366,372,'<p>Gentle rainfall in the ancient cedar wood forest of Mt. Haguro. Recorded at the entrance to Saikan (斎館) temple.</p>
<p>Sitting in the sacred forest<br />
Water drops on forming moss<br />
Where dragons fly</p>',26400,537,NULL,NULL,27060);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26384,'A Night With Iberian Wolves','a-night-with-wolves','publish','38.961277','-9.269844','Portugal','Mafra','2022-10-17','2023-01-19',23659,23661,381,365,386,'<p>A deeply quiet Autumn night with tree branches cracking in the cold air and suddenly a shy wolf vocalizes timidly, a tawny owl joins later and finally a big howling of around a dozen of Iberian wolves happen to leave space again for the owl.</p>',26385,3837,NULL,NULL,25237);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26370,'Calanques de Figuerolles','calanques-de-figuerolles','publish','43.166422','5.597204','France','Calanques de Figuerolles','2022-10-26','2023-01-19',26362,26371,380,366,376,'<p>The word calanque (from Provençal calanco) refers to a valley dug by a river, then recovered by the sea. A peaceful pebbly cove, looking out on the Mediterranean Sea to the West of the coastal town of La Ciotat.</p>
<p>Here I lay down to listen to the rolling waves<br />
Lapping against the ancient cliffs<br />
Small wrens echo in the valley</p>',26375,368,NULL,NULL,27057);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26307,'Geese and Ducks Waking Up on Lake','geese-and-ducks-waking-up-on-lake','publish','51.55279601131711','6.687663209239226','Germany','Ruhrgebiet','2021-01-08','2023-01-18',26308,NULL,382,362,360,'<p>I came across the geese while reading in a nature magazin (Naturgucker) at the train station. Until then I didn’t know that each winter large flocks of geese come to the Ruhrgebiet from the North. I thought I wouldn’t find them, but from afar I could already see impressive amounts of geese circling in the sky on my first visit. The area near the river Rhein is packed with industry and cranes and havocs would be on every audio recording. In the evening the geese went to sleep on a little artificial pond, protected from the dyke, some trees and a row of houses from the industrial noise. I decided to return in the early morning. I was able to listen to the geese waking up and lifting the air in some light rain & fog, which made for a beautiful sunrise. </p>',26615,327,NULL,NULL,24157);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26260,'A morning through the rainforest','a-morning-through-the-rainforest','publish','-20.893188','-42.545482','Brazil','Minas Gerais','2016-01-14','2023-01-16',23659,23657,NULL,366,360,'<p>Although it’s a calm morning, we can still listen to some of the emblematic birds of the Atlantic Forest: the White-shouldered fire-eye, Spot-backed antshrike, and the Forest falcon on the background, between others. Towards the end something happens that it will probably be a mystery forever…</p>',26265,557,NULL,NULL,24067);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26261,'Seagulls and Swamp Reeds','seagulls-and-swamp-reeds','publish','42.053309','27.985839','Bulgaria','Strandzha Nature Park','2023-01-07','2023-01-16',23678,26050,380,366,375,'<p>The wild Black Sea coast of Bulgaria is a place of natural beauty and tranquility. This recording was made 100 meters from the sea, at the river that flows from the forested hills to the sea. I looked for a spot where the waves wouldn’t be too strong and the whole ambience would be balanced. The microphones were placed among the reeds that swayed gently in the wind. In the distance, the sound of crashing waves and the calls of seagulls can be heard, adding to the peaceful ambiance of this coastal paradise.</p>',26254,1205,NULL,NULL,23096);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26253,'Solitude in the Rainforest','solitude-in-the-rainforest','publish','-23.410202','-46.589628','Brazil','São Paulo','2016-12-20','2023-01-16',23659,23657,399,364,360,'<p>The Solitary Tinamou, a shy ground bird so rarely heard during the day. The recording was taken very early in a misty and humid morning. This bird’s song is equally shy but enchanting and mysterious. A treasure for the ear.</p>',26256,285,NULL,NULL,27063);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26129,'Wind, Squeaking Tree and Light Birds','wind-squeaking-tree-and-light-birds','publish','45.574514','14.43826','Slovenia','Snežnik','2023-01-07','2023-01-14',26081,25483,381,363,373,'<p>Winter time in Slovenia. A squeaky old beech tree could be heard in the spruce forest, which was protected in the valley from the more powerful winds.</p>',26132,2060,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25902,'Bamboo Forest Wind','bamboo-forest-wind','publish','20.701029','-156.133635','Hawaii','Haleakala National Park',NULL,'2023-01-13',25440,26161,381,366,373,'<p>Finding my way up a muddy path on an Island in the Pacific is an ideal condition for natural listening. A growing cacophony ebbs and flows as the trail and nearby river weave near and far from each other. Up a steep hill, the water suddenly grows faint. I can hear the wind overhead. Drumming along is the thick bamboo grove that seems to have sprung out of nowhere. I placed two Sennheiser Microphones on a wide stereo bar as far from the trail as I dared to go. </p>',26182,3600,NULL,NULL,22572);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26094,'Neyrieux Pond','neyrieux-pond','publish','45.946856','5.086338','France','Joyeux','2022-06-06','2023-01-06',24180,24103,382,361,369,'<p>At daybreak I sit on the edge of the pond. The laughing frogs are finishing their night, while the coypu are living in the pond. The Spring atmosphere is marked by the presence of coots, water rails, whip-poor-wills, black-headed warblers, swift pigeons, blackbirds, wood pigeons, and a colchis.<br />
The atmosphere is pleasant, lively and singing intensely.</p>',26095,659,NULL,NULL,24108);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (26080,'Red Deer on the Field','red-deer-on-the-field','publish','45.579548','14.323496','Slovenia','Mrzla Dolina','2022-12-25','2023-01-05',26081,25483,381,365,374,'<p>A small pasture near the forest in the upper parts of mountain Sneznik. That night, there was heavy humidity, fog, and mild wind. The Red Deer begin rubbing their horns on tree branches at midnight. There were several animal traces left on that field in the morning including the rubbing on tree branches. I camped about two hundred meters away from the recording location and didn’t hear anything.</p>',26088,1500,NULL,NULL,25886);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25966,'Cave Entrance in the Balkans','cave-entrance-in-the-balkans','publish','43.603634','22.697446','Bulgaria','Lepenitsa Cave','2022-12-25','2023-01-05',23678,26050,1246,366,360,'<p>This cave is an incredible geological sight and an undiscovered wonder in the heart of rural Balkan. The sounds of Ravens, chirping birds, bats and dripping water were captured early morning in front of the cave’s entrance. It is concealed by the surrounding forests and tucked between cliffs and very unique rock formations.</p>',25969,1800,NULL,NULL,22570);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25977,'Lions, Hyenas and Other Wildlife Calling in the Masai Mara','lions-hyenas-and-other-wildlife-calling-in-the-masai-mara','publish','-1.494098','35.144251','Kenya','Masai Mara','2019-09-15','2022-12-30',23689,25978,384,365,374,'<p>It’s 5am in Mara North Conservancy, just outside Masai Mara National Reserve in Kenya. This is one of the few places in the world and even in East Africa where you can hear lions, hyenas, zebras, buffalo and other wild animals calling mixed with cattle bells, dogs barking and other sounds from the surrounding villages. </p>
<p>Sit back, relax and listen as night turns to day and the bees wake up. Shortly afterwards the birds start singing and the wind picks up softly. Imagine you’re on a dawn safari, fully immersed in your immediate reality, exposed to the elements and wildlife.</p>',25987,2490,NULL,NULL,22794);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25972,'Wildlife Sounds From the African Savanna','wildlife-sounds-from-the-african-savanna','publish','-22.572855','28.580217','South Africa','Mmabolela Estate','2016-12-15','2022-12-30',23689,25973,384,366,360,'<p>This is a sound recording I made in South Africa in the end of 2016. I had woken up at 3 am and went out to catch the dawn chorus. After a short drive I split from the group and walked by myself for about an hour.</p>
<p>This spot I found was quiet and peaceful, just perfect for recording. I dropped my rig and walked around for a bit, bumped into a giraffe and a warthog and took a few landscape photos. I also spotted a distant Eagle Owl, which can be heard softly in the recording. </p>
<p>Every time I listen to this I’m transported back to that spot. Sit back, relax and try to imagine what it felt like to be there.</p>',25980,3640,NULL,NULL,25553);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25960,'Woodpeckers in Tuscan Mountains','woodpeckers-in-tuscan-mountains','publish','44.11981150188091','10.54532472850257','Italy','Tuscany','2022-03-25','2022-12-29',23678,25961,381,361,360,'<p>When we think about Tuscany, we normally picture rolling green hills, beautiful old villas, and villages. While that certainly is a part of Tuscany, the second bit is remarkably secluded and mountainous. This recording was captured on 1200m high woodlands below a mountain summit. This entire expansive area is covered by ancient chestnut trees, with a few distant old chestnut farmhouses dispersed hidden throughout the landscape. Although spring has not yet arrived at this high elevation, woodpeckers and chirping birds can be heard all across the forest. The trees gradually gain green leaves, and the sun shines brightly during the day, only to be interrupted by momentary snowfall! Conditions can be quite intense in this beautiful place.</p>',25963,2752,NULL,NULL,22637);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25903,'Spring at the River Gorge','spring-at-the-river-gorge','publish','44.31306359188178','3.6339949654929105','France','Cévennes National Park','2021-05-10','2022-12-29',23678,24100,381,361,376,'<p>A peaceful location on the cliffs above the river gorge during springtime. The soothing bubbling sound of the distant river flowing through the gorge and chirping birds create a tranquil atmosphere. The sunny weather and the lush greenery of the surrounding trees and plants add to the area’s sense of beauty and serenity. A very relaxing and enjoyable experience.</p>',25904,2702,NULL,NULL,22781);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25916,'Ebb current in rocky shore','ebb-current-in-rocky-shore','publish','48.81981','-3.540717','France','Bretagne','2022-12-16','2022-12-27',24233,24836,380,362,376,'<p>A sunny day in Winter took us to calmly explore the coast over the rocks. We focused on a point of the shore where the tide was lowering very fast and due to the rocks’ display very small waves collided horizontally. The burble in the lowest registers illustrates the salty water mingling and mixing around some of the rocks more evidently as a top layer to the general ocean soundscape that was relatively calm, but this is why it’s not easy to discern a rhythmic pattern. There was some movement of marine birds here and there, feeding on the algae dragged sometime before, that created a slushy and muddy bed over a 30 meter range. </p>',25917,1824,NULL,NULL,25224);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25910,'The sounds of Madagascar at Tsingy de Bemaraha','the-sounds-of-madagascar-at-tsingy-de-bemaraha','publish','-18.80956','44.834876','Madagascar','Tsingy de Bemaraha','2022-08-16','2022-12-25',23689,25498,381,367,360,'<p>The Tsingy de Bemaraha in Western Madagascar is one of the most otherworldly and surreal places I’ve ever visited. Listen to its soundscapes as captured at the top of the limestone needle forest.</p>
<p>Getting here is no easy feat. This part of Madagascar is wild and lawless. Bandits routinely raid local villages and sometimes target tourists too. The roads are barely passable in a 4×4, and travel in convoy with armed escort is advised. </p>
<p>The landscape is dominated by these weird limestone formations that look like a petrified forest. The name Tsingy means “the place where you can’t walk barefoot” in the local language. It takes a few hours of careful hiking, scrambling and caving to get to the top of the Tsingy. </p>
<p>Once up, the views are amazing but it’s already midday so the soundscape is pretty subdued. There is soft wind and occasionally distant insects. Several lemur species live in this area but they generally stay away from people. It is not the best moment to be recording up here, and due to the security situation we are not allowed to be here early in the morning or after dusk.</p>
<p>The only way to record this properly is to leave several drop rigs out for a couple of days. These rigs will record day/night cycles including dawn and dusk when wildlife activity is at its peak and the wind tends to die down. Of course, there are always hazards to this approach, and indeed some animal ate through one of my dry bags while it was out. Fortunately the mics and recorders were intact, although the animal in question was very quiet so I don’t know what it was.</p>
<p>As expected, this place is actually pretty lively outside of the midday heat. Lemurs, nightjars, cicadas and many other species create a beautiful dawn chorus. The sheer face of the limestone pinnacles creates claustrophobic but very interesting reflections. Towards the end of the recording, a troop of brown lemurs drop by and spend some time discussing the merits of my field recording rig. In the end they approve and move on without tampering with it. Thanks lemurs!</p>',25913,3667,NULL,NULL,26444);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25889,'Frogs croaking in the Harenna cloud forest','frogs-croaking-in-the-harenna-cloud-forest','publish','6.511936','39.25706','Ethiopia','Harenna Forest','2022-09-15','2022-12-22',23689,25890,381,366,369,'<p>Night falls in the cloud forest. Several species of frogs congregate in humid areas, from jungle lakes to the smallest puddle. The soundscape is not as full on as in a lowland rainforest, which makes it much crisper and enveloping. Each discrete wildlife call seems to linger in the air for a fleeting moment, aided by the beautiful acoustics of the Afromontane forest. Conversely, the more drawn out or continuous calls offer a nice backdrop that’s very easy to ignore until there is a sudden pause.</p>
<p>My aim here is to record the rich dawn chorus soundscapes, but discovering these nocturnal frogs is a beautiful and unexpected result of my approach to sound recording. As usual, I set up several sound recording rigs in promising areas that I’ve scouted previously. I leave the microphones out for 24 to 48 hours at a time, which is more than enough for wildlife and nature to go back to its normal state after I’ve been there and affected it with my presence. </p>
<p>During the day the frogs don’t call much, but the cloud forest is alive with the sound of insects, birds and sometimes mammals. After dusk most birds take refuge and the scene is taken over by nocturnal inhabitants. Occasionally you can also hear a disturbed troop of baboons or Colobus monkeys call in the distance. Towards the end an African wood owl starts wailing softly. Perfect soundscape to fall asleep in the forest.</p>',25894,3955,NULL,NULL,25364);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25809,'Windy Night Quietude at Deep Creek','windy-night-quietude-at-deep-creek','publish','-35.624781','137','Australia','Deep Creek National Park','2022-11-26','2022-12-18',24251,23728,381,366,373,'<p>A moonless, overcast and windy night at Deep Creek National Park, with a scent of rain in the air, nestled amongst coastal eucalyptus trees and grass trees on a hill overlooking the rugged coastline of the Great Australian Bight one and a half kilometres away. Just the gusty wind in the trees, and nothing else… Yet, this simple natural soundscape minimalism can be a deep pleasure and a priceless treasure. And a precious opportunity to enjoy a deeply peaceful, restful, and rejuvenating sleep! Don’t underestimate it. Seek it out, enjoy it, and above all, protect it and preserve it! Keep out those noxious weekend/holiday urban four-wheel-drives that want to come down to churn and tear up the morning, because they think it’s ‘fun’… Tell them: Hey, come down here to enjoy the quietude, not to demolish it. Nature’s quietude is the infinitely better option for your own well-being…</p>',25817,2656,NULL,NULL,25237);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25790,'Beavers Working at Otter Creek','beavers-working-at-otter-creek','publish','44.75653','-86.07144','USA','Michigan','2022-11-10','2022-12-18',24809,25791,381,362,374,'<p>Recorded at the Sleeping Bear Dunes National Lakeshore in northern Michigan, this recording features beavers working on preparing their lodge for winter. You can hear the beavers cutting through substantial limbs of a downed Maple Tree and dragging the limbs down their slide into Otter Creek. </p>',25814,461,NULL,NULL,22778);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25803,'Morning at Mt Billy Creek, Ikara/Flinders Ranges','morning-at-mt-billy-creek-ikara-flinders-ranges','publish','-31.293713','138.840551','Australia','Ikara/Flinders Ranges National Park','2022-05-21','2022-12-17',24251,23728,383,366,360,'<p>An except from a dawn-to-early morning recording made on 21 May 2022 amongst the river gums in the midst of the dry wide creek bed of Mt Billy Creek in Ikara/Flinders Ranges National Park. Some beautiful Crimson Rosella calls during this recording. And the cause of the sounds of something scratching and scraping at the branches of a river gum are finally revealed: Little Corellas.</p>',25806,426,NULL,NULL,27048);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25793,'Dawn at Stony Creek Bush Campground','dawn-at-stony-creek-bush-campground','publish','-32.64721','138.137209','Australia','Ikara/Flinders Ranges National Park','2022-10-29','2022-12-17',24251,23728,394,367,360,'<p>On our way to somewhere else, we stopped overnight at this lovely campground, between Mount Remarkable National Park and Ikara/Flinders Ranges National Park. The evening bird chorus in the surrounding bushland adjacent to Stony Creek was plentiful and beautiful, but evening was not a good time to record, with lots of people activity in the campground. Advantage was taken of an early dawn, whilst most other campers were still peacefully sleeping, to record the already very wakeful and hyperactive birdlife – particularly the fascinating calls of the Rufous Songlark, which are faintly reminiscent of, but much more natural and spontaneous than, the tone rows or serial music of Schoenberg and Webern.</p>',25794,506,NULL,NULL,25237);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25680,'Winter Rain Near Lake','winter-rain-near-lake','publish','45.753515','14.360026','Slovenia','Cerknica Lake','2022-11-10','2022-12-16',23678,25483,381,366,376,'<p>A rainy night beside a wild lake surrounded by deep woodlands. The microphones, placed beneath the natural roof of leaves and soil, pick up the soft rustling of the leaves as the rain begins to fall.</p>',25690,3600,NULL,NULL,22773);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25710,'Massive Thunderstorm Approaching in the Amazon Rainforest','massive-thunderstorm-approaching-in-the-amazon-rainforest','publish','-5.346186','-71.002003','Brazil','Javari Valley','2022-10-12','2022-12-15',23689,25522,399,366,377,'<p>A thunderstorm of epic proportions on the horizon in the Amazon rainforest – with almost continuous lightning, thunder, wind and a little rain. </p>
<p>I recently travelled to the Amazon rainforest on the tri-border area of Brazil, Colombia and Peru. I was there in the so-called dry season, but that really doesn’t mean much. In tropical and equatorial rainforests, the dry season is actually quite rainy, and the rainy season is even more wet. This was the case on my expedition too, with several of these awe-inspiring thunderstorms happening in the space of a few weeks.</p>
<p>Having spent extensive time in tropical and equatorial rainforests, I’m used to loud thunder, powerful lightning, heavy winds and rain, and generally massive thunderstorms. What was new for me in this part of the Amazon is that I could see these thunderstorms on the horizon, sometimes for hours before they hit.</p>
<p>On this one evening, there was not one but two thunderstorms happening in the distance, with amazing lightning but with almost zero thunder sound reaching me. That in itself was a curiously disconnected experience. I was surrounded by the sounds of the rainforest and could barely hear the low rumble of distant rolling thunder. I felt suspended in a weird limbo where the thunderstorms were real but I could only perceive them with one of my senses. Soon enough this magic was broken as the sound started to reach me.</p>
<p>I had ample time to sit on the porch of my hut and observe the epic clouds in the distance. I took my time shooting photos and videos, and even a timelapse of a massive Cumulonimbus incus cloud taking over the local sky. I also had 5 sound recording rigs placed in various parts of the rainforest, although only one of them managed to capture the extreme dynamic range well.</p>
<p>Thunder, rain and wind aren’t the only elements in this soundscape. The jungle is teeming with wildlife, and at this time of day – after the dusk chorus – the insects take over. Occasionally some frogs join in as well. It’s a beautifully rounded ambience full of heavy contrast and perfectly immersive, with elements from close by and far away mixing together beautifully.</p>',25711,4395,NULL,NULL,26450);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25667,'The Sounds of Mayan Ruins','the-sounds-of-mayan-ruins','publish','18.793981','-89.396483','Mexico','Yucatán Peninsula','2022-05-15','2022-12-14',23689,25672,399,366,360,'<p>Soundscapes cannot be preserved across centuries like buildings, writings or fossils. In the jungles of the Yucatan there are countless archaeological sites where you can see what the Mayan civilisation lived like. You can admire their intricate architectural design and wonder at the advanced glyph script they developed. </p>
<p>Can you hope to experience the same soundscapes as they did? You probably can. The first step would be to remove all the sounds that Mayans did not experience in their day-to-day lives. Motorised road traffic, scooters, drones, aircraft – these are elements that probably did not pollute the soundscapes in Mayan times. </p>
<p>On my expedition to Mexico I visited a few remote Mayan sites where most tourists didn’t venture. These sites are far away from busy roads, and only reachable on foot after long drives through the jungle. Once there, I set up a few recording rigs and left them out for several days at a time. I had a very knowledgeable local guide who helped me immensely.</p>
<p>Is that it? Yes, more or less. The soundscape might not be exactly the same as 500 or 2000 years ago, but it won’t be drastically different either. Some species might have moved in or become locally extinct. There are differences related to day/night cycles, seasons, global warming and cooling cycles, local weather and a myriad other events that can affect what a place sounds like. Having said that, most of the wildlife you can hear in this recording will probably have been here in Mayan times. </p>
<p>The acoustics of their cities are quite important to consider as well. The big plazas and stepped masonry structures with hard edges have lots of reflective surfaces. The soundscapes of their cities would be a beautiful mix of wild jungle soundscape with man-made acoustics and reflections. Pay attention and see if you can hear these reflections in this recording.</p>',25668,4004,NULL,NULL,22793);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25640,'Bottom of the Sea','bottom-of-the-sea','publish','-36.537596','-72.957983','Chile','Caleta del Medio','2022-08-25','2022-12-14',25638,25647,380,365,376,'<p>Subaquatic register of the bottom of the ocean in Caleta del Medio, Coliumo. Made with hydrophones where we can listen to the soundscape of the Coliumo Bay.<br />
These registers seek to transport us to a sensitive experience regarding the coastal and maritime of the region.</p>',25642,159,NULL,NULL,25224);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25489,'Swamp at the Edge of a River','swamp-at-the-edge-of-a-river','publish','43.925796','15.984253','Croatia','Krka National Park','2022-11-29','2022-12-13',23678,25576,382,366,376,'<p>In the midst of Croatia’s dry and rugged landscapes, there is a series of gorges through which freshwater flows from Dinaric Alps to the Adriatic Sea. We are at the edge of a river inside the flooded forest, where parts of it have become swampy. There is an unusual, organic sound of air bubbles emerging from a water source hidden beneath a layer of fallen leaves. In the background, you can hear some birds becoming increasingly active towards the end after sunset.</p>',25683,4201,NULL,NULL,25214);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25409,'Jungle Lake Deep in the Amazon Rainforest','jungle-lake-deep-in-the-amazon-rainforest','publish','-0.46651680127862805','-75.34935626989113','Ecudaor','Amazon',NULL,'2022-12-09',25440,23680,378,362,360,'<p>Early in the morning I walk along a remote lake in Ecuador’s lower Amazon basin. Far from a city, road, or town, the sounds here are all natural. Thick foliage covers the ground and sky. Everywhere is muddy. Leaves dripping from a recent rain. Dawn approaches and the barking croak of giant frogs gradually becomes less frequent. Mysterious birds calling nearby. The jungle here is one of the most unique and pristine environments I have witnessed. Evoking a sense of magic for me anytime I listen. Recorded on a trip in 2020 with Sennheiser microphones in a stereo binaural array.</p>',25462,3600,NULL,NULL,25410);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25530,'Madagascar Dry Forest Sounds','madagascar-dry-forest-sounds','publish','-20.737934','44.255098','Madagascar','Western Madagascar','2022-07-14','2022-12-09',23689,25533,381,366,360,'<p>Madagascar’s dry forests are amazing biomes, full of weird flora and fauna. Huge baobabs tower over thorny scrub, dwarfing everything around them and creating a feeling of awe. In areas where the baobabs have been conserved along with the thick dry bush, walking around them feels like you’re in a huge cathedral.</p>
<p>The wildlife of these dry forests is nothing short of unbelievable. Cryptic geckos and wonderfully-coloured chameleons abound. Many of the birds you can find here are endemics, as are most of the animals and even plants. The most striking creatures found here have to be the lemurs though. These primates evolved over millions of years to fill niches that would normally be taken by completely different species. Mouse lemurs (smallest primates in the world), sportive lemurs, sifakas, dwarf, brown and many other lemur species call these forests home. </p>
<p>The soundscape is fairly weird too. It’s not too lush or intense by any means. During the day it can be eerily quiet. There are soft swells at dawn and dusk, with a few bird species calling here and there. Night time is quite understated but fascinating, as you can hear in this recording. </p>
<p>The distance between calling individuals is not small which means getting a balanced soundscape can be quite a challenge. If you do manage to get away from particularly loud creatures, everything will seem quiet and distant. </p>
<p>It’s in this apparently desolate soundscape that you can find beautiful detail. Listen for long enough and you’ll start noticing little insect calls here and there. The raspy voice of a distant Madagascar ibis is barely perceptible. Leaves rustling and soft wind may sound like distant calls too. Then an unmistakable owl call (probably a White browed owl) can clearly be heard, with others responding in the distance. Lemur calls abound – probably sportive, dwarf and Sifaka. Some of these species might be unknown to science or even undescribed. </p>',25603,3609,NULL,NULL,22682);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25580,'Waterfall','waterfall','publish','-22.111271','-42.973659','Brazil','Rio de Janeiro','2022-12-02','2022-12-07',23658,23657,378,366,376,'<p>Surrounded by trees, vines, lilies, bromeliads, bamboos and avencas, it is this small waterfall. In the rainy season, its water flow increases, its sound creates a contemplative atmosphere. The water flows between rocks, creates constantly changing rhythmic patterns, designs textures, carries leaves with it and opens paths.</p>',25581,3703,NULL,NULL,22805);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25476,'Wind Above the Forest Cliffs','wind-above-the-forest-cliffs','publish','45.57510113482461','14.473167441009887','Slovenia','Snežnik','2022-11-25','2022-12-07',23678,25483,381,363,373,'<p>At 1400 meters, in the heart of a UNESCO-protected primeval Beech forest, there are hidden cliff systems containing numerous caves. It is early winter on a windy day and we are positioned at the bottom of a high cliff. This recording captures the sounds of dripping water inside one of the caves and cliffs, being joined by a distant wind sweeping over Beech trees which slowly settle down towards the end. It is the most remote area you can find in Slovenia, a country known for its unspoiled nature. Such well-protected mountain habitat gives you a rare opportunity to be for days without any kind of human-made noise. This is also home to numerous species like brown bear, lynx, wolf and other wildlife which remain pretty undisturbed here.</p>',25486,3000,NULL,NULL,22704);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25512,'Dawn in Madagascar Rainforest','dawn-in-madagascar-rainforest','publish','-15.657134','50.29869','Madagascar','Masoala Peninsula','2022-07-13','2022-12-06',23689,25498,378,361,360,'<p>Madagascar’s rainforests are incredibly biodiverse, but the soundscapes can be surprisingly understated. Bird life is varied but birdsong isn’t overly lush or busy everywhere. Insects can be loud but they don’t call at all times of day and night. Being in these rainforests reminded me of exploring cloud forests in Ethiopia or Costa Rica, where the soundscapes tend to be similarly thin because of low temperatures and extreme weather.</p>
<p>Of all the rainforests I’ve visited in Madagascar, Masoala seems to be home to the most complex and lush soundscapes. The best moment to experience this is clearly the dawn chorus, although dusk choruses can also be pretty lively. </p>
<p>Getting a good clean recording of these soundscapes was no easy task though. Masoala is a peninsula surrounded by the waters of the Indian Ocean. The sound of waves crashing on sandy and rocky beaches can carry for many miles. Fast and noisy rivers run at the bottom of valleys nestled between steep hillsides. There are occasional boats moving around, although this is far less of a problem than in other parts of the world I’ve been to. </p>
<p>I had about 10 sound recording rigs with me on this trip and I used them all. In some locations I wasn’t too happy with the results as I was hearing too much of the distant sea or creeks/rivers. Others were much more promising, like the stretch of lowland secondary rainforest I captured this recording in. Here I was able to record clean birdsong with good forest acoustics and soft water drops falling on vegetation for many hours at a time.</p>',25513,4023,NULL,NULL,24112);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25497,'Cold Rain in Madagascar''s Cloud Forest','cold-rain-in-madagascars-cloud-forest','publish','-15.629423','50.170425','Madagascar','Masoala Peninsula','2022-07-15','2022-12-06',23689,25498,378,366,372,'<p>In the montane rainforests of Madagascar, wildlife tends to be quiet. The soundscapes are sparse and their beauty lies in tiny detail. There is almost zero man-made sound because it takes many hours on very bad roads to get here. I’ve recorded in these high altitude jungles over many days without fear of capturing distant engines or aircraft. It’s one of the few places on the island where you can find large tracts of healthy wildlife habitats.</p>
<p>I mostly captured rain in these cloud forests, with the occasional wildlife element. There is a very soft dawn chorus in the morning but birds seem to skip it if it’s raining. The only animal that did not care and went on calling regardless of the rain is an unidentified tree hole frog with a voice that carries over very long distances. It sounds a bit bored and ambivalent, but I assume the reason it’s calling is to find mates. For the species’ sake, I hope the mates it is looking for are less uncertain and more excited at the prospect.</p>',25504,3723,NULL,NULL,26139);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25456,'Toads in the pond','toads-in-the-pond','publish','-22.111271','-42.973659','Brazil','Rio de Janeiro','2020-09-15','2022-12-03',23658,23657,381,365,369,'<p>During the month of September, with Spring approaching, a natural pond, located on a farm in the mountainous region of Rio de Janeiro, Brazil, was filled with a great variety of toads, which began to sing at sunset.<br />
These sounds are the enchanted songs of those mysterious toads, which are not seen but which surround us with their rhythms and textures.</p>',25457,173,NULL,NULL,24158);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25414,'Himalayan Morning','himalayan-morning','publish','30.465175','78.014209','India','Uttarakhand Province','2016-03-30','2022-12-01',25415,NULL,381,367,360,'<p>In montane forest about 2100m asl in the Garhwal Himalayas, Uttarakhand Province, India. About 45 mins after dawn at the end of March. The early morning chorus in full voice along with many insects which were becoming more active as the sun rose over the ridge tops.</p>',25418,118,NULL,NULL,26136);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25318,'An Oriole as a Soloist','an-oriole-as-a-soloist','publish','46.27643','2.17576','France','Saint-Silvain-sous-Toulx','2021-05-28','2022-11-24',25298,25319,381,361,360,'<p>It is about 8:40 pm and the spring birds are still singing. An oriole (Oriolus oriolus) stands out as much by its deeper song as by its proximity to the couple of microphones.</p>',25321,453,NULL,NULL,24071);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25297,'A Lerot in the Night','a-lerot-in-the-night','publish','46.27643','2.17576','France','Nouvelle Aquitaine','2020-09-04','2022-11-23',25298,24103,381,365,374,'<p>I was trying to record tawny owls that night. I had placed the pair of microphones about 2 meters high towards a field and near trees where these birds usually visit. After a while, I hear this coughing sound in the headphones, wondering who could be making it. I had to ask some audio-naturalists to learn that it was a lerot (eliomys quercinus) in the tree close enough to the microphones to be clearly recorded.</p>',25313,257,NULL,NULL,26204);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25286,'Windy Night with crickets, pipistrelles, tawny owl and stealthy creatures','windy-night-with-crickets-pipistrelles-tawny-owl-and-stealthy-creatures','publish','46.17143630981445','3.781993865966797','France','Saint-Pierre-Laval','2021-02-10','2022-11-23',25287,24103,381,366,371,'<p>A peaceful windy night at the end of summer in a nice lively valley in a hilly rural area. A mix of woods and meadows, many insects and animals. There are a lot of bats in the recording and we can partially hear their calls: it’s a kind of distorted high click. If patient enough, you might hear a female tawny owl near the end. Dark was the night.</p>',25289,466,NULL,NULL,26151);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25211,'On the banks of Twenty-Two Creek','on-the-banks-of-twenty-two-creek','publish','44.63987','-85.422','USA','Valley of the Giants','2022-10-21','2022-11-21',24809,25212,381,366,376,'<p>Twenty-Two Creek is a shallow and meandering creek that runs along the North Country Scenic Trail and is a prominent feature in the Valley of the Giants. Its gentle gurgling sounds are the backdrop for views of stunning trees that are hundreds of years old. </p>',25216,2100,NULL,NULL,25214);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25028,'Lake Superior Storm at Whitefish Point','lake-superior-storm-at-whitefish-point','publish','46.76935','-84.9503609','USA','Michigan','2022-09-14','2022-11-15',24809,25022,382,366,376,'<p>Whitefish Point is in Chippewa County in Michigan’s Upper Peninsula (U.P.) It is home to the Whitefish Point Bird Observatory and the Great Lakes Shipwreck Museum. The area is popular for birding, rock hunting, beach walking and ship watching. It is also the home of a former United States Coast Guard station. On the days I visited, rain storms greeted me and regaled me with impressive wind, amazing cloud formations and giant crashing waves.</p>
<p>My goal in visiting Whitefish Point was to observe and record birds that use the area around the observatory as a rest and fuel source during their fall migration. Whitefish Point is a designated “Important Bird Area” by BirdLife International because of its unique geographical terrain that creates a natural corridor for migrating birds. A dedicated team of volunteers and scientists has observed and identified at Whitefish Point nearly 350 species of birds. </p>',25029,1716,NULL,NULL,22782);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25021,'Gentle Waves on Lake Superior at Crisp Point Lighthouse','gentle-waves-on-lake-superior-at-crisp-point-lighthouse','publish','46.75252','-85.25886','USA','Michigan','2022-09-13','2022-11-15',24809,25022,382,366,376,'<p>This recording features the waves of Lake Superior as they collide with an old pier left over from the heyday of this amazing lighthouse. As I walked down the beach, I kept hearing a “tink think” sound rise from the waves. I looked around and discovered the pier/piling had a bolt sticking through with a large washer getting moved around by the water. Once I heard it, I became slightly obsessed with it and setup my recorder.</p>
<p>This sound reminds me of a singing bowl used during meditation. That crisp, clear bell and the calming sounds of the waves. The water is interacting with a man-made object, but this is nature negotiating and interacting with the pier that was placed in its path decades ago. Listen to this with headphones and let the cling of the washer bring you back to center as you breathe. Or, just listen to a cool sound on Lake Superior.</p>',25024,1456,NULL,NULL,22603);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (25014,'Storm in Conifer Forest','storm-in-conifer-forest','publish','55.249103','-1.971717','England','Morpeth','2017-03-11','2022-11-15',23660,25015,381,363,373,'<p>A storm blows through a conifer forest in the far North of England. The tall spruce trees creak and groan, their shallow roots flexing and rumbling in the ground below. They sound almost like the songs of whales! Chaffinch, Coal tit, Wren and Crossbill call.</p>',25017,863,NULL,NULL,26456);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24863,'Ducks At Dawn','ducks-at-dawn','publish','49.607117','3.475263','France','Fourdrain','2022-07-19','2022-11-11',24858,24816,382,362,360,'<p>A large pond in the French countryside inhabited by a group of Mallard ducks. While they spent the night all over the place, they seem to gather all at once as the sun rises.</p>',24864,266,NULL,NULL,24157);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24857,'Light Rain on Hollow Wood','light-rain-on-hollow-wood','publish','38.345008','34.962544','Turkey','Cappadocia','2022-01-07','2022-11-11',24858,23888,387,366,376,'<p>A small canyon between troglodyte churches in Cappadocia.<br />
I choose dead branches as a microphone stand trying to record some Common whitethroat.<br />
As rain starts, drips hitting the branches reveal the hollowness of the wood, while the birds continue to sing the ending day.</p>',24860,630,NULL,NULL,24039);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24851,'Young Red Deer Rut','young-red-deer-rut','publish','44.879118','5.25566','France','Omblèze','2022-10-04','2022-11-11',24813,24844,381,364,386,'<p>In a forest where hunting is prohibited, a young deer is calling to mate. At night, their calls are resonating, as the wind is starting to blow. </p>',24852,1643,NULL,NULL,24854);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24839,'Thunder in Cantal','thunder-in-cantal','publish','45.405008','2.530146','France','Champs-sur-Tarentaine-Marchal','2022-08-17','2022-11-11',24813,NULL,384,364,377,'<p>Summer 2022 is one of the hottest in France. After weeks under a heat wave, the rain is finally coming, with a strong storm. We can hear some distant cows, that are staying not far from the field where we recorded.</p>',24846,2054,NULL,NULL,22577);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24833,'Common Cranes and Fox interaction','common-cranes-and-fox-interaction','publish','48.588764','4.784776','France','Lake of Der','2022-11-05','2022-11-11',24813,24836,382,364,386,'<p>Each year, 20,000 to 40,000 Common Cranes make a stop at Lake of Der in France, migrating from northern countries. During the night, they stay together at the shore. This specific evening, a fox came to disturb them. This is a recording of their dialogue.</p>',24834,560,NULL,NULL,22784);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24815,'Laughing Frogs','laughing-frogs','publish','46.105054','4.379873','France','Cours','2021-04-27','2022-11-10',24813,24816,382,366,369,'<p>Marsh frogs trio recorded during the night in a pond during spring, next to an open field. We left the microphones recording during the whole night, this is an extract around 3am. </p>',24818,771,NULL,NULL,22765);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24545,'Frog Chorus at Sugarloaf Ridge State Park','frog-chorus-at-sugarloaf-ridge-state-park','publish','38.4372','122.5163','USA','North California','2017-11-17','2022-11-07',24540,24544,381,367,369,'<p>This is a binaural recording of a frog chorus in the late evening at Sugarloaf Ridge State Park in Northern California.</p>',24546,472,NULL,NULL,24482);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24542,'Ocean Waves at Stinson Beach','ocean-waves-at-stinson-beach','publish','37.9005','122.6444','USA','North California','2017-11-20','2022-11-07',24540,24544,380,366,376,'<p>Bbinaural recording of a rocky beach with aggressive ocean wave splashes.<br />
A Neumann KU-100 dummy head microphone setup was used along with a boom pole while sitting on a boulder surrounded by several pockets of puddles, crevices, sea foam and splashing waves.</p>',24543,349,NULL,NULL,22670);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24537,'Dawn at Fifteen Mile Creek in Early Winter','dawn-at-fifteen-mile-creek-in-early-winter','publish','-31.339069','138.89108','Australia','Ikara/Flinders Ranges','2022-05-22','2022-11-07',24251,23728,383,361,360,'<p>The Flinders Ranges are largely composed of folded and faulted sediments deposited in a large basin during the Neoproterozoic on the passive margin of the ancient continent of Rodinia. During the Cambrian, approximately 540 million years ago, the geosynclinal sequence was folded and faulted into a large mountain range. Since this time the area has undergone erosion, resulting in the relatively low ranges today.</p>
<p>The flora of the Flinders Ranges is composed largely of species adapted to a semi-arid environment such as cypress-pine, mallee, and black oak. Moister areas near Ikara/Wilpena Pound support grevilleas, Guinea flowers, lilies and ferns. Reeds and sedges grow near permanent water sources such as springs and waterholes.</p>
<p>Since the eradication of dingos and the establishment of permanent waterholes by European settlers for their introduced stock, the numbers of red kangaroos, western grey kangaroos and euros in the Flinders Ranges have increased. The yellow-footed rock-wallaby, which neared extinction after the arrival of Europeans due to hunting and predation by foxes, has now stabilized. Other endemic marsupials include dunnarts and planigales. Echidnas are the sole monotreme species in the park. Insectivorous bats make up significant proportion of mammals in the area. Reptiles include goannas, snakes, dragon lizards, skinks and geckos. The streambank froglet is an endemic amphibian.</p>
<p>There are a large number of bird species including various parrots, emus, the wedge-tailed eagles and small numbers of waterbirds. The land within the national park has been identified by BirdLife International as an Important Bird Area (IBA) because it contains an apparently sustainable population of the range-restricted short-tailed grasswren. A wide variety of birds typical of semi-arid mallee regions are abundant here.</p>',25451,620,NULL,NULL,22780);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24534,'Morning at a Creek in Early Winter','morning-at-a-creek-in-early-winter','publish','-31.340146','138.890691','Australia','Ikara/Flinders Ranges','2022-05-02','2022-11-06',24251,23728,383,366,360,'<p>The Flinders Ranges are largely composed of folded and faulted sediments deposited in a large basin during the Neoproterozoic on the passive margin of the ancient continent of Rodinia. During the Cambrian, approximately 540 million years ago, the geosynclinal sequence was folded and faulted into a large mountain range. Since this time the area has undergone erosion, resulting in the relatively low ranges today.</p>
<p>The flora of the Flinders Ranges is composed largely of species adapted to a semi-arid environment such as cypress-pine, mallee, and black oak. Moister areas near Ikara/Wilpena Pound support grevilleas, Guinea flowers, lilies and ferns. Reeds and sedges grow near permanent water sources such as springs and waterholes.</p>
<p>Since the eradication of dingos and the establishment of permanent waterholes by European settlers for their introduced stock, the numbers of red kangaroos, western grey kangaroos and euros in the Flinders Ranges have increased. The yellow-footed rock-wallaby, which neared extinction after the arrival of Europeans due to hunting and predation by foxes, has now stabilized. Other endemic marsupials include dunnarts and planigales. Echidnas are the sole monotreme species in the park. Insectivorous bats make up significant proportion of mammals in the area. Reptiles include goannas, snakes, dragon lizards, skinks and geckos. The streambank froglet is an endemic amphibian.</p>
<p>There are a large number of bird species including various parrots, emus, the wedge-tailed eagles and small numbers of waterbirds. The land within the national park has been identified by BirdLife International as an Important Bird Area (IBA) because it contains an apparently sustainable population of the range-restricted short-tailed grasswren. A wide variety of birds typical of semi-arid mallee regions are abundant here.</p>',24535,983,NULL,NULL,22780);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24531,'Night at Fifteen Mile Creek in Early Winter','night-at-creek-in-early-winter','publish','-31.340146','138.890691','Australia','Flinders Ranges',NULL,'2022-11-06',24251,23728,383,364,371,'<p>The Flinders Ranges are largely composed of folded and faulted sediments deposited in a large basin during the Neoproterozoic on the passive margin of the ancient continent of Rodinia. During the Cambrian, approximately 540 million years ago, the geosynclinal sequence was folded and faulted into a large mountain range. Since this time the area has undergone erosion, resulting in the relatively low ranges today.</p>
<p>The flora of the Flinders Ranges is composed largely of species adapted to a semi-arid environment such as cypress-pine, mallee, and black oak. Moister areas near Ikara/Wilpena Pound support grevilleas, Guinea flowers, lilies and ferns. Reeds and sedges grow near permanent water sources such as springs and waterholes.</p>
<p>Since the eradication of dingos and the establishment of permanent waterholes by European settlers for their introduced stock, the numbers of red kangaroos, western grey kangaroos and euros in the Flinders Ranges have increased. The yellow-footed rock-wallaby, which neared extinction after the arrival of Europeans due to hunting and predation by foxes, has now stabilized. Other endemic marsupials include dunnarts and planigales. Echidnas are the sole monotreme species in the park. Insectivorous bats make up significant proportion of mammals in the area. Reptiles include goannas, snakes, dragon lizards, skinks and geckos. The streambank froglet is an endemic amphibian.</p>
<p>There are a large number of bird species including various parrots, emus, the wedge-tailed eagles and small numbers of waterbirds. The land within the national park has been identified by BirdLife International as an Important Bird Area (IBA) because it contains an apparently sustainable population of the range-restricted short-tailed grasswren. A wide variety of birds typical of semi-arid mallee regions are abundant here.</p>',24533,743,NULL,NULL,26147);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24502,'Photosynthesis in Pond','photosynthesis-in-pond','publish','43.478886','4.651887','France','Arles','2021-05-11','2022-11-03',24492,24103,382,362,376,'<p>Oxygen bubbles explode slowly on the plants making photosynthesis in a small pond with 10cm water level. The hydrophones are recording the sounds of the oxygen released by the leaves under the sun, sometimes crackling or almost singing. Recorded with home-made hydrophones.</p>',24503,646,NULL,NULL,24110);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24500,'Dawn Chorus in Early Summer','dawn-chorus-in-early-summer','publish','56.822118','-3.459599','Scotland','Blairgowrie','2022-06-10','2022-11-03',24492,23681,381,361,360,'<p>Recording of the dawn chorus in the early morning in Scotland where blackbirds and song-thrushs are covering most of the calls. The wind is starting and some sheep are still around.</p>',24501,433,NULL,NULL,24313);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24498,'Rainy Morning in Summer','rainy-morning-in-summer','publish','-22.392739','-44.552637','Brazil','Rio de Janeiro','2021-11-06','2022-11-03',24492,23657,399,366,376,'<p>After a storm during the night, the bird life is starting again and the drops are still falling around the microphones.</p>',24499,704,NULL,NULL,22598);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24496,'Night Calls of Toads and Frogs','night-calls-of-toads-and-frogs','publish','-22.392354','-44.554714','Brazil','Rio de Janeiro','2022-11-08','2022-11-03',24492,23657,399,365,369,'<p>Drop rig recording in a pond where frogs are gathering to mate, under some habitations with a quite large reverb. The microphone were left for the night on a rock on the ground to be very close to the calls. </p>',24497,398,NULL,NULL,25237);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24494,'Night in the Atlantic Forest After Rain','night-in-the-atlantic-forest-after-rain','publish','-22.39687','-44.559996','Brazil','Rio de Janeiro','2021-09-12','2022-11-03',24492,23657,399,367,386,'<p>Recording from a night in the Atlantic forest, surrounded by insects and distant dogs after the rain with some last drops falling from the trees.</p>',24495,763,NULL,NULL,25357);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24467,'Traouieros Lake','traouieros-lake','publish','48.819637','-3.491421','France','French Brittany','2022-10-30','2022-11-02',24466,24103,381,366,373,'<p>The lake of the Traouieros Valley, in Tregastel, on a sunny Autumn Sunday.</p>',24468,353,NULL,NULL,24158);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24447,'Thousands of Kittiwakes Calling','thousands-of-kittiwakes-calling','publish','62.101899688509796','-7.6485831375576865','Faroe Islands','Mykines','2022-06-22','2022-10-31',24451,24448,380,362,360,'<p>Mykines is the most western island in the Faroe archipelago. It is called birds paradise and shelters species like the gannets, puffins, razorbills and the kittiwakes. These are the last ones who welcome the visitors from the boat.<br />
Nesting on the cliff, they offer a majestic spectacle, similar to a large playground, whose cries echo between the cliffs.<br />
Howling in a deafening din, in a movement similar to the waves that rush into it.</p>',24449,394,NULL,NULL,25876);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24349,'The Griffon Vulture Cliff','the-griffon-vulture-cliff','publish','40.833541','-7.034309','Portugal','Guarda','2022-06-23','2022-10-26',23659,23718,387,364,386,'<p>Facing a cliff, after travelling through the insidious roads of the mountain range of the region of the Greater Vale do Côa, sitting in absolute silence and quietness, one can observe the vultures (Gyps fulvus) that nest and move around searching for food. The flights of these birds are very powerful as can hear in this recording, as if moving a big mass of air.<br />
The day was hot and very dry with cicadas and wind swirls illustrating these conditions.<br />
Thanks to Rewilding Portugal for facilitating and pointing access to these places.</p>',24351,347,NULL,NULL,22768);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24338,'First Stirrings of First Light in a Pine Forest','first-stirrings-of-first-light-in-a-pine-forest','publish','-35.5895','138.273356','Australia','Fleurieu Peninsula','2022-09-11','2022-10-24',24251,23728,392,367,360,'<p>An unedited, unprocessed excerpt from an attended (listening meditation) night-to-dawn recording made in a small pine forest on the Fleurieu Peninsula, South Australia. Most, if not all, pine forests here are plantation forests of introduced pine species; and most tend to be adjacent to large tracts of pastoral land for the grazing of cattle and sheep. Different pine forests can have quite different acoustic effects. There is also a significant difference between sounds entering the forest from beyond its limits (such as the occasional calls of cows and sheep that can be heard in this recording, and some of the more distant bird calls), and those produced within it (such as the various native birds that can be heard in this recording, including Australian Magpies, Australian Ravens, and, in particular, the fairly nearby song calls of a Fan-tailed Cuckoo).<br />
Recorded on land of the Kaurna and Ngarrindjeri peoples.</p>',24547,3911,NULL,NULL,24313);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24335,'The Mouth of the Murray River at Night','the-mouth-of-the-murray-river-at-night','publish','-35.551712','138.882775','Australia','The Coorong','2022-10-09','2022-10-24',24251,23728,380,368,376,'<p>This recording was made after midnight, on a calm night, at the edge of the sandy inland shore where the waters of the the Lower Murray River (Murrundi or Millewa) and the Coorong (Kurangk) lagoon meet the open ocean. Half a kilometre away, directly across the water, is the mouth of Murrundi/Murray River, and a few hundred metres farther on, the ocean. The ocean’s roar can be heard quietly behind and beyond the gentle waves playing to and fro along the length of the shore.<br />
Recorded on the land of the Ngarrindjeri peoples.</p>',24336,945,NULL,NULL,21697);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24333,'Early Autumn Bushland Dawn near the Coorong','early-autumn-bushland-dawn-near-the-coorong','publish','-35.670439','139.159026','Australia','Coorong','2022-10-03','2022-10-24',24251,23728,380,367,360,'<p>Recorded in native bushland scrub about 500 metres inland from the near shore of the Coorong/Kurangk saltwater lagoon, and about two kilometres from the ocean shore on the far side of the lagoon and the high, narrow peninsula of sand dunes that encloses it. This is a brief excerpt from a dawn recording made in late summer/early autumn.<br />
Recorded on land of the Ngarrindjeri peoples.</p>',24334,514,NULL,NULL,22774);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24331,'Late Summer Dawn at the Coorong','late-summer-dawn-at-the-coorong','publish','-35.62092','139.070179','Australia','Coorong/Kurangk National Park','2022-10-20','2022-10-24',24251,23728,380,366,360,'<p>A dawn excerpt from a night to morning recording made during high tide from amongst reeds at the edge of the Coorong/Kurangk saltwater lagoon in Coorong/Kurangk National Park, South Australia.<br />
This place’s signature roar of the ocean on the far side of the dunes that enclose the lagoon, dominates the soundscape, yet it does not eclipse the calls of the birds.<br />
This recording was made on land and water of the Ngarrindjeri peoples.</p>',24342,1643,NULL,NULL,22758);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24328,'Rufous Whistler and Barking Kangaroo','rufous-whistler-and-barking-kangaroo','publish','-33.70291','140.209023','Australia','Gluepot Reserve','2021-12-05','2022-10-24',24251,23728,383,361,374,'<p>This recording is a brief excerpt from a longer night to dawn recording made in Gluepot Reserve. Gluepot Reserve is part of the largest block of intact arid mallee left in Australia and so the viability of threatened bird populations and other flora and fauna is high. Six nationally threatened bird species can be found on Gluepot Reserve and a further 17 regionally threatened bird species. In all, 190 bird species have been recorded thus far. Gluepot Reserve has a diversity of vegetation communities which support important wildlife other than birds. Vegetation on Gluepot varies according to soil types. However, the dominant vegetation on Gluepot consists of mallee woodlands.</p>',24330,140,NULL,NULL,24069);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24325,'Dawn at Tapanappa Creek in Early Spring','dawn-at-tapanappa-creek-in-early-spring','publish','-35.631013','138.267143','Australia','Deep Creek National Park','2019-09-25','2022-10-24',24251,23728,381,361,360,'<p>Deep Creek Conservation Park was re-designated Deep Creek National Park on 26 November 2021, preceding the completion, in late 2022, of certain upgrades to the park aimed at making it much more accessible to visitors, including tourist buses. This is a significant change in various ways. Deep Creek National Park is the largest portion of remaining natural vegetation on the Fleurieu Peninsula, South Australia, and is home to an array of native wildlife such as western grey kangaroos, short beaked echidnas and 100 species of birds. Whales can be seen cruising the coast during their annual migration which takes place from June to October. This National Park is the largest portion of remaining natural vegetation on the Fleurieu Peninsula (comprising, in particular, eucalyptus forests and grass trees, and a variety of native wild flowers and flowering bushes).</p>',24326,3599,NULL,NULL,25870);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24320,'Love Songs of Frogs, Boobook Owls and Koalas in a Valley Forest of Eucalypti Trees','love-songs-of-frogs-boobook-owls-and-koalas-in-a-valley-forest-of-eucalypti-trees','publish','-34.881826','138.783164','Australia','Montacute Conservation Park','2019-05-05','2022-10-24',24251,23728,381,364,374,'<p>This is an excerpt from a recording made between midnight and first light in Montacute Conservation Park, Adelaide Hills, South Australia.<br />
This beautiful Conservation Park is nestled within the Adelaide Hills, only 17.5 kilometres from the centre of the city located on the plain beneath the hills. Comprising several creeks and valleys forested with tall eucalyptus trees, the Conservation Park is home and haven to a remarkable variety of species of birds (including emus) and mammals. However, its proximity to the city, not to mention the fact that jets and light planes regularly fly over it, makes it highly permeable to mechanical anthropogenic noise. I was extremely fortunate to obtain this recording, between the hours of midnight and dawn, with minimal anthropogenic noise, in 2019. I am doubtful whether I would be so fortunate now, three years later. Here is a very simple little equation, which I believe that all nature field recordists would surely accept: ‘As the drive for profit relentlessly increases, so does the consequence of human noise.’</p>',24321,1636,NULL,NULL,22783);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24290,'River Parvati','river-parvati','publish','32.01560383328793','77.45380954939039','India','Himachal Pradesh','2016-05-15','2022-10-19',24286,NULL,400,368,376,'<p>Parvati is a river in the mountain state of Himachal Pradesh, India. Flowing through the Himalayas, the river and the valley are home to quaint mountain life, lush ecological diversity, and other natural and human-made phenomena exclusive to the Himalayan ecosystem. In a relatively short span of existence before Parvati merges into the Beas river, it hosts important religious centers, hills known for harvesting recreational drugs, trekking routes for adventure enthusiasts, and systemic exploitation for hydropower projects and ecotourism.<br />
This recording was done in a village called Tosh, which is the last village upstream of the river. The recording was done during brief pauses from the continuous sound of heavy machinery drilling the surrounding hills for hydropower projects. During brief pauses from human sounds of tourists visiting Tosh to escape the cacophony of urban life, and in turn, turn a quaint mountain ecosystem into a chaotic one.<br />
It is a completely altered ecosystem now, in 2022. One can navigate their way following trails of plastic waste, to reach places in the valley which were once only accessible through bare and untouched paths, flowing quietly, alongside Parvati.<br />
I wonder if Parvati still sounds the same.</p>',24291,257,NULL,NULL,22792);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24287,'River Godavari','river-godavari','publish','19.632439107722703','73.72931245224514','India','Maharashtra','2022-09-15','2022-10-19',24286,NULL,399,368,376,'<h2>About Godavari River</h2>
<p>The Godavari, also known as the Dakshin Ganga or the Ganges of the South (India), is one of the largest rivers in the Indian subcontinent.</p>
<h2>Where is Godavari Located?</h2>
<p>Flowing for around 1500 Kilometers, from the Western Ghats to the Bay of Bengal, the river hosts a plethora of important Ecological, Cultural, Historical, Mythological, Industrial, and Religious centers. A living memory of its trail in time and space, the river is perceived, celebrated, and in certain contexts, prayed for the monumental status that it has.</p>
<p>Nashik, an ancient city, also known as the wine capital of India, is an important Hindu religious site and hosts the Kumbh Mela: one of the largest human conglomerations in the world for a religious event.</p>
<p>Nashik is also an important industrial center in India and has enjoyed the status of a major tourist attraction, ever since it was established to be, during British colonial rule in India. It is based on the banks of the river Godavari.<br />
An overview of Nashik reaffirms the role of a river ecosystem in the establishment and growth of human settlements.</p>
<p>There are enough traces left, with regards to the journey of the river, to admire the settlement-river relationship for voyeuristic pleasure, which can be achieved through ecological and religious tourism in and around the city.</p>
<p>And once one goes beyond this filter, what is also evident is an example of how human interventions cause the gradual destruction of nature, through resource extraction, narrow definitions of ‘development’, and an attempt to domesticate wilderness into a more ‘human’ form.</p>
<h2>Where is the origin of River Godavari?</h2>
<p>The River Godavari originates from the Brahmagiri Mountain in the Western Ghats of Maharashtra, India. It then flows through several states of India, including Maharashtra, Telangana, Andhra Pradesh, Chhattisgarh, and Odisha, before emptying into the Bay of Bengal.</p>
<h2>Where was the Recording Made?</h2>
<p>This recording of the river was done at a place called Wasali, in Nashik. Wasali is near Triyambakeshwar, which is the origin point of the river. Here, it sounds like just another stream of water, wild, and less ‘human’, and unaware of the monumental status it shall achieve in the due course of its existence, and being. For its good, and the worse.</p>',24288,137,NULL,NULL,24043);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24283,'Frogs and Wilsons Snip','frogs-and-wilsons-snip','publish','48.73157','-117.56393','USA','Colville National Forest',NULL,'2022-10-19',24257,24273,391,364,360,'<p>To me these sound like Pacific Chorus Frogs, and from what I’ve been able to research this is one of the species found in Colville National Forest. I am more confident however in ID’ing the winnowing of Wilson Snipe in this recording. At the time I recorded it I was unaware of this behavior, or that snipe are to be found in the area. This sound eerily swirls around and moves around in the stereo field in such a way that it was a little unsettling when I didn’t know what it was.</p>',24284,185,NULL,NULL,24111);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24278,'Burbling Creek','burbling-creek','publish','48.38188','-117.6385','USA','Colville National Forest',NULL,'2022-10-19',24257,24273,NULL,368,376,'<p>I took microphones with me while looking for wild turkeys in late winter / early spring. While I did not succeed in recording the turkeys,(there was still a lot more snow than expected) I enjoyed the sound of the creek near where I was camped.</p>',24279,332,NULL,NULL,24077);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24270,'Bird and Frog Chorus at First Light','bird-and-frog-chorus-at-first-light','publish','46.4704','-122.52531','USA','Olympic Peninsula',NULL,'2022-10-18',24257,24273,397,367,360,'<p>Clear cuts such as the one where this recording was made can evoke mixed feelings. Their appearance will at first seem like scars on the forest, yet when I want to see or hear animals in Western Washington, these are the first places I look. As new growth settles in these clear cuts, wildlife follows in abundance. Here I not only recorded a wide number of birds and the lone pacific chorus frog who decided to join in, but I also found several bedding areas for elk.</p>',24274,239,NULL,NULL,24158);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24266,'Savage River','savage-river','publish','63.751574','-149.29039','USA','Alaska','2021-08-15','2022-10-18',24257,24258,396,368,376,'<p>Close up recording of the Upper Savage River in Denali National Park Alaska USA. Most of the rivers in Denali are coming directly from glaciers in the same park. The heavy amounts of sediment from the glaciers gives the water a beautiful glass-like appearance however also render these rivers inhospitable for most types of fish.</p>',24267,292,NULL,NULL,24051);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24263,'Boreal Forest Night','boreal-forest-night','publish','63.751574','-149.29039','USA','Alaska','2021-08-15','2022-10-18',24257,24258,391,366,373,'<p>Night ambience from a section of Boreal Forest in Denali National Park, Alaska USA. I wanted to catch a feeling of how eerie these forests are at night, so I fixed microphones to either side of a tree trunk and left the recorder in a dry bag overnight, ending up with a semi-binaural effect given to the sound of the wind whistling through the spruce trees.</p>',24264,340,NULL,NULL,21922);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24259,'Boreal Forest Ambience with Birds','boreal-forest-ambience-with-birds','publish','63.711304','-149.475743','USA','Alaska','2021-08-15','2022-10-18',24257,24258,391,366,373,'<p>A gentle breeze through a forest of Spruce trees with a mossy ground in Denali National Park, Alaska USA. Dark Eyed Junco and Orange Crowned Warbler calls. This was a really spooky session because I couldn’t see into the open and there were fresh moose droppings everywhere. Mind you, moose bites can be pretty nasty.</p>',24260,293,NULL,NULL,22640);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24252,'Whooper Swans at Midnight','whooper-swans-at-midnight','publish','54.97476','-3.481394','Scotland','Blackshaw','2014-12-08','2022-10-18',23660,24253,395,366,360,'<p>A small flock of Whooper Swans are roosting on an icy coastal marsh in the south-west of Scotland. Recorded just after midnight, with distant Barnacle Geese. </p>',24256,420,NULL,NULL,24110);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24249,'Mallee Dawn in Spring','mallee-dawn-in-spring','publish','-33.696316','140.128207','Australia','Gluepot Reserve','2020-09-14','2022-10-18',24251,23728,394,367,360,'<p>Gluepot Reserve is part of the largest block of intact arid mallee left in Australia and so the viability of threatened bird populations and other flora and fauna is high. Six nationally threatened bird species can be found on Gluepot Reserve and a further 17 regionally threatened bird species. In all, 190 bird species have been recorded thus far. Gluepot Reserve has a diversity of vegetation communities which support important wildlife other than birds. Reptiles are particularly abundant with 50 species located so far. Four species of frog have been identified, appearing only during the brief wet season. As in other areas, invertebrates dominate both the terrestrial and aquatic faunas of the mallee in terms of numbers of individuals, numbers of species and biomass. For example, over 150 species of ant, a dominant mallee group, have been found in a 50m x 50m square over one year.</p>
<p>Gluepot’s climate is relatively dry. Average rainfall around 200 – 250 mm and is characterised usually by short wet winters (April – August) followed by long hot dry summers. The dominant land forms are a dune/swale system – low east west “red” sand dunes with heavier clay soils in the swales between the dunes. This system is a legacy of a drier Geological time when the dunes were mobile. Dunes on Gluepot are now all vegetated. There are also areas of heavier clay soils which can become boggy after significant rain. (significant on Gluepot is anything above 25mm rain.) Hence the name “Gluepot”. The entire Reserve is underlain by extensive limestone layers, a legacy of past Geological times when the area was under shallow seas. Soils are generally alkaline.</p>
<p>Vegetation on Gluepot varies according to soil types. However, the dominant vegetation on Gluepot consists of mallee woodlands. Mallee is a relatively small (up to 7 meters) multi-stemmed eucalyptus. The word “Mallee” is believed to be of Indigenous derivation probably from Western Victoria and has been taken from the Indigenous name for this type of eucalyptus. Mallee is characterised by its lack of a main trunk and large underground lignotuber or “mallee root”. The species is generally slow growing and the wood hard. It was used extensively by early settlers for firewood. There are six major species of mallee on Gluepot.</p>',24254,3599,NULL,NULL,22771);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24234,'Intense Red Deer Rutting Through the Forest','intense-red-deer-rutting-through-the-forest','publish','47.84992','2.431075','France','Orléans','2022-09-22','2022-10-13',24233,24103,381,362,386,'<p>This recording took place long after midnight, when the red deer seemed to be more active and excited in the forest, barely leaving any space for silence. Through their loud and intense calls the forest space is revealed in the very cold and dark night.</p>',24235,508,NULL,NULL,25886);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24181,'Dawn Chorus in the Forest of Brou','brou-leve-du-jour-for','publish','45.935817','4.489161','France','Rhône','2019-02-26','2022-10-10',24180,24103,381,361,360,'<p>Chorus of the dawn in this end of February in the forest of Brou. I arrived in full night and went up in the forest in the light of the last quarter of moon. Great silence, then quickly a tawny owl is heard.<br />
At 6h40 the first robins, blackbirds and music thrushes woke up. In the pond below, mallards were active. A goshawk made several passes. I hear it more than I see it. Then it is the awakening of all the inhabitants of the forest: wrens, black tits, great tits, tree finches, triple-banded kinglets, creeper, nuthatches…</p>
<p>The spotted woodpeckers which are in the center of the sequence, grace us with a sound and rhythmic concert. We can hear different drumming depending on the quality of the wood.<br />
Later on, the great crows will make a noisy passage. To finish, some oak jays sing in an unusual register.</p>',24186,1088,NULL,NULL,22786);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23628,'Meadow Stream At Dawn','meadow-stream-at-dawn','publish','41.30267','-122.47257','USA','Klamath Mountains, Siskiyou County, California','2022-07-14','2022-10-06',24079,24081,387,366,376,'<p>This soundscape was recorded at dawn beside a spring fed stream as it winds its way through a lush mountain meadow before joining the nearby North Fork of the Sacramento River. This stream is one of numerous spring fed streams that form the headwaters of the Sacramento River – the largest river in California. The meadow sits at the foot of Mount Eddy, the highest peak in the Klamath Mountains, and is surrounded by a diverse conifer forest consisting of Lodgepole Pine, Jeffrey Pine, White Fir, Red Fir, and Incense Cedar. The birds you will hear the most on this recording are active and energetic Mountain Chickadees as they flit about the branches of the nearby pine trees foraging for insects.</p>',24184,3811,NULL,NULL,24068);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24105,'Wedge-tailed Shearwaters','wedge-tailed-shearwaters','publish','-23.304713','151.916515','Australia','Queensland','2007-10-29','2022-10-04',23660,23728,393,362,360,'<p>The haunting nocturnal calls of Wedge-tailed shearwaters recorded with close open mics on Wilson Island, a small vegetated coral cay on the Great Barrier Reef, Queensland. Nesting Black Noddy calling in the background.</p>',24106,571,NULL,NULL,22702);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24099,'Wind whirl on pinetrees','wind-whirl-on-pinetrees','publish','47.83175','2.510222','France','Orléans','2022-09-16','2022-10-04',23659,24103,392,366,373,'<p>The transition of Summer to Fall can maybe start to be felt by the drastic temperature change from day to night. Not really knowing what to expect at first from this part of the forest as we were hearing out for deer, we were enveloped and embraced by this swirl of wind revealing the size and shape of the tall trees around us.</p>',24101,319,NULL,NULL,22783);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24096,'Dawn chorus of Spring in a Swedish Forest','dawn-chorus-of-spring-in-a-swedish-forest','publish','58.255914','12.063565','Sweden','Ljungskile','2018-04-08','2022-10-03',23659,23700,391,368,360,'<p>The snow was still melting and it was deep in spots where the sunlight barely touched the ground.<br />
Beautiful lakes – large and small – make the acoustics like a mirror and call a variety of wildlife that we can listen to sometimes at the distance, other times much closer.<br />
In this long segment of the dawn chorus we can hear the tawny owl, the eurasian woodcock, the great spotted woodpecker, the tree-creeper, the european robin, the redwing, the eurasian wren, the whooper swan, the greylag goose and the great tit, between many others. Some calls I cannot recognise and I wonder if there is a red fox screaming at some point.<br />
I believe there was also the golden-eye and common loon.<br />
I’ve seen big big footprints (a wolf?) next to the whole skeleton of a young female elk. I’ve seen so many animal fresh tracks in the snow I can’t forget.</p>',24098,4368,NULL,NULL,24060);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (24029,'Boiling Pool at Bumpass Hell','boiling-pool-at-bumpass-hell','publish','40.45726','-121.50143','USA','Lassen Volcanic National Park','2022-09-15','2022-09-30',24079,24081,389,362,376,'<p>This was recorded at Bumpass Hell in Lassen National Park, California, USA. Bumpass Hell is a hydrothermal area with fumaroles, boiling acidic pools, and bubbling mud pots. It is the largest hydrothermal area in the park, and a popular destination for park visitors. There is a boardwalk which crosses through the area and gives visitors a closer view of the many interesting features.</p>
<p>This recording was made on the boardwalk beside a vigorously boiling, highly acidic pool. Nearby fumaroles can be heard roaring as they emit plumes of steam and sulfurous gases. I captured this recording on a chilly morning at sunrise before any other visitors had arrived.</p>',24030,600,NULL,NULL,24052);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23592,'Cicadas','cicadas','publish','-22.111271','-42.973659','Brazil','São José do Vale do Rio Preto','2021-09-29','2022-09-22',23658,23657,NULL,NULL,NULL,'<p>In the spring, at sunset time, cicadas begin to sing, after having spent a long time underground.<br />
In this habitat we can also find red-rumped cacique, toucans, rails, night jars, common potoos, vultures, hawks, seriemas, owls, among other bird species.<br />
We can also listen a variety of insects, like mosquitoes, stilts, crickets, grasshopper, bees, hornets and wasps.</p>',23593,532,NULL,NULL,22719);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23551,'Soft rain unfolding on hilltop','soft-rain-unfolding-on-hilltop','publish','-20.93213','-42.536533','Brazil','Minas Gerais','2017-01-16','2022-09-19',23659,23657,NULL,NULL,NULL,'<p>On a quiet and slightly cloudy afternoon, we made our way up to one of the hills in the reserve, 900m of altitude.<br />
Some rain came slowly, revealing the sparse vegetation of this particular area in contrast to dense forested area seen from the top.</p>',23552,1315,NULL,NULL,22719);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23532,'Wideawakes','wideawakes','publish','-3.716156','55.203749','Seychelles','Bird Island','2018-09-17','2022-09-16',23660,NULL,NULL,361,360,'<p>The ‘quiet’ edge of a colony of more than 1 million Sooty (‘Wideawake’) Terns on Bird Island, Seychelles. Young birds are begging, adults are squabbling, coming & going with food. The main colony and the constant surf can be heard in the distance</p>',23533,862,NULL,NULL,22663);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23488,'Red deer rut echoing in the valley','red-deer-rut-echoing-in-the-valley','publish','38.1894118','-7.5963696','Portugal','Alentejo','2022-09-04','2022-09-07',23659,23662,NULL,NULL,NULL,'<p>The impressive roar of the red deer – cervus elaphus hispanicus. It fills the valley and it can easily be heard from a few kilometres distance with the right conditions.<br />
In the Iberian Peninsula these are slight smaller than the ones you’ll find once you cross over the Pyrenees towards France. It is a phenomenon observed in other animals such as the wolf.<br />
The male red deer in Portugal, which is predominant in this segment, can be over 120cm tall and weight around 160kg. Despite their massive bodies, they preferred to stay away from me, even though I’ve done my best not to interfere with their behaviour. </p>
<p>The rutting season started about two weeks before this recording was taken as the sun was setting. They called all night long with an imperfect pause from around 10pm to midnight. The roar serves two purposes: to attract the females and to keep other males away. During the afternoon, I’ve seen what it could have been a confrontation between two males and that consisted of staring mutually until one of them perhaps understood that it needed to abandon the territory they were in, so the winner could follow the female on top of the hill.<br />
They are not the only mammals here: we can hear too the white-tailed deer (three barks between 32 and 37 seconds) and the wild boars are quite restless too.</p>
<p>The red deer in Portugal is one of the animals that is present in Christian mythology not in a good way – there are two separate but similar myths in which the devil reincarnated in the body of a stag, to lure and attempt to push down a cliff one “noble warrior” and a king, in separate occasions and regions. Don’t worry: they were both saved by Christian figures.<br />
I wonder if the origin of the myth it has to do with the antlers or their call which can sound very terrifying. Perhaps both.</p>',23489,595,NULL,NULL,25882);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23482,'Atlantic Puffin Colony','atlantic-puffin-colony','publish','50.656111','-5.273166','Wales','Skokholm Island','2016-05-14','2022-09-07',23660,23663,380,366,360,'<p>A calm May evening in a rocky bay on the island of Skokholm. Atlantic Puffins take off and land, they call and wheel with rapid wing beats over the headland.</p>',23483,334,NULL,NULL,22782);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23469,'Catamount Morning','catamount-morning','publish','38.91592','-105.08616','USA','Pikes Peak Region, Rocky Mountains',NULL,'2022-09-06',23665,NULL,381,366,376,'<p>In the Rocky Mountains, nestled in the Pikes Peak Region at just over 9000ft (2750 meters), there is a series of reservoirs. Just above them, many streams provide to the bodies of water with the mountain’s snow melt that are a haven for much wildlife. This region hosts a large variety of birdlife including hummingbirds, waterfowl, and turkey vultures. The unique high-elevation ecosystem also allows peewees and jays to call the reservoir home. Other wildlife that have been spotted are black bears, deer, foxes, bobcats, and even mountain lions. There’s also been scattered folklore of elusive “Bigfoot” sightings.<br />
Just a few miles away, resides the Colorado Wolf and Wildlife Center, dedicated to the rescue of and education about wolves and wolf-hybrids also providing a home to Mexican Grey Wolves and Swift Foxes.<br />
On Colorado conservation, in February 2022, Proposition 114 removed Gray wolves from the endangered species list. It also required Colorado Parks and Wildlife to create a plan to reintroduce Gray wolves in this state by the end of 2023. The proposal is asking for a minimum of 150 packs to be introduced on public land over four consecutive years.</p>',23471,669,NULL,NULL,22640);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23467,'Spring morning at desert oasis','spring-morning-at-desert-oasis','publish','37.07394','-116.6965','USA','Nevada',NULL,'2022-09-06',23667,NULL,383,366,360,'<p>A lively spring morning at a desert oasis in southern Nevada. Here artificial ponds create a vital habitat for resident and migrating birds and other wildlife. This is the headwaters of the Amargosa River, a unique river system that is mostly underground. It also lies at the ecotone between the Great Basin Desert and the Mojave Desert.<br />
Vocalizers in the recording include Yellow-headed Blackbirds, Common Yellowthroat, White-faced Ibis, Least Bittern, Great Blue Heron, Say’s Phoebe, Great-tailed Grackle, Burro, American Coot, Red-winged Blackbird, Mourning Dove, Eurasian Collared-dove, Spotted Sandpiper, and Wilson’s Warbler.</p>',23468,599,NULL,NULL,22757);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23120,'Cows Choir Around a Pond in the Desert','cows-choir-around-a-pond-in-the-desert','publish','31.661166','-111.165792','USA','Arivaca',NULL,'2022-08-24',23669,23668,383,362,374,'<p>Cattle is drinking and swimming under hot temperatures in the desert of Arizona.</p>',23116,855,NULL,NULL,25219);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23119,'Rain in a Field of Banana Trees','rain-in-a-field-of-banana-trees','publish','20.162712','-96.860567','Mexico','Vercruz',NULL,'2022-08-24',23669,23670,379,366,372,'<p>Textural and immersive recording of several raindrops on these plants.</p>',23115,600,NULL,NULL,25208);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23118,'Waves in the Sea in the Gulf of Mexico','waves-in-the-sea-in-the-gulf-of-mexico','publish','-3.655211','-64.938757','Mexico','Vercruz',NULL,'2022-08-24',23669,23671,380,366,376,'<p>At 5m into the sea, close recording of the waves. Recorded on the beach of Casitas in the state of Veracruz.</p>',23114,601,NULL,NULL,25224);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23117,'Zogzog Monkey Vocalisation','zogzog-monkey-vocalisation','publish','-22.392431','44.553263','Brazil','Tefé',NULL,'2022-08-24',23669,23672,378,368,374,'<p>In the surroundings of the small village of Tauary (close to Tefé, Amazonas) some zogzog monkey are yelling in the trees</p>',23113,241,NULL,NULL,25227);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23112,'Toads singing Rythmically','toads-singing-rythmically','publish','-22.392431','-44.553263','Brazil','Serrinha do Alambri','2019-06-06','2022-08-24',23669,23672,378,365,369,'<p>Close to a pound at night, in the small village of Serrinha do Alambri, some toads and frogs are singing with nice rythmic patterns.</p>',23105,251,NULL,NULL,25231);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23111,'Squeaky Tree','squeaky-tree','publish','-54.04456','-68.57277','Argentina','Tierra del Fuego','2007-06-06','2022-08-24',23669,23672,381,363,373,'<p>Tree creaking up and down, light wind and birds in the forest.</p>',23103,293,NULL,NULL,24114);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23110,'Yellow-rumped Cacique singing in the Amazonian Rainforest','yellow-rumped-cacique-singing-in-the-amazonian-rainforest','publish','-3.63167','-64.94944','Brazil','Tefé',NULL,'2022-08-24',23669,23673,378,362,360,'<p>In the immense state of Amazonas, north Brazil, the eye-catching yellow-rumped cacique (Cacicus cela) is a passerine bird with a curious and very attractive song song.</p>',23102,266,NULL,NULL,24113);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23109,'Dawn in the Amazonian Rainforest','dawn-in-the-amazonian-rainforest','publish','-3.63833','-64.94833','Brazil','Tefé',NULL,'2022-08-24',23669,23673,378,362,360,'<p>Birds and toucans in the Amazonian Rainforest at dawn, near a small river.</p>',23101,600,NULL,NULL,24112);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23108,'Woodpecker in the Amazon Rainforest','woodpecker-in-the-amazon-rainforest','publish','-3.63889','-64.94972','Brazil','Tefé',NULL,'2022-08-24',23669,23673,378,366,360,'<p>A small woodpecker provoking a large sound in the morning in the tropical rainforest, amidst cicadas and other typical bird species.</p>',23100,442,NULL,NULL,24111);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23107,'Wetland at night with birds, frogs and crickets.','wetland-at-night-with-birds-frogs-and-crickets','publish','19.78221','-87.68429','Mexico','Sian Ka''an Biosphere Reserve','2015-10-27','2022-08-24',23669,23674,382,366,371,'<p>The Sian Ka´an Biosphere Reserve, World Heritage of Mankind by UNESCO, is a very rich system with underground rivers interconnected with the cenotes and home to endangered species. In this recoding we hear a soothing nocturnal songs of birds, frogs and crickets.</p>',23099,301,NULL,NULL,24110);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23106,'Chachalacas at dawn in the forest after the rain','chachalacas-at-dawn-in-the-forest-after-the-rain','publish','19.81904','-87.65614','Mexico','Sian Ka''an Biosphere Reserve','2015-10-27','2022-08-24',23669,23674,379,362,360,'<p>The Sian Ka´an Biosphere Reserve, World Heritage of Mankind by UNESCO, is a very rich system with underground rivers interconnected with the cenotes and home to endangered species. In this recoding we hear the Chachalas birds screaming at dawn in the forest.</p>',23098,301,NULL,NULL,24108);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (23093,'Sunrise at Tupra','sunrise-at-tupra','publish','-34.214084','144.160601','Australia','New South Wales','2020-12-04','2022-08-23',23676,23675,379,361,360,'<p>Recorded in early summer amongst remant River Red Gum forests and woodlands of the riverine plains of south-western New South Wales, Australia, on the lower Lachlan River/ Galari near Oxley, birds in this dawn chorus include a repetitive Little Friarbird, Reed Warblers, and a range of woodland birds including a Willie Wagtail, Thornbills, White Plumed Honeyeater, Australian Magpie, Magpie Lark, Peaceful Dove, Grey Shrike Thrush, along with various parrots, Black Ducks and a Whistling Kite. This site is only a few kilometres from the wetlands of the Great Cumbung Swamp, the junction of the Murrumbidgee and Lachlan Rivers.</p>',23094,1440,NULL,NULL,22589);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22967,'Dawn Unfolding from Secret Spot','dawn-unfolding-in-hiding-spot','publish','38.2747442','-7.5490977','Portugal','Alentejo','2021-06-16','2022-08-12',23659,23662,381,366,360,'<p>A hiding spot below the ground floor, surrounded by trees in bloom, mysterious treks and a lake on the other side. This is the surrounding dawn chorus unfolding and revealing the acoustics through the calls of the heron, the carrion crow, the nightingale and many others.</p>',22968,4291,NULL,NULL,22644);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22957,'Autumn Wind','autumn-wind','publish','38.96124','-9.268976','Portugal','Mafra','2022-10-10','2022-08-11',23659,23661,381,366,373,'<p>In a very warm Autumn season, the mix of foliage from the various trees is felt in a slightly windy night.</p>',22958,1862,NULL,NULL,22767);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22953,'Wolves and Owls','wolves-and-owls','publish','38.9612285','-9.270269','Portugal','Mafra','2020-10-07','2022-08-11',23659,23661,381,366,374,'<p>In a beautiful corridor of the forest in the autumn we can hear about 10 Iberian Wolves howling around as well as the Tawny and Eurasian Eagle-owl calls in the early night.</p>',22954,654,NULL,NULL,22786);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22948,'Soft Morning with Water and Birdsong','soft-morning-with-water-and-birdsong','publish','39.94153','20.948096','Greece','Pindus National Park',NULL,'2022-08-10',23678,23677,381,366,376,'<p>It is early summer at the majestic North Greece mountains. Wild forested valley under high, vertical peaks. Sounds of birds chirping, soft water stream ending with blowing wind over the mountain peaks. A very peaceful and calming place.</p>',22938,526,NULL,NULL,22768);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22947,'Hutovo Blato Wetlands','hutovo-blato-wetlands','publish','43.0889','17.7841','Montenegro','Lake Skadar',NULL,'2022-08-10',23678,23679,382,361,360,'<p>Early morning sounds in vast and wild East European, Balkan wetlands valley. The ambiance of tropical like-sounding birds and frogs.</p>',22939,1435,NULL,NULL,22777);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22946,'Late Afternoon in the Jungle','late-afternoon-in-the-jungle','publish','0.665','-75.06865','Colombia','Caquetá','2021-12-17','2022-08-10',23678,23680,378,368,NULL,'<p>In the depths of the Colombian Amazon Rainforest, there is still untamed and rich habitat remaining that hosts many. still undiscovered, animal and plant species.</p>',22936,3600,NULL,NULL,22697);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22945,'Early Morning in the Jungle','early-morning-in-the-jungle','publish','0.665','-75.06864','Colombia','Caquetá',NULL,'2022-08-10',23678,23680,378,362,360,'<p>In the depths of the Colombian Amazon Rainforest, there is still untamed and rich habitat remaining that hosts many. still undiscovered, animal and plant species.</p>',22935,3600,NULL,NULL,22800);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22944,'Jungle Pond','jungle-pond','publish','0.665','-75.0686','Colombia','Caquetá',NULL,'2022-08-10',23678,23680,378,366,360,'<p>In the depths of the Colombian Amazon Rainforest, there is still untamed and rich habitat remaining that hosts many. still undiscovered, animal and plant species.</p>',23141,2021,NULL,NULL,22804);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22930,'Night Song in the Atlantic Forest','night-song-in-the-atlantic-forest','publish','-20.926085','-42.542898','Brazil','Rosário da Limeira, Minas Gerais','2017-01-04','2022-08-10',23659,23657,379,365,371,'<p>A beautiful and soothing night song right in the middle of the Atlantic Forest in a protected area.</p>',22931,600,NULL,NULL,22792);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22890,'Tide Coming in on a Rocky Shore','tide-coming-in-on-a-rocky-shore','publish','56.51719','-6.779063','Scotland','Tiree','2018-09-02','2022-08-08',23682,23681,380,366,375,'<p>It’s an autumn evening and the tide is coming in at a small shore in Scaranish. The energy of the waves as they hit the shoreline and its rocks makes for a dynamic soundscape with swirling, sloppy splashes and splats, sizzles, and lower rumbles.</p>',22891,520,NULL,NULL,22782);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22885,'Corncrakes at 1am','corncrakes-at-1am','publish','56.520343','-6.912765','Scotland','Cornaigmore, Tiree','2021-06-19','2022-08-08',23682,23681,384,366,360,'<p>Corncrakes migrate from Africa to Tiree every spring to breed, leaving again in September. They used to be a common visitor to British farmland pastures – arriving every year in their tens of thousands. Industrial farming methods have however devastated populations and they can now only be heard (they are very elusive are rarely seen) in a few remaining strongholds, including the north and western edges of Scotland. Conservation work is underway by RSPB Scotland and others to protect remaining populations. Numbers of breeding pairs are estimated by counting the calling males in June (peak calling season). They call almost incessantly between midnight and 3am to let females know they are about, and to defend their territory from other males.</p>',22888,328,NULL,NULL,22631);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22882,'Pyrenean Woods in a Thundery Rainstorm','pyrenean-woods-in-a-thundery-rainstorm','publish','42.79128','1.332114','France','Pyrenees','2019-09-18','2022-08-08',23682,23675,381,363,377,'<p>A rainstorm recorded from under a canopy of trees. Gentle splats fall on the leaves and woodland floor, foregrounded against a backdrop of watery white noise and the constant rumble of thunder echoing around the surrounding mountains.</p>',22883,622,NULL,NULL,22577);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22866,'Forest Rain with Tiny Owl Hooting','forest-rain-with-tiny-owl-hooting','publish','43.370171','18.694877','Bosnia','Sutjeska National Park',NULL,'2022-08-03',23678,23683,381,365,372,'<p>Vast forest valley in springtime at the wild Balkan mountains. Evening ambience of a hooting owl. One of the last primeval forests in Europe or also called Europe’s last jungle.</p>',22867,2412,NULL,NULL,24068);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22862,'Melting Snow in the Forest','melting-snow-in-the-forest','publish','45.613363','15.028187','Slovenia','Kočevski Rog',NULL,'2022-08-03',23678,23683,381,366,376,'<p>Enchanted forest with ASMR ambience of melting snow in late winter time. The days are getting longer and warmer, and the forest is changing. </p>',22863,3124,NULL,NULL,23493);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22855,'Cicadas Near the Ocean','cicadas-near-the-ocean','publish','8.493917','-79.942314','Panama','San Carlos',NULL,'2022-08-02',23685,23684,380,366,370,'<p>Listen to birds that are active at night and to multiple insects that start their night shift. All accompanied by the swaying of the waves of the Pacific Ocean in the distance.</p>',24525,357,NULL,NULL,22788);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22848,'Tropical Morning near the Ocean','tropical-morning-near-the-ocean','publish','7.656','-76.588472','Panama','San Carlos',NULL,'2022-08-02',23685,23686,380,368,360,'<p>Listen to birds in the morning, with the wind passing over the trees and the distant waves of the pacific ocean. </p>',22852,417,NULL,NULL,22804);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22845,'Nocturnal Jungle Ambience with Frogs, Crickets and Water','jungle-nocturnal-ambience-with-frogs-crickets-and-water','publish','7.656','-76.588472','Colombia','Chigorodo',NULL,'2022-08-01',23685,23687,378,365,369,'<p>This natural ambience was recorded in Antioquia, Colombia, in an indigenous reservation called Chigorodocito,. A well preserved area in terms of biodiversity, where at night you can listen to different frogs and toads, cicadas, crickets and fireflies.<br />
This area in particular is an important reserve of flora and fauna since in the surroundings of the reserve there has been a lot of tree felling for large banana plantations, which has been gradually destroying the habitat of hundreds of animal species. </p>',22846,631,NULL,NULL,22793);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22733,'Thunderstorm and high winds','thunderstorm-and-high-winds','publish','6.849071','39.835707','Ethiopia','Sanetti plateau',NULL,'2022-07-26',23689,23688,387,363,377,'<p>The soundscape is pretty sparse at 4000m/13000 feet elevation on the Sanetti plateau, sometimes called the Roof of Africa. At a first glance this is a barren, lifeless place where thunderstorms arrive without notice and gale-force wind pelts everything with icy gusts. This unique alpine heathland and moorland habitat harbours plenty of wildlife. There are millions of small rodents living in the mossy humid soil. They feed on grasses and seeds, and they form a basis for a complex and entangled ecosystem. Most predators living in this unforgiving landscape feed on the rodents. The Augur buzzard, pictured here white morph, is a talented raptor that takes full advantage of the abundant prey. Eagle owls do the same, along with a myriad other birds of prey and mammals.</p>',22561,3648,NULL,NULL,21820);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22732,'The weird and fascinating sound of empress cicadas','the-weird-and-fascinating-sound-of-empress-cicadas','publish','5.848402','117.938852','Borneo','Sabah''s rainforests',NULL,'2022-07-26',23689,23690,378,365,370,'<p>The Empress cicada starts calling as the sun sets, just as daytime birds are winding down their calls and nighttime creatures are waking up. You first hear distant ones, and it almost sounds like some industrial metal cutting process. As other individuals start calling, you realise you’re surrounded by these harsh, electronic sounds that become progressively louder until the soundscape is almost deafening. It’s a painfully intense chorus that at this stage does not sound natural anymore, but is still weirdly enjoyable. All this usually lasts for 30 to 60 minutes, and then other cicadas, katydids and crickets take over the soundscape. Tree hole frogs soon join the insects as well. These are interesting and exciting in their own right, but hearing them after the Empress cicada almost makes them seem bland.</p>',22560,3600,NULL,NULL,24111);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22731,'Serengeti sounds - Lions and hippos calling','serengeti-sounds-lions-and-hippos-calling','publish','-2.17675','34.897888','Tanzania','Mau-Mara-Serengeti',NULL,'2022-07-26',23689,23690,384,364,374,'<p>Night falls in the Serengeti-Mara savanna. The deep calls of lions resonate through the plains while a hippo lazily moves in the water hole nearby. A thick insect chorus creates a constant background while distant Eagle and Scops owls can be heard occasionally. This is the typical sound of the African savanna at night. Oh, and of course you can also hear the hippos pooping. Besides lions, hippos, antelope and other big game, the African savanna is also home to roving gangs of baboons.This part of Africa is incredibly beautiful, biodiverse and complex. It’s the most well-known animal sanctuary in the world, and is probably home to the most dense populations of big wildlife on Earth. The Mara river is the lifeblood of the plains, snaking along Masai Mara and Serengeti national parks.</p>',22559,3600,NULL,NULL,22580);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22730,'Pure Sound of Rain in the Forest','pure-sound-of-rain-in-the-forest','publish','50.934663','-0.724448','England','Chichester',NULL,'2022-07-26',23689,23691,384,366,372,'<p>What does rain sound like? It’s a myriad individual raindrops hitting a variety of surfaces. They might also interact with one another, forming larger raindrops that sound heavier. The environment will also affect the perceived sound – rain falling on soft leaves will sound completely different to rain falling on a coniferous forest floor. The acoustics of the environment will affect how much echo and reverb reaches the listener (or the microphones). This will also affect how open and bright or dark and claustrophobic the soundscape will be.</p>',22558,3600,NULL,NULL,24371);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22729,'Italian Countryside','italian-countryside','publish','43.451882','11.016236','Italy','Tuscany',NULL,'2022-07-26',23689,23675,384,361,360,'<p>In many places of the Italian countryside one can find pockets of nature and beautiful soundscapes. Compared to other parts of Europe, the agriculture in these regions seems more careful and environmentally sound. Vineyards and olive tree groves are interspersed with wildflower meadows and little pockets of woodland. Organic wineries abound, and modern elements like mechanised agriculture contrast heavily with old approaches like the use of natural fertilisers or terraced vineyards. Land is not fenced so animals can move around freely, and countryside roads are one-lane affairs that call for low speed travel even if in a vehicle. While there is a fair bit of man-made sound permeating everywhere, biodiversity levels seem great and the number of species heard is surprisingly high.</p>',22557,3600,NULL,NULL,22570);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22728,'Epic thunderstorm','epic-thunderstorm','publish','-25.744226','28.965255','South Africa','Johannesburg','2016-11-15','2022-07-26',23689,23675,384,363,377,'<p>Thunderstorm over Johannesburg, South Africa. One of the best (and loudest) thunderstorms I’ve ever experienced.</p>',22556,3600,NULL,NULL,22577);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22727,'Chromatic Rain in the Namib Desert','chromatic-rain-in-the-namib-desert','publish','-24.72786','15.470577','Namibia','Dead Vlei',NULL,'2022-07-26',23689,23692,383,367,372,'<p>Rain in the Namib desert is incredibly rare and sounds fascinating. Sometimes it evaporates even before it reaches the ground due to the scorching heat and lack of humidity. It isn’t unheard of though, and I was fortunate enough to capture it. The trees here have been dead for hundreds of years, and since there is almost zero humidity, there aren’t any bacteria or other microorganisms to help them decompose. As a result they’re bone dry and very tense, just waiting to be played like a musical instrument.</p>',22555,3600,NULL,NULL,22965);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22726,'Bats in the Cenote','bats-in-the-cenote','publish','20.664317','-88.541542','Mexico','Yucatán',NULL,'2022-07-26',23689,23675,379,366,386,'<p>Listen to bats fly, their leathery wings flapping fast as they hunt mosquitoes and other insects. Occasionally there will be audible squeals and even a quick scuffle. Bat flight is punctuated by the occasional drop in the clear water. In the background, soft but very tonal wind blows continuously. All of this is brought together by the complex acoustics of the cave, with beautiful but claustrophobic echoes. Caves are lively places full of interesting sounds. The soundscapes might not be too biodiverse or lush but they’re fascinating in a different way.</p>',22554,3600,NULL,NULL,22579);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22725,'An Active Volcano','an-active-volcano','publish','13.60689','40.661694','Ethiopia','Erta Ale',NULL,'2022-07-26',23689,23688,388,362,NULL,'<p>Boiling lava, gases escaping, mini earthquakes and lava bombs create a surreal soundscape inside the volcanic caldera at Erta Ale in Northern Ethiopia. I’m sitting on the edge of the crater, trying to avoid stepping over big cracks and on to overhangs that might drop into the 600m/2000 feet chasm below. At the bottom there is a lava lake that occasionally spews volcanic bombs and boiling rock. The magma can barely be seen through the thick volcanic gases though. The mixture of smoke, dust, sulphur, chlorine, brine steam, silica particles, poisonous gases and many other compounds is thick and suffocating. Reaching what’s known locally as “the gateway to Hell” isn’t for the faint of heart though. This is considered the hottest place on Earth for year-round temperatures. The trip through Amhara, Tigray and Afar regions takes several days. We travel through barren landscapes, acidic deserts below sea level, thick salt plates that support the weight of vehicles and endless lava fields.</p>',22562,3600,NULL,NULL,22964);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22550,'Call of the Owl','call-of-the-owl','publish','-2.256199','38.321273','Kenya','Kanderi Swamps, Tsavo East National Park',NULL,'2022-07-26',23689,23693,384,366,360,'<p>An owl calling from an acacia tree in the East African savannah. This Verreaux’s eagle owl advertised his territory from the exact tree that I set up my overnight sound recording rig in. I was hoping to record the gentle insect chorus and distant bird calls, and the owl calls were a beautiful surprise I discovered when I checked the sound recordings afterward.</p>
<p>The low-frequency grunts act as a sort of underlying rhythm to the otherwise calm and peaceful soundscape. You can hear another eagle owl in the distance at times, and on top of that there is s Scops owl calling occasionally. Crickets and other insects complement this beautifully wild ambience. </p>',22563,3600,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22547,'Thrush Nightingale Song','thrush-nightingale-song','publish','58.421056','26','Estonia','Alam-Pedja Nature Reserve','2021-05-13','2022-07-26',23695,23694,381,361,360,'<p>The small village Palupõhja is located in the middle of the Alam-Pedja nature reserve. The river Emajõgi flows on the south side of the Palupõhja village. On the banks of the river a Willow and a Bird Cherry and other trees and bushes grow and nightingales like to sing there. Birds can be heard in the background: Common chiffchaff, Great spotted woodpecker, Common blackbird, Garden warbler, Cuckoo and others. </p>',22549,3600,NULL,NULL,22210);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22546,'Cape York Wetland at Night','cape-york-wetland-at-night','publish','-15.186764156945882','144.39336606303257','Australia','Lakefield National Park',NULL,'2022-07-26',23697,23696,382,366,371,'<p>This recording was captured around midnight on a small tropical wetland on Cape York Peninsula, Australia. Crickets trill from the grassy edges of the swamp and Magpie-Goose honk occasionally from their roosts as they stir during the night. </p>',22531,4711,NULL,NULL,25861);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22544,'Outback Dawn','outback-daw','publish','-30.760241951361596','143.4662851267272','Australia','Paroo Darling National Park',NULL,'2022-07-26',23697,23699,384,361,360,'<p>In the arid outback of Australia, the dawn chorus is often vibrant and diverse. Despite the hostile environment many species thrive. Birds are particularly active early in the day before the heat becomes oppressive and this recording captures the hour after dawn with many birds singing and moving about.</p>',22530,4463,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22512,'Pine Forest','pine-forest','publish','60.29208255836944','14.839099110157296','Sweden','Kullen',NULL,'2022-07-19',23697,23700,381,366,360,'<p>The sounds of a pine forest in spring in Dalarna county, Sweden. A variety of bird species sing including Common Chaffinch, Tree Pipit, Great Spotted Woodpecker & Common Wood Pigeon. </p>',22521,3607,NULL,NULL,21873);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22511,'Lowland Rainforest Morning','lowland-rainforest-morning','publish','1.606548762217808','110.1714695939218','Borneo','Matang Ranges, Sarawak',NULL,'2022-07-19',23697,23703,378,368,370,'<p>A morning recording from the steamy lowland forests of Sarawak, Borneo. Typical of Borneo’s day soundscape, the air is filled with the loud rhythms of various cicada species. Bird species heard in the recording include Rufous-crowned Babbler & White-rumped Shama.</p>',22520,3743,NULL,NULL,22204);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22509,'Mountain Valley','mountain-valley','publish','62.8837473236402','12.710768860301952','Sweden','Nyvallen',NULL,'2022-07-19',23697,23700,387,366,360,'<p>Recorded near the treeline high in a montane valley, this soundscape features spring birdsong along with the sounds of a mountain river rushing in the background. </p>',22518,4108,NULL,NULL,22693);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22508,'Pinsapo Forest Dawn','pinsapo-forest-dawn','publish','36.667327127164555','-5.038332611779187','Spain','Parque Nacional Sierra de las Nieves',NULL,'2022-07-19',23697,NULL,387,361,360,'<p>Dawn chorus from a rare pinsapo (Spanish fir) forest in the mountains of Andalucia. Starting softly at first light, the song of a Eurasian Robin is the first to herald the new day. As the day brightens the songs of many other species fill the air. In the background the soft tinkling of bells can be heard from goats on a distant hillside. </p>',22517,4077,NULL,NULL,22022);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22506,'Old Growth Forest','old-growth-forest','publish','-41.422099430147135','145.964438777757','Tasmania','Leven River Valley',NULL,'2022-07-19',23697,23705,379,366,360,'<p>Late afternoon in an old-growth forest in Tasmania. A breeze blows through the canopy of the giant trees above and the sounds of a variety of Tasmania;s endemic bird species can be heard including Green Rosella, Tasmanian Scrubwren, Scrubtit & Black Currawong.</p>',22516,3656,NULL,NULL,25873);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22505,'Lowland Rainforest at Night','lowland-rainforest-at-night','publish','4.774644452990462','116.86435281565869','Borneo','Maliau Basin',NULL,'2022-07-19',23697,NULL,378,365,360,'<p>Night in a remote lowland rainforest in Sabah, Borneo, the forest is alive with a rich diversity of katydids and crickets, each species with their own unique rhythm. The soft hoots of a Barred Eagle-Owl can occasionally be heard in the background.</p>',22515,3630,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22503,'Taman Negara at Night','taman-negara-at-night','publish','4.661519962777506','102.11879768262773','Malasya','Taman Negara',NULL,'2022-07-19',23697,23707,378,366,360,'<p>Taman Negara is a large area of protected rainforest on the heart of the Malaysian peninsula and home to an abundance of wildlife including tigers, leopards and elephants. This recording features the sounds of a myriad of insects calling from deep in the forest at night.</p>',22514,3713,NULL,NULL,22629);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22502,'Langtang River','langtang-river','publish','28.1717611920842','85.43736750254912','Nepal','Langtang National Park',NULL,'2022-07-19',23697,23710,387,367,376,'<p>The sounds of the stunning Langtang River carving it’s way through a high Himalayan valley in Nepal. The soft calls of Plumbeous Water Redstart can be heard occasionally, a bird which is at home amongst the torrents and thin mountain air. </p>',22513,3664,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22410,'Estuary Reeds','estuary-reeds','publish','-42.289611','148.007472','Australia','Little Swanport Tasmania',NULL,'2022-07-09',23714,23712,382,366,360,'<p>Recording at dawn amongst the small trees at the edge of the Little Swanport Estuary in mid winter. You can hear black swans, magpies, finches and other birds. The Poredareme clan of the Oyster Bay Nation traditionally lived on this country before being displaced in the mid 19th century by European settlement. Since colonialisation, much of the original original landscape has been cleared with small pockets remaining and recently there have been attempts to re-vegetate.</p>',22411,738,NULL,NULL,23096);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22402,'Yellow Tailed Black Cockatoos feeding','yellow-tailed-black-cockatoos-feeding','publish','-33.037694','149.421361','Australia','Hill End, New South Wales',NULL,'2022-07-09',23714,23716,381,366,360,'<p>This is a recording of a group of around 50 Yellow Tailed Black Cockatoos feeding on pine cones on the edge of the town of Hill End in western New South Wales, Australia in late spring. There are other birds present including rainbow lorikeets, galahs, magpies, pied currawongs and others. The region was originally occupied by the Bularidee people of the Wiradjuri group for thousands of years before being displaced by European settlement at the beginning of the 19th century. The location of this recording is reflective of the schism between the original and the introduced landscape. This pine tree (an introduced species) sits adjacent to the box gum woodland native to the area. The cockatoos traditionally feed on native banksias and hakeas but since the introduction of pine trees, have incorporated the pine kernels into their diet.</p>',22403,805,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22361,'Summer Dusk Chorus','summer-dusk-chorus','publish','40.766917','-7.007417','Portugal','Vale do Côa','2022-05-31','2022-07-07',23659,23718,384,366,360,'<p>Between farms and a re-wilded area, between bushes and stones, much of what characterizes the visual landscape here, we listen to home to many birds typically found in Portugal: the Eurasian Blackbird, the Golden Oriole, the Cuckoo and the Nightingale whose notes you can hear bouncing back in the distance. Despite the summer feeling, the strange wind character, once a while picking up, can tells us another story about this place…</p>',22362,547,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22357,'Stream in the Summer Mediterranean Forest','stream-in-the-summer-mediterranean-forest','publish','40.2239043','-7.0310187','Portugal','Serra da Malcata','2022-06-30','2022-07-07',23659,23718,381,368,376,'<p>Just by the Bazágueda River, a shallow and light reflecting stream, surrounded by Mediterranean forest in a sunny afternoon, made fresh by the trees, some with trunks peeling, causing sounds like a door, moving and smoothly colliding. All was quiet but there was a certainty of being watched.<br />
There were butterflies and metallic blue dragonflies dancing in pairs over the clear water and so relaxing one could easily sleep leaning against a big tree trunk, sitting on a sturdy root.</p>',22358,501,NULL,NULL,22211);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22341,'Jungle in Chigorodocito, Antioquia','jungle-in-chigorodocito-antioquia','publish','7.656','-76.588472','Colombia','Chigorodocito Reserve',NULL,'2022-06-29',23685,23719,378,365,371,'<p>A well preserved area in terms of biodiversity where at night you can listen to different frogs and toads, cicadas, crickets and fireflies.<br />
This area in particular is an important reserve of flora and fauna since in the surroundings of the reserve there has been a lot of tree felling for large banana plantations, which has been gradually destroying the habitat of hundreds of animal species. </p>',22342,739,NULL,NULL,22208);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22333,'Soundscape with The European Pied Flycatcher And Cuckoos','soundscape-with-the-european-pied-flycatcher-and-cuckoos','publish','58.43175','26.24114','Estonia','Alam-Pedja Nature Reserve','2022-05-30','2022-06-27',23695,23721,384,361,360,'<p>The aim of the Alam-Pedja Nature Reserve is the natural diversity of ecosystems in a large area ensuring, as far as possible, the natural development of protected forests and bogs. In the recording clearly distinguishable are European Pied Flycatcher, Cuckoo, Wood warbler. In the deep background and more careful listening Wren, Blackbird, Garden warbler, Crane, Chaffinch, Chiffchaff, Wood pigeon and others are heard. Wet forest next to the bog recorded May 30, 2022. Recording starts at 5.30 in the morning.</p>',22334,1800,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22332,'Into the Old-growth Forest','into-the-old-growth-forest','publish','63.660659','20.224763','Sweden','Umeå','2022-04-08','2022-06-27',23722,23700,381,366,360,'<p>A long, cold and snowy winter is finally coming to an end. Just after dawn during a nocturnal unattended sound recording in an old forest. Black grouse is on the leks, and the voices of overflying Whooper swans can be heard. Chaffinches are migrating, and the local Willow tits have begun singing. Black and Great Spotted woodpeckers are drumming, but Ravens steal the show acoustically. It feels good to be alive.</p>',22260,370,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22291,'Seal Vocalization in Mingulay','seal-vocalization-in-mingulay','publish','56.8097394','-7.6219707','Scotland','Mingulay, Outer Hebrides','2021-09-16','2022-06-16',23724,23723,380,363,386,'<p>An underwater recording that captures some of the wide vocal repertoire of seals. It was recorded whilst at anchor off the sheltered east coast of Mingulay, one of the most southerly islands of the Outer Hebrides, Scotland. This location is uninhabited by humans, but was home to a large grey seal population late September during their breeding season. It was made during an expedition trip with the Hebridean Whale and Dolphin Trust. </p>',22290,281,NULL,NULL,21862);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22281,'Early Summer Pollinators and Birds','early-summer-pollinators-and-birds','publish','38.2751456','-7.5431818','Portugal','Alentejo','2022-04-29','2022-06-10',23659,23718,384,361,360,'<p>The first days of high heat bring many insects and thousands of pollinators around millions of colorful flowers, next to the calm lake.</p>',22277,317,NULL,NULL,21860);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22280,'Lake in the Meadows','lake-in-the-meadows','publish','38.284915','-7.570163','Portugal','Alentejo','2021-05-29','2022-06-10',23659,23718,384,366,360,'<p>Between the hills, the Grey Heron calls, among the Golden Oriole, Quail and thousands of insects. A very warm morning Spring.</p>',22275,372,NULL,NULL,22202);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22279,'Nightingale Over the Lake','nightingale-over-the-lake','publish','38.284915','-7.570163','Portugal','Alentejo','2021-05-06','2022-06-10',23659,23718,382,367,360,'<p>The common nightingale sings beautifully over the artificial lake, between hills creating this shimmering and magic acoustic effect. We hear mallards crossing the landscape and some fish jumping in the water.</p>',22276,378,NULL,NULL,21829);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22272,'Forest dawn with cracking wood','forest-dawn-with-cracking-wood','publish','63.944325','20.376752','Sweden','Bäcksjön','2018-03-23','2022-06-10',23722,23700,381,365,360,'<p>Overnight recording in pursuit of Ural Owl which I had heard calling at the site one week earlier. Not so this calm but cold (-15C) night. My eleven hour long session produced calls from distant Boreal Owl and Red Fox. Tree stems cracked throughout the night in the low temperatures. The most interesting session acoustically, occurred during dawn when Great and Willow Tit began singing. Drumming woodpeckers and Ravens were present, and one can hear the fluttering wings of a Hazel Grouse flying by</p>',22262,515,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22266,'Siberian Soundscape','siberian-soundscape','publish','60.734642','89.787405','Russia','Yenisei River bank','2017-06-01','2022-06-07',23722,23725,381,361,360,'<p>Nocturnal bird sounds from the western bank of the Yenisei river at the small village of Mirnoye, Central Siberia. This is one of the most undisturbed areas in the Eurasian boreal region when it comes to forest harvesting and other human intrusions in the forest ecosystem, however with heavy ship traffic on the Yenisei River.</p>',22265,519,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22222,'NAGANO - OTANOMO','nagano-otanomo','publish','36.710915','138.49489','Japan','Shiga Nature Education Park, Shiga Heights',NULL,'2022-05-18',27153,NULL,NULL,NULL,NULL,'<p>24 hour live stream since 2011. Part of the cluster of microphones set up and maintained by Dr. Kaoru Saito and colleagues as part of the Cyber Forest research project at the University of Tokyo.</p>',NULL,0,1,'https://mp3s.nc.u-tokyo.ac.jp/OTANOMO_CyberForest.mp3',22210);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22158,'Windy mountains in Gornja Gračenica','windy-mountains-in-gornja-gracenica','publish','45.604981','16.755735','Croatia','Gornja Gračenica','2021-12-21','2022-05-14',23727,23726,387,362,373,'<p>In Gornja Gračenica. a land with a few smaller mountains, the wind is very frequent to be heard.</p>',22076,3601,NULL,NULL,24482);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22155,'Storm in Velebit Mountain','storm-in-velebit-mountain','publish','44.529719','15.228981','Croatia','Velebit mountain','2021-12-22','2022-05-14',23727,23726,387,362,377,'<p>Storm in Velebit, the highest mountain in Hrvatska. Beautiful scenery.</p>',24528,3603,NULL,NULL,25357);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22150,'Water Flowing in Creek','relaxing-creeks-in-lika','publish','44.611654','15.094112','Croatia','Lika','2021-12-20','2022-05-14',23727,23726,387,366,376,'<p>In Lika we can hear a relaxing creek flowing.</p>',24528,3603,NULL,NULL,25361);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22149,'Creeks in Zagreb','creeks-in-zagreb','publish','45.925104','16.018262','Croatia','Zagreb','2021-12-13','2022-05-14',23727,23726,381,366,376,'<p>In the afternoon we can hear a wonderful creek with flowing water in Zagreb, with birds singing in the background. A long and peaceful moment.</p>',22067,3617,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22148,'Crackly campfire in the woods of Voloderac','crackly-campifire-in-the-woods-in-voloderac','publish','45.553984','16.700048','Croatia','Voloder',NULL,'2022-05-14',23727,23726,381,366,NULL,'<p>We can hear peaceful crackly campifire sounds in the woods in Voloderac. Recorded on 14th of December 2021 at 4 PM. Wonderful nature ambient.</p>',22066,3607,NULL,NULL,21878);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22145,'Atlantic Ocean in Serra da Bocaina Reserve','atlantic-ocean-in-serra-da-bocaina-reserve','publish','-23.05381','-44.650632','Brazil','Serra da Bocaina Reserve, Trinidade',NULL,'2022-05-14',23685,23719,380,368,375,'<p>These nature sounds were recorded in a small village called Trinidad (Brazil). This is a fisher’s town 4 hours away from Rio de Janeiro, and it is part of the Serra da Bocaina Reserve which in turn is part of the Serra do Mar, one of the biggest natural parks in Brazil which has about 1500 kms of natural mountain chains of the Atlantic Forest. A very well preserved area in terms of biodiversity.<br />
In this audio you can listen to some birds in the morning, a lot of insects and the distant waves of the atlantic ocean, with a little water stream in the back.</p>',22063,3600,NULL,NULL,25879);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22144,'Water stream in Serra da Bocaina','water-stream-in-serra-da-bocaina','publish','-23.016963','-44.6479','Brazil','Serra da Bocaina Reserve, Trinidade',NULL,'2022-05-14',23685,23719,378,368,376,'<p>This soundscape was recorded in a small village called Trinidad (Brazil). This is a fisher’s town 4 hours away from Rio de Janeiro, and it is part of the Serra da Bocaina Reserve which in turn is part of the Serra do Mar, one of the biggest natural parks in Brazil which has about 1500 kms of natural mountain chains of the Atlantic Forest. A very well preserved area in terms of biodiversity.<br />
In this audio you can listen to a water stream with medium intensity and a lot of insects in the background of a calmed night in the middle of the forest.</p>',22062,3600,NULL,NULL,21697);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22143,'Frogs and toads, cicadas, crickets and fireflies by the Atlantic ocean','frogs-and-toads-cicadas-crickets-and-fireflies-by-the-atlantic-ocean','publish','-23.016956','-44.647902','Brazil','Serra da Bocaina Reserve, Trinidade',NULL,'2022-05-14',23685,23719,380,368,375,'<p>This soundscape was recorded in a small village called Trinidad (Brazil). This is a fisher’s town 4 hours away from Rio de Janeiro, and it is part of the Serra da Bocaina Reserve which in turn is part of the Serra do Mar, one of the biggest natural parks in Brazil which have about 1500 km of natural mountain chains of the Atlantic Forest. A very well preserved area in terms of biodiversity.<br />
In this audio, you can listen to different frogs and toads, cicadas, crickets and fireflies with the sound of the Atlantic ocean in the distance and a small river in the back.</p>',22061,3600,NULL,NULL,26447);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22142,'Bonfire and distant crickets at Farallones de Satatausa','bonfire-and-distant-crickets-at-farallones-de-satatausa','publish','5.228953','-73.836216','Colombia','Farallones De Sutatausa',NULL,'2022-05-14',23685,23687,387,367,371,'<p>These nature sounds were recorded in a small village called Sutatausa, two and a half hours away from Bogota. This is a rural area with mountainous formations called Farallones, very rocky and dry.<br />
At night it is very cold, so this is an audio of a campfire, surrounded by various insects and the wind of a moonless night.<br />
Near the place there is a coal mine, which contaminates the water of the few rivers that are born in the mountains. These mining concessions must stop or all the flora and fauna will soon disappear.</p>',22059,3600,NULL,NULL,24481);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22141,'Night at the Wacoyo Indigenous Reserve','night-at-the-wacoyo-indigenous-reserve','publish','4.3781725','-71.98365','Colombia','Resguardos Indígenas de Wacoyo, Meta',NULL,'2022-05-14',23685,23687,378,365,371,'<p>This soundscape was recorded in an indigenous reserve called Wacoyo, in Meta (Colombia). It was recorded after the sunset. You can hear insects from all over the valley.<br />
The reserve has an extension of 8050 hectares, and it is inhabited by 31 communities of approximately 340 families. The climate is dry tropical, and its biome consists of an alluvial savannah.</p>',22060,3600,NULL,NULL,21829);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22140,'River stream in the Wacoyo Indigenous Reserve','river-stream-in-the-wacoyo-indigenous-reserve','publish','4.381961','-71.977199','Colombia','Resguardos Indígenas de Wacoyo, Meta',NULL,'2022-05-14',23685,23687,378,366,376,'<p>This soundscape was recorded in an indigenous reserve called Wacoyo, in Meta (Colombia), right next to the river Meta, so you can hear the water stream along with bird sounds in the background.<br />
The reserve has an extension of 8050 hectares, and it is inhabited by 31 communities of approximately 340 families. The climate is dry tropical, and its biome consists of an alluvial savannah.</p>',22860,3429,NULL,NULL,21837);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22139,'Birds, cicadas and crickets in Wacoyo Indigenous Reserve','birds-cicadas-and-crickets-in-wacoyo-indigenous-reserve','publish','4.378172','-71.98355','Colombia','Resguardos Indígenas de Wacoyo, Meta',NULL,'2022-05-14',23685,23687,378,366,371,'<p>This soundscape was recorded in an indigenous reserve called Wacoyo, in Meta) during the the afternoon. It contains sounds of birds, cicadas, crickets, wind over trees, branches falling and a distant river.<br />
The reserve has an extension of 8050 hectares, and it is inhabited by 31 communities of approximately 340 families. The climate is dry tropical, and its biome consists of an alluvial savannah.</p>',24453,3155,NULL,NULL,21869);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22138,'Dusk in Wacoyo Indigenous Reserve','dusk-in-wacoyo-indigenous-reserve','publish','4.378169','-71.9836','Colombia','Resguardos Indígenas de Wacoyo, Meta',NULL,'2022-05-14',23685,23687,378,366,360,'<p>The sounds of nature in this audio were recorded in an indigenous reserve called Wacoyo, in Meta (Colombia) in the afternoon, and contains sounds of the insects coming out at 6pm (cicadas, crickets and fireflies).<br />
The reserve has an extension of 8050 hectares, and it is inhabited by 31 communities of approximately 340 families. The climate is dry tropical, and its biome consists of an alluvial savannah.</p>',22056,3600,NULL,NULL,21842);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22137,'Birds, wind and distant river stream in Wacoyo Indigenous Reserve','birds-wind-and-distant-river-stream-in-wacoyo-indigenous-reserve','publish','4.378169','-71.98355','Colombia','Resguardos Indígenas de Wacoyo, Meta',NULL,'2022-05-14',23685,23687,378,366,376,'<p>These nature sounds were recorded in an indigenous reserve called Wacoyo, in Meta (Colombia) in the afternoon, and contains sounds of birds, cicadas, crickets, wind over trees, branches falling and a distant river.<br />
The reserve has an extension of 8050 hectares, and it is inhabited by 31 communities of approximately 340 families. The climate is dry tropical, and its biome consists of an alluvial savannah.</p>',22055,3600,NULL,NULL,21841);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22136,'Waves sounds at night in San Carlos','waves-sounds-at-night-in-san-carlos','publish','8.46394','-79.95984','Panamá','San Carlos district',NULL,'2022-05-14',23685,23684,380,368,375,'<p>Here you can listen to some birds that last at night and multiple insects that start their night shift. All accompanied by the swaying of the waves of the Pacific Ocean in the distance.</p>',24525,357,NULL,NULL,21854);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22132,'Dense Rain Over Trees in The Rainforest','rain-at-the-chigorodocito-reserve','publish','7.64912','-76.6025','Colombia','Resguardos Indígenas de Chigorodó, Antioquia',NULL,'2022-05-14',23685,23687,378,366,372,'<p>This soundscape was recorded in the Indigenous reserve of Chigorodocito, in Antioquia. In this audio you can hear the rain falling over trees and some titi monkeys in the background.<br />
The area surrounding the Chigorocito Reserve has been affected by deforestation and habitat destruction due to banana plantations, which makes it even more important to preserve and grow protected areas like the Chigorocito Reserve.</p>',22849,2294,NULL,NULL,22800);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22131,'Frogs and Toads at Night in the Chigorodocito Reserve','frogs-and-toads-at-night-in-the-chigorodocito-reserve','publish','7.659115','-76.602502','Colombia','Resguardos Indígenas de Chigorodó, Antioquia',NULL,'2022-05-14',23685,23687,378,365,369,'<p>This soundscape was recorded at night in the Indigenous reserve of Chigorodocito, in Antioquia. This is a well preserved area in terms of biodiversity, where you can listen you can listen to frogs and toads, cicadas, crickets and fireflies. <br />
The area surrounding the Chigorocito Reserve has been affected by deforestation and habitat destruction due to banana plantations, which makes it even more important to preserve and grow protected areas like the Chigorocito Reserve.</p>',22858,631,NULL,NULL,21816);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22129,'Australia – Bushland Afternoon','australia-bushland-afternoon','publish','-31.3396875','151.8525625','Australia','Mummel Gulf National Park, NSW',NULL,'2022-05-14',23697,23728,384,366,360,'<p>Afternoon ambience from bushland in the New England tablelands region of New South Wales, Australia. A light breeze blows through the canopy of the eucalyptus woodland and in the background, birdsong drifts on the cool mountain air.</p>',22031,3640,NULL,NULL,25864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22128,'Australia – Tall Eucalypt Forest','australia-tall-eucalypt-forest','publish','-31.8534217','151.5172457','Australia','Barrington Tops, NSW',NULL,'2022-05-14',23697,23728,384,366,360,'<p>Soundscape recorded at 10 AM on the 12.12.2021. We can hear a wonderful waterfall in Podgarić where the nature has its most beautiful resources and scenery.</p>',22032,3620,NULL,NULL,25867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22127,'Australia – Alpine Woodland','australia-alpine-woodland','publish','-32.0665092','151.5935778','Australia','Gloucester Tops, NSW',NULL,'2022-05-14',23697,23728,381,366,360,'<p>Birdsong from a misty alpine woodland in New South Wales. The bell-like melodic whistles of Crimson Rosellas can be heard through much of this recording along with the calls of New Holland Honeyeater, Grey Fantail, Olive Whistler and White-throated Treecreeper.</p>',22030,3879,NULL,NULL,21919);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22126,'Mountain Stream at Night in Java','mountain-stream-at-night-in-java','publish','-6.702511','106.5227','Indonesia','Gunung Halimun National Park, Java',NULL,'2022-05-14',23697,23729,378,368,376,'<p>The nature sounds of a rushing mountain stream cascading through ancient mossy forest at night in the mountains of Java. Recorded in the heart of Gunung Halimun National Park, one of the key protected areas in west Java.</p>',22078,6228,NULL,NULL,21921);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22125,'Thailand Wetland','thailand-wetland','publish','8.4501414','98.5255317','Thailand','Sri Phang Nga National Park',NULL,'2022-05-14',23697,23730,382,367,369,'<p>Frogs and insects call from the edge of a wetland in lowland tropical rainforest in southern Thailand. These steamy lowland forests are rich with the sounds of biodiversity, both day and night.</p>',22040,3743,NULL,NULL,21847);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22124,'Thailand Tropical Woodland','thailand-tropical-woodland','publish','15.6086432','99.320848','Thailand','Huai Kha Khaeng Wildlife Sanctuary',NULL,'2022-05-14',23697,23730,378,365,370,'<p>Night ambience from deep inside Huai Kha Khaeng Wildlife Sanctuary in the far west of Thailand. Known as one of the last refuges for the Indochinese tiger, this reserve is a success story in wildlife conservation. A reason for the large diversity of birds and mammals is the variety of habitats, ranging from evergreen rainforest to dry open woodlands and grassy meadows.</p>',22039,3795,NULL,NULL,21868);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22123,'Thailand Rainforest Night','thailand-rainforest-night','publish','15.6086432','99.320848','Thailand','Huai Kha Khaeng Wildlife Sanctuary',NULL,'2022-05-14',23697,23730,378,365,370,'<p>A calm nocturnal ambience recorded in the rainy season in a tropical rainforest in western Thailand. At this time of year, the frogs are very active and can be heard chorusing throughout this recording, along with the sounds of insects, and rain gently dripping from the canopy above.</p>',22038,4249,NULL,NULL,22793);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22122,'Java’s Last Rainforests','javas-last-rainforests','publish','-6.702511','106.5227','Indonesia','Gunung Halimun National Park, Java',NULL,'2022-05-14',23697,23729,378,366,360,'<p>Recorded in the misty montane rainforest of Gunung Halimun National Park, this recording features subtle birdsong and the sounds of a distant mountain river. This location is one of the last truly wild places on the island of Java and home to a host of unique wildlife.</p>',22037,3705,NULL,NULL,21845);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22121,'Australia’s Cloud Forest','australias-cloud-forest','publish','-18.5063818','145.7809865','Australia','Girringun National Park, Queensland',NULL,'2022-05-14',23697,23731,387,366,360,'<p>The upland rainforests of far-north Queensland are home to many species found nowhere else. This recording features the sounds of birds and insects along with a gentle breeze at dusk in this unique habitat. In the latter part of the recording, darkness falls and the sounds of crickets intensify. The wild crowings of Orange-footed Scrubfowl can be heard in the distance.</p>',22033,3989,NULL,NULL,21846);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22120,'Evening in the mountains of Thailand','evening-in-the-mountains-of-thailand','publish','19.9966004','99.144325','Thailand','Doi Pha Hom Pok National Park',NULL,'2022-05-14',23697,23732,NULL,NULL,NULL,'<p>Recorded in the cool montane forests of far north-west Thailand, this evening soundscape features the sounds of crickets and a gentle breeze blowing through oak and pine trees. A Hodgson’s Frogmouth squawks occasionally in the distance. These forests support a range of species associated with the evergreen Himalayan foothills and are an oasis of life in an area where many of the surrounding areas have been cleared or significantly altered.</p>',22034,3901,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22119,'Calm creek in the jungle','rainforest-sounds-calm-creek-in-the-jungle','publish','9.49125','-83.912083','Costa Rica','San José Province, Dota',NULL,'2022-05-14',23689,23733,378,368,376,'<p>Sit back, relax and listen to the water flow as dusk falls in the jungle. It’s not immediately apparent but there is a soft dusk chorus permeating through the water flowing sound. As the recording progresses and daylight fades away, the insect calls become clearer and louder. It’s such a gradual change that you can only notice it if you skip around the recording.</p>',21669,3595,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22118,'Dark night in the Amazon rainforest - Jungle sounds','dark-night-in-the-amazon-rainforest-jungle-sounds','publish','-11.581056','-70.666694','Peru','Reserva territorial Madre de Dios',NULL,'2022-05-14',23689,23734,378,364,370,'<p>The nature sounds change in the Amazon rainforest as dusk descends on the jungle. Minutes earlier it was lively and lush, full of birds and other wildlife calling. Now it’s become louder, more intense but less varied at a first listen. The insect and frog calls are almost deafening, occupying a higher range in the frequency spectrum and changing much more slowly over time.</p>',21655,3595,NULL,NULL,24452);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22117,'Dusk by the river in the Amazon rainforest - Jungle sounds','dusk-by-the-river-in-the-amazon-rainforest-jungle-sounds','publish','-11.581056','-70.666694','Peru','Reserva territorial Madre de Dios',NULL,'2022-05-14',23689,23734,378,365,360,'<p>Dawn and dusk in the Amazon rainforest are particularly lush when it comes to biophony, especially by a slow flowing river. The stark contrast between the beauty of birdsong and the shrill urgency of insect calls is never as evident. The river itself acts as a border and connection for a myriad unseen worlds, a meeting point and boundary for the inhabitants of the rainforest. Contact calls, warning calls, begging calls, scolding calls, alarms – the language of wildlife ebbs and flows with the day/night cycle.</p>',21658,3595,NULL,NULL,21803);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22116,'Beautiful birdsong in the African savanna','beautiful-birdsong-in-the-african-savanna','publish','-22.821778','28.079361','South Africa','Lephalale Local Municipality',NULL,'2022-05-14',23689,23735,384,361,360,'<p>Savannas in Southern Africa are some of the most lush and beautiful sounding environments I’ve ever recorded. The variety of species is just staggering. What’s more important, the open landscape allows the calls to travel much further than in rainforests or jungles so the soundscape has depth, is beautifully layered and incredibly lush.</p>',21650,3595,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22115,'Rainforest sounds - calm morning at riverbed in the Borneo jungle','rainforest-sounds-calm-morning-at-riverbed-in-the-borneo-jungle','publish','5.26325','118.826722','Malaysia','Lahad Datu, Sabah',NULL,'2022-05-14',23689,23736,378,366,360,'<p>It’s early morning at a dry riverbed in the Borneo rainforest. The soundscape is thick and piercing but not too busy. Gentle fog drip creates a subtle drawn-out rhythm while the calls of cicadas, katydids and other insects provide a monotonous backdrop. Tree frogs are winding down their night calls with bird calls slowly taking their place in the frequency spectrum.</p>',21670,3595,NULL,NULL,25364);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22114,'Calm rain in the Amazon jungle - rainforest sounds','calm-rain-in-the-amazon-jungle-rainforest-sounds','publish','-11.581056','-70.666694','Peru','Reserva territorial Madre de Dios',NULL,'2022-05-14',23689,23734,378,363,372,'<p>Calm rain in the jungle – featuring the clear sound of droplets hitting vegetation all around you. The constant but soft frog chorus is occasionally interrupted by distant thunder. It’s difficult to find a more soothing and tranquil soundscape than rain in the rainforest. Not easy to access or record, but incredibly rewarding when done right.</p>',21654,3595,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22113,'Borneo rainforest - afternoon soundscape in the jungle','borneo-rainforest-afternoon-soundscape-in-the-jungle','publish','4.834','116.900639','Malaysia','Maliau Basin Conservation Area',NULL,'2022-05-14',23689,23737,378,361,360,'<p>The soundscape in Borneo changes quickly as darkness descends upon the rainforest. At 5.30pm the dusk chorus is in full force, with a variety of birds singing beautifully. Half an hour later, as the sun sets, the beautiful birdsong is a distant memory, taken over by the harsh electric sound of Empress cicadas and other insects calling.</p>',21651,3595,NULL,NULL,21846);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22111,'Nature and wildlife sounds - dawn in the South African bush','nature-and-wildlife-sounds-dawn-in-the-south-african-bush','publish','-22.821778','28.079361','South Africa','Lephalale Local Municipality',NULL,'2022-05-14',23689,23735,384,361,360,'<p>Listen to one of the most lush and diverse soundscapes I’ve experienced featuring a multitude of bird species. From the low rhythmic notes of doves and hoopoes to higher pitched calls of cuckoos and kingfishers, it all creates a beautiful symphony. The occasional geese flying past provide interesting changes in the soundscape, and everything is firmly located in a very live space.</p>',21663,3595,NULL,NULL,21851);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22110,'Nature sounds - Morning in African rainforest','nature-sounds-morning-in-african-rainforest','publish','-0.541056','11.405583','Gabon','Ancien Founa',NULL,'2022-05-14',23689,23738,378,366,360,'<p>As the sun rises and starts heating the forest, the fog drip subsides and the vegetation becomes progressively drier. This causes some grasses and stalks to click and pop, which can sound like water drops at times. If you listen carefully you’ll be able to differentiate between the two, especially towards the end.</p>',21665,3595,NULL,NULL,22208);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22109,'Dawn in the West African Savanna','dawn-in-the-west-african-savanna','publish','13.245667','-13.533417','Senegal','Bakadadji',NULL,'2022-05-14',23689,23739,384,368,360,'<p>Listen to the monotonous but hypnotic chorus of Vinaceous doves and Red-billed hornbills, accompanied by a multitude of insect chirps. Bulbuls, bush-shrikes, wood-hoopoes, doves and many other species complement the avian symphony. If you listen closely you will also hear distant baboons squabbling as the sun rises and they don’t feel like waking up just yet. Geese, ducks and ibises occasionally offer a less than harmonious alternate to the birdsong.</p>',21657,3595,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22108,'Jungle sounds - morning in the Borneo rainforest','jungle-sounds-morning-in-the-borneo-rainforest','publish','4.834','116.900639','Malaysia','Maliau Basin Conservation Area',NULL,'2022-05-14',23689,23737,378,368,360,'<p>Jungle mornings in Borneo are pretty lively, with plenty of birds singing and mammals calling. At Maliau Basin there are many troops of Gibbons whose calls resonate through the valleys. In this recording you can also hear the more subtle calls of Langurs which can be mistaken for creaking trees. Plenty of birdsong and bird calls offer a continuous backdrop with occasional siren-like chirps of cicadas breaking the harmony.</p>',21662,3595,NULL,NULL,21846);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22107,'Rain sounds - 1 hour of gentle rain in the Borneo rainforest','rain-sounds-1-hour-of-gentle-rain-in-the-borneo-rainforest','publish','4.46575','117.945667','Malaysia','Tawau Hills Park',NULL,'2022-05-14',23689,23740,378,363,372,'<p>Listen to gentle rain falling in the rainforests of Borneo, only interrupted by soft frog calls, occasional bird chirps and a delicate insect chorus. Reconnect with nature and reduce stress with the help of natural sounds from this remote rainforest.</p>',21668,3595,NULL,NULL,21845);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22106,'The sound of a primal forest in Transylvania','the-sound-of-a-primal-forest-in-transylvania','publish','47.045028','25.128833','Romania','Călimani National Park',NULL,'2022-05-14',23689,23741,381,361,360,'<p>It’s a calm spring morning at a forested valley in the mountains of Transylvania. A variety of birds compete for space in the sound spectrum, their calls reverberating through the foliage. Common species like Chiffchaff, Song Thrush and Robin can be heard constantly, while others like Cuckoo, Green Woodpecker or Black Woodpecker only call now and then. Very occasionally, guard dogs from a nearby shepherd can be heard way in the distance.</p>',21675,3595,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22105,'Dawn Chorus Birdsong in a Coniferous Forest','nature-sounds-forest-dawn-chorus-in-scotland','publish','57.029306','-2.871056','Scotland','Glen Tanar National Nature Reserve',NULL,'2022-05-14',23689,23681,381,361,360,'<p>Beautiful birdsong early in the morning at a coniferous forest in the remote parts of Scotland. Birds start singing very early in spring this far north, around 3 am. A few hours later the dawn chorus is in full swing, with species like Robin, Blackbird, Song thrush, Wren, Goldcrest and many others singing. Their calls reverberate around the forest floor creating beautiful and long echoes. Soft wind in the trees adds a beautiful backdrop to the birdsong.</p>',21664,3595,NULL,NULL,21848);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22104,'Scottish Summer Dawn Chorus','forest-and-nature-sounds-dawn-chorus-in-scotland','publish','57.029306','-2.871056','Scotland','Glen Tanar National Nature Reserve','2019-07-20','2022-05-14',23689,23681,381,361,360,'<p>Scottish summer dawn choruses like this one last long into the morning and feature beautifully exuberant birdsong. There’s a multitude of birds singing at various distances which creates a balanced mix of foreground, mid and background layers. There’s a faint but constant buzzing sound coming from a gorse bush nearby where a variety of insects are feasting on nectar.</p>',21660,3595,NULL,NULL,22626);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22103,'Calm atmosphere in the Borneo rainforest','calm-atmosphere-in-the-borneo-rainforest','publish','4.46575','117.945667','Malaysia','Tawau Hills Park',NULL,'2022-05-14',23689,23740,378,366,370,'<p>The soundscapes of the Borneo rainforest are some of my absolute favourite, both for their staggering diversity and their immersive beauty. The constant fog drip, the never-ending insect chorus, the incredible variety of bird, frog and mammal calls are fascinating. There are also more intangible things, like the gentle swells of activity happening every now and then, or the beautifully layered acoustics created by the rolling forested hills.</p>',21653,3595,NULL,NULL,22208);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22102,'Wild Amazon - Rainforest soundscape','wild-amazon-rainforest-soundscape','publish','-11.581056','-70.666694','Peru','Reserva territorial Madre de Dios',NULL,'2022-05-14',23689,23734,378,366,371,'<p>The soundscape of the Amazon rainforest is incredibly lush, diverse and immersive, even on a hot afternoon when humidity is almost 100%. The insect chorus is constant and piercing – cicadas, crickets, flies, bees, wasps, beetles and many others are constantly making noise. The birds are a bit lazier during the day but their calls can be heard echoing on the rainforest floor, from various distances and elevations. Toucans, pihas, macaws, parakeets, antbirds and scores of other species form a beautiful and talented ensemble.</p>',21677,3595,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22100,'Rainforest soundscape - A forest in the clouds','rainforest-soundscape-a-forest-in-the-clouds','publish','6.8','39.662056','Ethiopia','Bale Mountains National Park',NULL,'2022-05-14',23689,23742,387,367,360,'<p>In the cloud forests of Ethiopia the soundscape is decidedly different from lowland rainforests like the Congo or the Amazon. There are less insects overall, so hearing distance is greater. There’s still plenty of humidity but it’s colder and as a result wildlife has to conserve energy.</p>',21672,3595,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22099,'British Woodland in Spring','british-woodland-in-spring-nature-sounds','publish','51.106333','-0.608861','England','Frome Copse, Chiddingfold, Godalming',NULL,'2022-05-14',23689,23691,381,361,360,'<p>It is the start of the dawn chorus on a lazy Sunday morning.</p>
<p>Some of the birds that can be heard are European blackbird, Great spotted woodpecker, European goldfinch, Eurasian wren, European wood pigeon, Common pheasant, a variety of tits and many others. Their calls are layered and arrive from a variety of distances, making the best of the beautiful acoustics of the place. The gentle babbling of the water ties everything together even though at times it is barely heard.</p>',21652,3595,NULL,NULL,21806);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22098,'Rainforest sounds - Night in the Amazon jungle','rainforest-sounds-night-in-the-amazon-jungle','publish','-11.581056','-70.666694','Peru','Reserva territorial Madre de Dios',NULL,'2022-05-14',23689,23734,378,362,360,'<p>During the day, the sounds of the Amazon jungle are lush, lively and varied. Birds sing beautifully, frogs croak and mammals call occasionally. As dusk falls, the soundscape becomes louder, more piercing but also less varied. Insects make up a lot of it, assisted by many frogs and the occasional mammal for good measure. Bats are common too, although I can barely hear their high frequency calls.</p>',21671,3595,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22097,'Dusk on the river Gambie','dusk-on-the-river-gambia-sounds-of-africa','publish','13.158417','-13.319083','Senegal','Niokolo-Koba National Park',NULL,'2022-05-14',23689,23739,384,368,360,'<p>Listen to a myriad birds call, including Yellow-crowned gonoleks, Red-eyed doves, Hadada ibis, Senegal coucals, African fish eagles, bulbuls, wood hoopoes, fishing owls, starlings, thick-knees and a host of others. At first listen it might all seem like a wall of sound, but immerse yourself in it and you’ll start to notice individuals, repetition, patterns and a beautiful rhythm.</p>',21659,3595,NULL,NULL,27383);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22096,'Rain in a Deciduous Forest','rain-in-the-forest','publish','51.106333','-0.608861','England','Frome Copse, Chiddingfold, Godalming',NULL,'2022-05-14',23689,23691,381,363,372,'<p>Listen to gentle rain falling in a British forest. I recorded this soundscape using small microphones that I placed on trees under thick branches at the heart of a deciduous forest. Halfway through you can hear the dawn chorus starting softly, although it never gets to the full-on levels you can hear on a sunny morning. Otherwise all you can hear is gentle relaxing rain.</p>',21667,3595,NULL,NULL,21849);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22095,'Relaxing rainforest ambience - Lazy afternoon in Borneo','relaxing-rainforest-ambience-lazy-afternoon-in-borneo','publish','4.834','116.900639','Malaysia','Maliau Basin Conservation Area',NULL,'2022-05-14',23689,23737,378,366,371,'<p>There’s something incredibly pleasant and relaxing about being fully immersed in a rainforest landscape. Sound is inherently more complex to process than vision so taking the time to notice the subtle rhythm of nature is a great way to slow down everything else in your mind. It’s a very similar process to meditation, but generally easier and more effective.</p>',21674,3595,NULL,NULL,22800);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22094,'Thunder and rain sounds - Asian rainforest soundscape','thunder-and-rain-sounds-asian-rainforest-soundscape','publish','5.244389','118.789583','Malaysia','Lahad Datu, Sabah',NULL,'2022-05-14',23689,23736,378,363,377,'<p>Thunderstorms sound absolutely fascinating in the rainforest. The constant sound of insects, birds and other wildlife creates a beautiful background for the slow rhythm of thunderclaps. Rain sounds a lot like diffuse noise at first and it takes a while for it to reach the undergrowth. When it finally permeates through the thick canopy, the microphones will start picking up the beautiful detail of water droplets hitting the vegetation.</p>',21676,3595,NULL,NULL,21923);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22093,'Fascinating birdsong in the Congo rainforest','jungle-sounds-fascinating-birdsong-in-the-congo-rainforest','publish','0.290639','13.265667','Gabon','Ivindo National Park',NULL,'2022-05-14',23689,23743,378,368,360,'<p>This is a field recording I made in a village in Central Gabon on my expedition to the Congo basin rainforest. We stopped to buy fruit from a village and it sounded so good that we decided to spend the night with a very welcoming local family. 5 minutes from the main road we found this gorgeous wild banana grove where a myriad birds were singing.</p>',21661,3595,NULL,NULL,22793);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (22091,'Dawn in the rainforest - Sounds of Costa Rica','dawn-in-the-rainforest-sounds-of-costa-rica','publish','8.527306','-83.529667','Costa Rica','Parque Nacional Corcovado',NULL,'2022-05-14',23689,23733,378,361,360,'<p>It’s around 6 am, just as dawn light starts to penetrate to the forest floor. The insects are vocal but not annoyingly so. Birds start calling here and there, building momentum with every chirp, tweet or whatever bleating/cackling noise Macaws make. There are Motmots everywhere, uttering their own name every few seconds in low tones.</p>',21656,3595,NULL,NULL,24112);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21888,'White Mountain National Forest','white-mountain-national-forest','publish','43.936389','-71.387833','USA','White Mountain National Forest',NULL,'2022-04-26',23745,NULL,387,368,376,'<p>These recordings took place throughout the year in the Sandwich Wilderness of the White Mountain National Forest. Each day, I hiked from the parking area directly up the Wonalancet River, jumping from rock to rock. Because I wasn’t on a trail, I was able to experience and capture parts of the Wonalancet largely unknown to the world.</p>',21892,3600,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21887,'Sumter National Forest','sumter-national-forest','publish','34.787222','-83.315444','USA','Andrew Pickens Ranger District',NULL,'2022-04-26',23745,NULL,387,366,360,'<p>The Sumter National Forest consists of 370,442 acres which are divided into 3 distinct sections in western and central South Carolina. The recordings from this soundscape come from the Andrew Pickens Ranger District, which is part of the Appalachian Mountains and contains parts of the Chattooga River. The Chattooga is known as the “Crown Jewel” of the southeast and was the first river east of the Mississippi to be granted Wild and Scenic designation.</p>',21891,3600,NULL,NULL,21824);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21886,'Santee Coastal Reserve','santee-coastal-reserve','publish','33.118667','-79.301806','USA','Santee Coastal Reserve',NULL,'2022-04-26',23745,NULL,382,366,360,'<p>Before the Santee Coastal Reserve (SCR) was protected, much of the land was used for rice farming. The habitat created by rice fields is invaluable to wildlife, and is especially so at the SCR now that the property is managed for the benefit of breeding, migratory and wintering waterfowl, shorebirds and wading birds. Besides the managed rice fields, the SCR also features upland forests of longleaf pine and live oak, bottomland cypress swamps, and freshwater, brackish and tidal wetlands.</p>',21890,3600,NULL,NULL,21870);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21885,'Hammonassett State Park','hammonassett-state-park','publish','41.251194','-72.537306','USA','Hammonasset Natural Area Preserve',NULL,'2022-04-26',23745,NULL,382,366,376,'<p>936 acre state park on the coast of Madison, Connecticut. The 2 mile long beachfront looks out on the Long Island Sound. To avoid noise from beachgoers, all field recordings were made in the Natural Area Preserve part of the park during dawn, dusk and night.</p>',21889,3600,NULL,NULL,21862);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21883,'Okefenokee Swamp','okefenokee-swamp-2','publish','30.828889','-82.362278','USA','Stephen C Foster State Park',NULL,'2022-04-26',23745,NULL,382,364,371,'<p>The Okefenokee is one of the largest, intact swamps in the entire world. There’s only one road into the swamp and it terminates at Stephen C. Foster State Park, a Gold-tier International Dark Sky Park.</p>',21893,3600,NULL,NULL,22966);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21720,'Reassuring Soft Rain in the Rainforest of Costa Rica','reassuring-soft-rain-in-the-rainforest-of-costa-rica','publish','10.175','-84.066861','Costa Rica','Braulio Carrillo National Park',NULL,'2022-04-18',23689,23733,378,366,372,'<p>The sound of soft rain in the rainforest at dawn is bliss. The soundscape is comforting, relaxing, reassuring. It’s the perfect ambience for slowing down and immersing yourself into the jungle landscape. Birds are taking it easy today. The dawn chorus is almost non-existent, with one or two individuals calling every now and then. Occasionally a Howler monkey clears its throat half-heartedly, only to realise it’s the only mammal calling.</p>',25831,3600,NULL,NULL,22607);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21719,'Calm Jungle Morning in the Rainforest','calm-jungle-morning-in-the-rainforest','publish','-11.581056','-70.666694','Peru','Reserva Territorial Madre de Dios',NULL,'2022-04-18',23689,23744,378,361,360,'<p>Around four in the morning the insect chorus and water dripping sounds start to slowly morph into something more lively. Distant howler monkeys can be heard, while a flock of macaws is making a racket nearby. Screaming piha calls remind me I’m in the Amazon, while Motmots utter their low frequency bubbling call. Later on, toucans and toucanets join in along with a myriad other species.</p>',21649,3595,NULL,NULL,21809);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21579,'Relaxing Evening in the Amazonian Rainforest','relaxing-evening-in-the-amazonian-rainforest','publish','-11.581056','-70.666694','Peru','Reserva Territorial Madre de Dios',NULL,'2022-04-18',23689,23746,378,368,371,'<p>Sounds of the Amazon rainforest at night – at first listen this seems like a thick wall of sound but once your ears get accustomed to the busy-ness, layers start to emerge. You’ll hear sounds like fog drip, soft wind and occasionally deadfall. On top of that the piercing chorus of insects is constant, multi-layered and continuously changing. As a final touch, several birds call every now and then, their plaintive wails echoing around the thick undergrowth.</p>',21648,3595,NULL,NULL,24042);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21562,'Halmahera - Weda Forest','halmahera-weda-forest','publish','0.405954221','127.8886454','Indonesia','Halmahera, North Maluku',NULL,'2022-04-12',23697,23747,378,366,371,'<p>Early morning rainforest ambience featuring the sounds of birds, insects and frogs on a rugged, remote Indonesian island.</p>',20898,364,NULL,NULL,24067);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21561,'Magpies Singing at Night','magpies-singing-at-night','publish','-33.03057275','150.0164048','Australia','Capertee Valley, NSW',NULL,'2022-04-12',23697,23731,384,364,360,'<p>Under a full moon in early spring, the melodious songs of Australian Magpies ring out across the valley.</p>',20900,262,NULL,NULL,22794);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21560,'Tawau Hill Soundscape','tawau-hill-soundscape','publish','4.499770507','117.8909434','Malaysia','Tawau Hills',NULL,'2022-04-12',23697,23744,NULL,NULL,NULL,'<p>A rich natural soundscape from undisturbed tropical rainforest in Borneo.</p>',20901,361,NULL,NULL,21815);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21559,'Moor Frog Chorus','moor-frog-chorus','publish','52.878876','17.041459','Poland','Brzekiniec',NULL,'2022-04-12',23749,23748,382,362,369,'<p>The sound of chorusing Moor Frogs (Rana arvalis) during the very brief mating period where dozens of frogs gather and call continuously for just a few days each year.</p>',20897,124,NULL,NULL,21823);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21558,'New Guinea - Lowland Rainforest Dawn','new-guinea-lowland-rainforest-dawn','publish','-0.962138335','131.8227809','Indonesia','Birds Head Peninsula, West Papua',NULL,'2022-04-12',23697,23675,378,365,360,'<p>A vivid dawn chorus from the steamy forests of lowland West Papua. While the rainforest is still dark, Hooded Butcherbirds sing melodic fluty phrases to welcome the new day. The calls of nocturnal frogs and insects gradually fade as other diurnal species become active.</p>',23645,3709,NULL,NULL,25410);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21557,'Girringun Rainforest Morning','girringun-rainforest-morning','publish','-18.67400395','145.8498136','Australia','Girringun NP, Queensland',NULL,'2022-04-12',23697,23675,378,365,360,'<p>Some strange sounds from the Australian rainforest! The unique calls of Wompoo Fruit Doves, Spotted Catbirds and the sharp ‘whipcracks’ of Eastern Whipbirds make for an unusual soundscape.</p>',20899,135,NULL,NULL,21833);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21556,'Wet Season Frogs','wet-season-frogs','publish','-16.59607619','145.4497759','Australia','Julatten, QLD',NULL,'2022-04-12',23697,23675,382,365,369,'<p>In Queensland’s wet season, the frog choruses can be deafening. In this cut several species can be heard as well as multitude of crickets and other insects.</p>',20903,147,NULL,NULL,21831);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21555,'Tangkoko Cicadas','tangkoko-cicadas','publish','1.508737905','125.2459467','Indonesia','Tangkoko Nature Reserve',NULL,'2022-04-12',23697,23747,378,364,370,'<p>The natural sounds of cicadas and birds in Tangkoko Nature Reserve, Sulawesi.</p>',20905,244,NULL,NULL,24072);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21554,'A Morning at Sweetwater Lagoon','a-morning-at-sweetwater-lagoon','publish','-14.69040035','143.8401072','Australia','Lakefield National Park, QLD',NULL,'2022-04-12',23697,23731,382,366,360,'<p>The sounds of a tropical wetland awakening to a new day. Various bird species come and go as they flutter and feed in the canopy above. In the background, birdsong from the surrounding woodland and wetland fills the warm morning air.</p>',20896,227,NULL,NULL,21839);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21553,'Hill Forest Morning','hill-forest-morning','publish','15.07080598','98.78983862','Thailand','Thung Yai Wildlife Sanctuary',NULL,'2022-04-12',23697,23750,378,366,360,'<p>A sunny morning in the hill evergreen forests of Thung Yai West Wildlife Sanctuary part of Thailand’s western forest complex.</p>',20906,292,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21552,'Tangkoko Morning','tangkoko-morning','publish','1.549921959','125.1868952','Indonesia','Tangkoko Nature Reserve',NULL,'2022-04-12',23697,23748,378,368,360,'<p>Early morning recording from deep in the forests of Tangkoko, capturing the rich, exotic sounds of this vanishing habitat.</p>',20907,303,NULL,NULL,21847);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21551,'Dusk in Ulu Muda','dusk-in-ulu-muda','publish','6.117351018','101.0859812','Malaysia','Ulu Muda Forest Reserve',NULL,'2022-04-12',23697,23744,378,365,370,'<p>The rhythmic sounds of cicadas and frogs combine in a rich dusk chorus in the rainforest of Ulu Muda.</p>',20908,217,NULL,NULL,21873);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21550,'Dawn at Mount Gibson','dawn-at-mount-gibson','publish','-29.62362745','117.4157565','Australia','Mount Gibson Sanctuary, WA',NULL,'2022-04-12',23697,23731,384,367,360,'<p>Spiny-cheeked, White-fronted & Grey-fronted Honeyeaters call as they flutter about feeding in the flowering salmon gums. In the background, the fluty, bell-like rhythms of Crested Bellbird ring across the landscape.</p>',20909,201,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21549,'Elephants at a Salt lick','elephants-at-a-salt-lick','publish','6.18971607','101.0640085','Malaysia','Ulu Muda Forest Reserve',NULL,'2022-04-12',23697,23744,378,362,374,'<p>Elephants grumble and roar at night at a salt lick in the forests of Ulu Muda, northern Malaysia. Listen with headphones to hear the ultra low-frequency rumbles.</p>',20904,123,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21548,'Waves at La Bloc Beach','waves-at-la-bloc-beach','publish','46.72780378','-60.92043567','Canada','Cape Breton Highlands NP, Nova Scotia',NULL,'2022-04-12',23751,23744,380,366,375,'<p>Waves carried by the incoming tide and summer breezes break on the smooth pebble beach of La Bloc, Cape Breton.</p>',20910,197,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21547,'Trefechan Brook','trefechan-brook','publish','53.000444','-3.076963','Wales','Penycae',NULL,'2022-04-12',23752,23691,381,361,376,'<p>A variety of birdsong by a flowing river in North Wales. Species recorded include Common Blackbird, Blue Tit, Chaffinch, Coal Tit, Great Tit, Greenfinch & Eurasian Wren.</p>',20912,462,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21546,'Quiet Evening in the Everglades','quiet-evening-in-the-everglades','publish','25.72468239','-81.21905017','USA','Everglades National Park, Florida',NULL,'2022-04-12',23751,NULL,382,366,371,'<p>Gentle night ambience in the Everglades with a Barred Owl calling to a background of insects and frogs.</p>',20911,283,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21545,'Everglades Wetland at Night','everglades-wetland-at-night','publish','25.27846546','-80.69719959','USA','Everglades National Park, Florida',NULL,'2022-04-12',23751,NULL,382,366,369,'<p>The nighttime sounds of wood storks, roseate spoonbills, snowy egrets, great egrets, and great blue herons roosting at night. In the background, the high-pitched background drone of mosquitoes swarming over the water’s surface along with the constant chorus of frogs.</p>',20913,141,NULL,NULL,21813);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21544,'Eider Soundscape','eider-soundscape','publish','78.21881','15.693305','Norway','Adventdalen, Svalbard',NULL,'2022-04-12',23754,23753,384,365,360,'<p>A large colony of breeding yellow-billed Common Eiders near small pools in Adventdalen, Svalbard. In the background you can hear Snow Buntings sing and the harsh calls of Glaucous Gull.</p>',20914,50,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21543,'Flying-Fox Colony','flying-fox-colony','publish','-30.26836038','152.715582','Australia','Tallowwood Ridge, NSW',NULL,'2022-04-12',23755,23731,384,362,360,'<p>Flying-foxes are large bats, nectivorous and frugivorous, and roost during the day in the tops of trees in numbers up to the tens of thousands. They spend around half their day asleep, and half grooming and socialising. Vocal communication is a key component of their socialising.</p>',20916,303,NULL,NULL,21922);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21542,'Atlantic Puffins Calling','atlantic-puffins-calling','publish','43.786739','-68.853948','USA','Matinicus Rock, Maine',NULL,'2022-04-12',23756,NULL,380,366,360,'<p>A pair of Atlantic Puffins call from their burrow on Matinicus Rock in the North Atlantic.</p>',20915,134,NULL,NULL,21801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21541,'Frog & Toad Chorus','frog-and-toad-chorus','publish','-0.168038','30.004704','Uganda','Queen Elizabeth National Park',NULL,'2022-04-12',23757,23744,382,366,369,'<p>Intense chorus of Guttural Toads and several frog species including Rocket Frogs, Running Frogs & a species of Afrixalus.</p>',20917,237,NULL,NULL,21839);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21540,'Lyrebird in the Rainforest','lyrebird-in-the-rainforest','publish','-29.472361','152.321778','Australia','Washpool National Park, NSW',NULL,'2022-04-12',23758,23675,378,361,360,'<p>The sound of a Superb Lyrebird singing in the early morning by a small rainforest stream.</p>',20894,437,NULL,NULL,21861);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21539,'Above & Below a Creek','above-and-below-a-creek','publish','-24.35804','150.96457','Australia','Kroombit Tops National Park, Queensland',NULL,'2022-04-12',23759,23675,382,365,369,'<p>Recorded with hydrophones underwater, as well as regular microphones above the water, this lovely natural chorus is dominated by Striped Marsh Frogs, and a lone but prominent Northern Banjo Frog. Underneath the creek a buzzing chorus of aquatic insects create a mesmerizing sonic landscape.</p>',20920,498,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21538,'Monsoon Frog Chorus','monsoon-frog-chorus','publish','-19.328546','146.809161','Australia','Townsville, Queensland',NULL,'2022-04-12',23759,23675,382,365,369,'<p>After months of intense tropical dry heat, heavy rain drenched the land and soon after, the sounds of frogs filled the humid night air.</p>',20919,178,NULL,NULL,21839);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21537,'Night Sounds of Magnetic Island','night-sounds-of-magnetic-island','publish','-19.140309','146.847285','Australia','Magnetic Island, Queensland',NULL,'2022-04-12',23759,23731,379,366,371,'<p>A nocturnal chorus featuring Southern Boobook owls, the odd calls of Orange-footed Scrubfowl along with countless insects.</p>',20921,272,NULL,NULL,21823);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21536,'Rainforest Dawn','rainforest-dawn','publish','-17.2783135','145.6225339','Australia','Lake Eacham, Queensland',NULL,'2022-04-12',23697,23675,378,361,360,'<p>The sounds of one of Australia’s biodiversity hotspots – Queensland tropical rainforest. This habitat is home to a staggering variety of wildlife, including many unique, endemic species.</p>',20922,206,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21535,'Orangutan Calling','orangutan-calling','publish','4.971186738','117.8147969','Malaysia','Bako National Park, Sarawak',NULL,'2022-04-12',23697,23760,378,362,374,'<p>In the pre-dawn darkness, a large male Orangutan calls from the rainforest canopy above.</p>',20923,178,NULL,NULL,24042);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21534,'Coastal Forest Soundscape','coastal-forest-soundscape','publish','-35.64718345','150.2858394','Australia','Durras, NSW',NULL,'2022-04-12',23759,23731,380,366,360,'<p>Bibrons Toadlet’s call loudly from the edge of the marsh, while a variety of honeyeaters, lorikeets & other forest birds sing in the cool humid air. In the distance, waves crash into the sands of Durras Beach.</p>',20918,463,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21533,'Desert Night','desert-night','publish','-19.977278','129.710009','Australia','Tanami Desert, Northern Territory',NULL,'2022-04-12',23761,23731,383,367,360,'<p>The sounds of crickets chirping and wind ‘singing’ in the desert oaks, under a vast night sky in the Australian outback.</p>',20924,123,NULL,NULL,21837);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21532,'Northern Spring Peepers','northern-spring-peepers','publish','47.060477','-88.403873','USA','Jacobsville, Michigan',NULL,'2022-04-12',23762,NULL,382,362,369,'<p>The sounds of Northern Spring Peepers in a marshy forest at night.</p>',20928,139,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21531,'Ravens at Dusk','ravens-at-dusk','publish','53.156591','-4.397063','Wales','Anglesey',NULL,'2022-04-12',23763,23693,381,363,360,'<p>On a warm September evening, ravens and jackdaws gather for the evening roost in Corsican pines.</p>',20929,832,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21530,'Sioux Forks Wetland','sioux-forks-wetland','publish','43.549237','-95.204235','USA','Sioux Forks Waterfowl Reserve, Minnesota',NULL,'2022-04-12',23764,NULL,382,366,360,'<p>Rich birdsong fills the air in a small wetland reserve in southern Minnesota.</p>',20925,600,NULL,NULL,21813);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21529,'Mountain Meadow','mountain-meadow','publish','50.6579533','86.1653776','Russia','Uluta River, Altai Republic',NULL,'2022-04-12',23765,23744,381,366,360,'<p>The sweet song of a Blyth’s Reed Warbler early one morning in a mountain meadow.</p>',20869,202,NULL,NULL,21868);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21528,'Emperor Penguin Colony','emperor-penguin-colony','publish','-66.6628','140.0019','Antarctica','Terre Adélie',NULL,'2022-04-12',23767,23766,390,362,386,'<p>Emperor penguin chicks call for their parents. In few weeks, the young birds will leave the colony and head for the sea. Towards the end of this recording adult penguins can be heard swimming in front of the microphones and jumping onto the ice.</p>',20932,252,NULL,NULL,21865);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21527,'A Morning with the Albatross','a-morning-with-the-albatross','publish','-49.691584','70.238474','Kerguelen Islands','Indian Ocean',NULL,'2022-04-12',23767,23768,390,362,360,'<p>The sounds of thousands of Black-browed albatross and Macaroni Penguins at breeding colonies on a remote sub-antarctic island.</p>',20927,255,NULL,NULL,21865);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21526,'Humpback Whales Breaching','humpback-whales-breaching','publish','69.6094','18.0292','Norway','Brensholmen, Tromsø',NULL,'2022-04-12',23769,23753,380,362,386,'<p>The sounds of Humpback Whales breaching as they hunt herring close to the shore.</p>',20933,153,NULL,NULL,21804);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21525,'Giant''s Causeway','giant-s-causeway','publish','55.2405836','-6.5120176','Northern Ireland','County Antrim',NULL,'2022-04-12',23770,23693,380,366,375,'<p>The sounds of swirling water as waves ebb and flow around the basalt rock formations of the famous ‘Giant’s Causeway’.</p>',20870,59,NULL,NULL,21844);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21524,'Black Flying-Fox Colony','black-flying-fox-colony','publish','-14.312947','132.423148','Australia','Nitmiluk National Park, Northern Territory',NULL,'2022-04-12',23758,23731,384,362,360,'<p>A noisy colony of Black Flying-Foxes returning to roost for the day on the banks of Katherine river.</p>',20930,187,NULL,NULL,21846);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21523,'Sandhill Cranes','sandhill-cranes','publish','35.458241','-84.972299','USA','Armstrong Bend, East Tennessee',NULL,'2022-04-12',23771,NULL,382,362,360,'<p>The sounds of thousands of Sandhill Cranes on cold day with sleet falling.</p>',20934,179,NULL,NULL,21843);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21522,'Wader Soundscape','wader-soundscape','publish','57.047214','30.75818767','Russia','Veliky Novgorod',NULL,'2022-04-12',23765,23744,382,366,360,'<p>Northern Lapwings make their cosmic display flight vocalisations, along with the calls of Eurasian Curlew, Black-tailed Godwit and Eurasian Golden Plover.</p>',20931,258,NULL,NULL,21840);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21520,'Rainforest Stream','rainforest-stream','publish','12.95706032','99.46069129','Thailand','Kaeng Krachan National Park',NULL,'2022-04-12',23697,23744,378,366,376,'<p>The serene sounds of a stream flowing through the Thai rainforest with natural ambience of birds and insects in the background.</p>',20871,188,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21519,'Forest of Life','forest-of-life','publish','15.44640854','99.37142737','Thailand','Huai Kha Khaeng Wildlife Sanctuary',NULL,'2022-04-12',23697,23750,378,368,360,'<p>Vibrant soundscape from Thailand’s western forest complex featuring the sounds of Rufous Treepie, Black-hooded Oriole, Black-headed Woodpecker, Greater Racket-tailed Drongo Green Peafowl and Golden Jackal.</p>',20872,230,NULL,NULL,21846);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21518,'Lone Wolf Howling','lone-wolf-howling','publish','33.762978','-109.376481','USA','White Mountain, Arizona',NULL,'2022-04-12',23667,NULL,381,364,374,'<p>A distant lone wolf calls near a canyon rim in eastern Arizona.</p>',20935,158,NULL,NULL,21861);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21517,'Clayoquot Rain Forest','clayoquot-rain-forest','publish','49.274819','-125.366928','Canada','Vancouver Island, British Columbia',NULL,'2022-04-12',23772,23744,379,366,360,'<p>The dawn chorus near the Kennedy River, Vancouver Island, Canada. One of the words most pristine coastal rain forests.</p>',20926,120,NULL,NULL,21697);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21516,'Quadra Island Cove','quadra-island-cove','publish','50.135269','-125.194489','Canada','Quadra Island, British Columbia',NULL,'2022-04-12',23772,23744,380,366,360,'<p>The morning sounds of a gentle dawn in a cove on Quadra Island In British Columbia.</p>',20939,120,NULL,NULL,21802);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21515,'Pacific Chorus Frog','pacific-chorus-frog','publish','48.805182','-123.522326','Canada','Saltspring Island, British Columbia',NULL,'2022-04-12',23772,23744,380,366,369,'<p>Pacific Chorus Frogs call in the rain on Saltspring Island.</p>',20942,120,NULL,NULL,21856);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21514,'Nernier Soundscape','nernier-soundscape','publish','46.361983','6.306746','France','Nernier, Haute-Savoie',NULL,'2022-04-12',23757,23675,381,366,360,'<p>Birdsong at dawn in a French woodland.</p>',20944,284,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21513,'Birdsong and Rain','birdsong-and-rain','publish','52.750491','1.090787','England','Whitwell Hall, Norfolk',NULL,'2022-04-12',23757,23691,381,366,360,'<p>Birdsong and rainfall recorded at 5am in woodland surrounding Whitwell Hall in Norfolk.</p>',20945,136,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21512,'Flamingoes of the Camargue','flamingoes-of-the-camargue','publish','43.489783','4.404071','France','The Camargue',NULL,'2022-04-12',23757,23675,382,362,360,'<p>Greater Flamingoes calling in the Camargue region of southern France. Up to 10,000 flamingos gather during the mating season returning each year to a small area of the national park’s shallow expanses of water.</p>',20941,241,NULL,NULL,21813);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21511,'Evening Rhythms','evening-rhythms','publish','-16.7760187','145.5920916','Australia','Kuranda, QLD',NULL,'2022-04-12',23697,23675,378,365,371,'<p>Large-tailed Nightjars call, along with katydids, crickets & frogs in the far north Queensland rainforest.</p>',20943,256,NULL,NULL,21922);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21510,'Daintree Rainforest','daintree-rainforest','publish','-16.23848267','145.438283','Australia','Daintree National Park, QLD',NULL,'2022-04-12',23697,23675,378,366,360,'<p>Rainforest sounds from the World Heritage-listed Daintree National Park.</p>',20874,152,NULL,NULL,21818);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21509,'Cloud Forest Creek','cloud-forest-creek','publish','-17.42991598','145.4842883','Australia','Mt Hypipamee National Park, QLD',NULL,'2022-04-12',23697,23675,378,366,376,'<p>Frogs & birds gradually began to call as the sky began to lighten, and within a short time the forest is alive with the dawn chorus.</p>',20940,320,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21508,'Tasmania''s Ancient Rainforest','tasmania-s-ancient-rainforest','publish','-42.67567697','146.677764','Australia','Mt Field National Park, Tasmania',NULL,'2022-04-12',23697,23731,378,361,360,'<p>The rich sounds of Tasmania’s ancient rainforests, including the calls of Black Currawong, Pink Robin, Crescent Honeyeater and Green Rosella.</p>',20946,179,NULL,NULL,24292);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21507,'Andalucian Dawn','andalucian-dawn','publish','36.64763191','-5.048986601','Spain','Sierra de las Nieve, Andalucia',NULL,'2022-04-12',23697,23773,381,361,360,'<p>Late spring in the temperate forests of the Sierra de las Nieves, Andalucia, Spain. Dawn rises with Blackbirds and a Tawny Owl, later the spring air warms and becomes full of birdsong.</p>',20895,289,NULL,NULL,24047);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21506,'Midnight at Jibbon Beach','midnight-at-jibbon-beach','publish','-34.0797414','151.1660224','Australia','Bundeena, NSW',NULL,'2022-04-12',23697,23675,380,366,375,'<p>Close to midnight at Jibbon Beach south of Sydney. Waves ebb and flow on the sandy shore.</p>',20948,337,NULL,NULL,21836);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21505,'Taman Negara Soundscape','taman-negara-soundscape','publish','4.607663113','102.0522582','Malaysia','Taman Negara',NULL,'2022-04-12',23697,23760,378,362,360,'<p>Along with a variety of other birds, a Helmeted Hornbill builds up to it’s maniacal call, deep in the rainforests of Taman Negara National Park.</p>',20949,231,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21504,'Rainforest on the Edge','rainforest-on-the-edge','publish','4.404702153','102.4532592','Malaysia','Pahang Province',NULL,'2022-04-12',23697,23774,378,367,360,'<p>Rainforest soundscape from a patch of threatened rainforest, and featuring the song of White-handed Gibbons along with hornbills, broadbills, barbets and many other bird species.</p>',20877,388,NULL,NULL,24041);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21503,'Great-tailed Grackle Colony','great-tailed-grackle-colony','publish','16.13465249','-88.83207318','Belize','near Punta Gorda',NULL,'2022-04-12',23775,23744,380,362,360,'<p>The sound of a tree full of roosting Great Tailed Grackles (with some Montesuma Oropendolas).</p>',20878,209,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21502,'Thrush Nightingale at Night','thrush-nightingale-at-night','publish','58.47851401','24.99530361','Estonia','Soomaa National Park',NULL,'2022-04-12',23775,23776,381,361,360,'<p>Two Thrush Nightingales singing on a clear calm night in Estonia’s Soomaa National Park.</p>',20951,329,NULL,NULL,24055);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21501,'Song of the Blyth''s Reed Warbler','song-of-the-blyth-s-reed-warbler','publish','58.48846337','24.93223951','Estonia','Soomaa National Park',NULL,'2022-04-12',23775,23776,382,368,360,'<p>Two Blyth’s Reed Warblers belt out their rich song in the dark of night near Estonia’s Soomaa National park.</p>',20950,276,NULL,NULL,21817);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21500,'Song of the European Robin','song-of-the-european-robin','publish','60.282383','25.894249','Finland','near Tirmo',NULL,'2022-04-12',23775,23777,381,366,360,'<p>Early morning in the far south of Finland, the sublime song of a Robin reverberates through the forest.</p>',20952,380,NULL,NULL,21807);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21499,'Dawn in Ballyfad Wood','dawn-in-ballyfad-wood','publish','52.76768','-6.257927','Ireland','Ballyfad Wood, Wicklow',NULL,'2022-04-12',23775,23675,381,361,360,'<p>Dawn chorus from Ballyfad Wood with Blackbird, Wren, Song Thrush, Robin, Goldcrest, Chiffchaff and Woodpigeon.</p>',20947,336,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21498,'Pine Forest Soundscape','pine-forest-soundscape','publish','52.789288','-6.301601','Ireland','Raheenleagh Wood, Wicklow',NULL,'2022-04-12',23775,23675,381,366,360,'<p>Wood Pigeons, Song Thrush, Blackbird, Robin, Goldcrest and Coal Tit all sing in this vibrant recording from a pine forest in Ireland.</p>',20876,1048,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21497,'Dawn in County Wicklow','dawn-in-county-wicklow','publish','52.764528','-6.15886','Ireland','near Arklow, County Wicklow',NULL,'2022-04-12',23775,23675,384,361,360,'<p>Blackbirds sing and Rooks ‘caw’ in this dawn chorus at the ruins of the old church Saint Iber.</p>',20875,278,NULL,NULL,21813);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21496,'Meadow Atmosphere','meadow-atmosphere','publish','10.635424','-84.247985','Costa Rica','near Boca Tapada',NULL,'2022-04-12',23775,23733,378,362,360,'<p>Early morning in a sunny meadow next to the forest, the sound of flies, bees and crickets with distant parrots and a White-collared Seedeater in song.</p>',20873,1095,NULL,NULL,21879);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21495,'Pre-dawn Ambience','pre-dawn-ambience','publish','10.677306','-84.131154','Costa Rica','near Santa Rita',NULL,'2022-04-12',23775,23840,378,365,386,'<p>Pre-dawn in Costa Rica’s rainforest. Frogs, insects and a pygmy owl call with the sound of dew drops falling from the canopy above.</p>',20893,653,NULL,NULL,24042);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21494,'The Watering Hole','the-watering-hole','publish','-33.906317','147.926514','Australia','Weddin Mountains, NSW',NULL,'2022-04-12',23758,23675,383,366,360,'<p>The sounds of frogs, insects and the distant grunts of Kangaroos recorded by a watering hole in central NSW.</p>',20954,280,NULL,NULL,24069);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21493,'Wood Pigeons in Dublin','wood-pigeons-in-dublin','publish','53.383336','-6.4223762','Ireland','Near Clonsilla, North Dublin',NULL,'2022-04-12',23775,23675,381,366,360,'<p>Wood Pigeons and other birds call from forest along the Royal Canal, west of Clonsilla, Dublin.</p>',20953,378,NULL,NULL,21856);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21492,'Gannets on The Great Saltee','gannets-on-the-great-saltee','publish','52.1087535','-6.6222973','Ireland','The Great Saltee Island,',NULL,'2022-04-12',23775,23675,380,362,360,'<p>Sounds of the main Gannet colony on the Great Saltee Island, off the south-east coast of Ireland.</p>',20955,285,NULL,NULL,21811);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21491,'Olive Toad Chorus','olive-toad-chorus','publish','-22.73192119','28.32810932','South Africa','Mmabolela Reserve',NULL,'2022-04-12',23759,23841,384,363,369,'<p>Eastern Olive Toads (Amietophrynus garmani) sing in hypnotic polyrhythms on a windy night by a waterhole in the savannah.</p>',20956,709,NULL,NULL,22794);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21490,'In the Limpopo River','in-the-limpopo-river','publish','-22.702776','28.17577121','South Africa','Mmabolela Reserve',NULL,'2022-04-12',23759,23841,382,363,376,'<p>Fascinating perspective of the Limpopo river at dawn, with microphones above and hydrophones below the water!</p>',20958,482,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21487,'Steppe Marmot','steppe-marmot','publish','50.00575916','37.90913129','Ukraine','Dvorichansky National Park',NULL,'2022-04-12',23842,23748,384,366,360,'<p>A Steppe Marmot squeaks in the remote open chalk steppes of Ukraine’s Dvorichansky National Park.</p>',20957,69,NULL,NULL,21921);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21486,'Blue-backed Manakins','blue-backed-manakins','publish','2.141633357','-59.05147986','Guyana','Karanambu',NULL,'2022-04-12',23775,23748,384,362,360,'<p>Blue-Backed Manakins calling and displaying at a lek.</p>',20962,369,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21485,'Capuchinbird','capuchinbird','publish','2.148495','-59.198422','Guyana','Karanambu',NULL,'2022-04-12',23775,23748,384,364,360,'<p>The bizarre call of the Capuchinbird (or Calfbird) (Perissocephalus tricolor) in the forest of Guyana.</p>',20960,306,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21484,'Peruvian Rainforest Dawn','peruvian-rainforest-dawn','publish','-4.144830179','-73.54985049','Peru','Tahuayo Reserve',NULL,'2022-04-12',23775,23748,378,362,370,'<p>Birds and insects at dawn in the flooded forests of north eastern Peru.</p>',20961,398,NULL,NULL,24040);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21483,'Morning at Umzumbi','morning-at-umzumbi','publish','-22.610128','28.296559','South Africa','Mmabolela Reserve',NULL,'2022-04-12',23759,23841,384,362,360,'<p>Morning chorus in a dry river bed, occasionally dominated by the very loud calls of a few Natal Spurfowl’s, calling almost right next to the microphones.</p>',20880,627,NULL,NULL,21856);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21482,'Gentle Ocean Waves on Rocks','gentle-ocean-waves-on-rocks','publish','-41.25317018','148.3167491','Australia','Binalong Bay, Tasmania',NULL,'2022-04-12',23758,23731,380,366,375,'<p>The gurgling ebb and flow of gentle ocean waves in a rocky inlet on Tasmania’s east coast.</p>',20963,222,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21481,'Cocoparra Marsh at Dusk','cocoparra-marsh-at-dusk','publish','-34.147183','146.208131','Australia','Cocoparra National Park, NSW',NULL,'2022-04-12',23697,23675,382,365,369,'<p>Several species of frog call from a small marsh near Cocoparra National Park.</p>',20891,111,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21480,'Evening Marsh in the Budawangs','evening-marsh-in-the-budawangs','publish','-35.271763','150.036153','Australia','Morton National Park, NSW',NULL,'2022-04-12',23697,23731,382,365,369,'<p>Several species of frog call from a small marsh in the Budawangs mountain range.</p>',20964,183,NULL,NULL,24049);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21479,'Grampians Stream','grampians-stream','publish','-37.323128','142.621643','Australia','Grampians National Park, Victoria',NULL,'2022-04-12',23697,23731,387,366,376,'<p>In the rugged Grampians region of Victoria, a cool stream flows through the eucalyptus forest with gentle birdsong in the background.</p>',20892,190,NULL,NULL,21824);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21478,'Olive Whistler by a Mountain Stream','olive-whistler-by-a-mountain-stream','publish','-31.954008','151.427325','Australia','Barrington Tops National Park, NSW',NULL,'2022-04-12',23697,23675,387,366,376,'<p>A crystal clear stream gurgles through the cool highlands of Barrington Tops, and an Olive Whistler sings nearby.</p>',20965,170,NULL,NULL,21921);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21477,'Morning on the Murrumbidgee River','morning-on-the-murrumbidgee-river','publish','-34.631733','146.361663','Australia','Murrumbidgee Valley NP, NSW',NULL,'2022-04-12',23697,23731,382,367,360,'<p>Along with the gentle sound of the flowing Murrumbidgee River, Pied Butcherbirds and Grey Shrikethrush sing as parrots and cockatoos fly overhead.</p>',20966,214,NULL,NULL,21878);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21476,'Kangaroo Jumping','kangaroo-jumping','publish','-35.580477','142.060072','Australia','Wyperfeld National Park, Victoria',NULL,'2022-04-12',23697,23675,383,366,360,'<p>A Western Grey Kangaroo jumps past the microphones in stereo – listen with headphones!</p>',20882,52,NULL,NULL,24069);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21475,'Okefenokee Swamp','okefenokee-swamp','publish','30.817367','-82.332303','USA','Okefenokee Swamp, Georgia',NULL,'2022-04-12',23771,NULL,382,363,369,'<p>Pig Frogs, Cricket Frogs and Green Tree Frogs call enthusiastically from Okefenokee Swamp in early May</p>',20884,395,NULL,NULL,21839);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21474,'Alligator Purrs','alligator-purrs','publish','30.731119','-82.605118','USA','Okefenokee Swamp, Georgia',NULL,'2022-04-12',23771,NULL,382,364,386,'<p>Morning ambiance in Okefenokee Swamp that includes several Alligators communicating.</p>',20968,170,NULL,NULL,21843);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21473,'Wolf Pups Howling','wolf-pups-howling','publish','59.72859','15.47187','Sweden','Grimsö',NULL,'2022-04-12',23844,23843,381,364,374,'<p>A group of wolf pups howling across a lake in September.</p>',24353,278,NULL,NULL,24055);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21472,'Dawn at Rowallan Dam','dawn-at-rowallan-dam','publish','-41.738409','146.221107','Australia','Rowallan Dam, Tasmania',NULL,'2022-04-12',23758,23731,382,366,360,'<p>Early morning on the shore of Rowallan Dam, Yellow Wattlebirds, Yellow-throated Honeyeater, Striated Pardalote and Forest Raven can be heard along with other species.</p>',20970,179,NULL,NULL,21870);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21471,'Tropical Swamp','tropical-swamp','publish','12.82520054','99.58085425','Thailand','Kaeng Krachan National Park',NULL,'2022-04-12',23697,23750,382,368,369,'<p>Frogs, insects and birds call from the fringes of a swampy section of rainforest in Kaeng Krachan National Park, part of Thailand’s western forest complex.</p>',20967,223,NULL,NULL,21818);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21469,'Beskidy Mountains Soundscape','beskidy-mountains-soundscape','publish','49.463974','19.12659','Poland','Beskidy Mountains',NULL,'2022-04-12',23845,23748,387,366,360,'<p>High in the Żywiec Beskids, southern Poland, and the forest is alive with birdsong. A Roe Deer can also be heard ‘barking’ in This is one of the mountains, which is dedicated to the ski lift in future.</p>',20887,481,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21468,'Morning on Mount Seorak','morning-on-mount-seorak','publish','38.093615','128.441276','South Korea','Mount Seorak',NULL,'2022-04-12',23847,23846,387,366,360,'<p>Early morning on Mount Seorak, with birds calling in the mist and a woodpecker drumming.</p>',20973,80,NULL,NULL,21921);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21467,'Storm in Sinharaja','storm-in-sinharaja','publish','6.372547','80.485586','Sri Lanka','Sinharaja Forest Reserve',NULL,'2022-04-12',23697,23848,378,366,377,'<p>Frogs, insects and birds sing in the early morning light, then a monsoon storm passes over the rainforest. As the rain eases, the wildlife becomes active again..</p>',20975,324,NULL,NULL,21809);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21466,'Frogs in the Clyde River','frogs-in-the-clyde-river','publish','-35.341019','150.217461','Australia','Yadboro Flats, NSW',NULL,'2022-04-12',23758,23675,381,366,376,'<p>Green Stream Frogs (Litoria phyllochroa) call from the gently flowing Clyde River.</p>',20888,343,NULL,NULL,21824);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21465,'Bats in the Old Gold Mine','bats-in-the-old-gold-mine','publish','-28.439589','153.342264','Australia','Rowlands Creek, NSW',NULL,'2022-04-12',23758,23675,387,363,360,'<p>The chattering calls & wing flaps of a small colony of bats which now inhabit an abandoned goldmine in northern New South Wales.</p>',20881,211,NULL,NULL,24055);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21464,'Elk Feeding on Snow','elk-feeding-on-snow','publish','69.565768','18.59042','Norway','Straumsbukta',NULL,'2022-04-12',23754,23753,390,365,386,'<p>Elk (Moose) feeding on frozen snow in minus 12c degree temperature!</p>',20974,276,NULL,NULL,21855);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21463,'Kalgoorlie Wind','kalgoorlie-wind','publish','-30.71674614','121.451245','Australia','Kalgoorlie, WA',NULL,'2022-04-12',23761,23675,383,365,373,'<p>One of the most mesmerizing and haunting sounds of the Australian bush is the wind blowing through the leaves of the She-oak or Casuarina.</p>',20972,80,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21462,'Giant Forest','giant-forest','publish','36.554978','-118.748112','USA','Sequoia National Park, California',NULL,'2022-04-12',23849,NULL,381,365,369,'<p>Recorded in Crescent Meadow in Sequoia National Park, California. Featuring the lovely babbling of a little creek with the calls of Pacific Treefrogs (Pseudacris regilla).</p>',20976,242,NULL,NULL,21820);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21461,'Song of the Woodlark','song-of-the-woodlark','publish','57.1511','24.4338','Latvia','near Puska',NULL,'2022-04-12',23851,23850,381,361,360,'<p>Recorded on a bright, sunny morning, this Woodlark was perched in a tree-top singing it’s melodious song. In the background are Ravens, Cuckoo, Black Grouse, Common Whitethroat, Great Reed Warbler, Sedge Warbler and Yellowhammer.</p>',20889,182,NULL,NULL,21856);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21460,'Gentle Waves on a North Sea Beach','gentle-waves-on-a-north-sea-beach','publish','51.7432318','3.802687243','The Netherlands','Brouwersdam',NULL,'2022-04-12',23852,23675,380,366,375,'<p>Stereo recording of a very calm North Sea, with gentle waves rolling on the beach.</p>',20883,173,NULL,NULL,21801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21459,'Summer Soundscape','summer-soundscape','publish','51.48388','4.999782','The Netherlands','De Hoevens',NULL,'2022-04-12',23853,23675,381,366,360,'<p>Forest in summer in the middle of the day.</p>',20971,180,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21458,'Mountain Soundscape','mountain-soundscape','publish','45.659824','11.085538','Italy','Lessinia, Verona',NULL,'2022-04-12',23854,23675,387,361,360,'<p>Vibrant mountain soundscape featuring the calls of Mistle Thrush, Coal Tit, Common Redstart & Common Cuckoo. Listen to the Cuckoo interactions toward the end of the recording!</p>',20977,248,NULL,NULL,21919);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21457,'Chiapas Dawn Chorus','chiapas-dawn-chorus','publish','16.937274','-91.22222','Mexico','Lacandon Jungle, Chiapas',NULL,'2022-04-12',23855,23675,378,368,360,'<p>Tropical rainforest soundscape featuring the calls of Slaty-breasted Tinamou, Collared Trogon & Blue-diademed Motmot.</p>',20979,160,NULL,NULL,24042);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21456,'Platypus Waterholes','platypus-waterholes','publish','-35.94452021','136.7247537','Australia','Kangaroo Island, SA',NULL,'2022-04-12',23856,23731,380,368,376,'<p>Listen to the songs of early morning birds on wind swept Kangaroo Island. Sheer natural beauty paired with intoxicatingly fresh air makes for a very special holiday. Enjoy your time in the gumtree woodlands of Rocky River overlooking the Platypus Waterholes.</p>',24343,180,NULL,NULL,25553);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21455,'Alligator Gorge','alligator-gorge','publish','-32.83156753','138.0609659','Australia','Mount Remarkable NP, SA',NULL,'2022-04-12',23856,23731,387,366,373,'<p>A key conservation area in the Southern Flinders Ranges, Mount Remarkable National Park features a unique mix of flora and fauna of the dry north and the wetter south. The impressive sandstone rock formations of Alligator Gorge are home to goannas, emu’s and many other animals that live in this ancient landscape. Listen to the sounds of the birds as the majestic river red gums sway in the wind.</p>',20890,180,NULL,NULL,22679);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21454,'Birdsong in the Flinders Ranges','birdsong-in-the-flinders-ranges','publish','-31.60704811','138.6205819','Australia','Flinders Ranges, SA',NULL,'2022-04-12',23856,23731,387,366,360,'<p>This natural amphitheatre of 540 million-year-old mountains creates a secluded shelter for an abundance of unique flora and fauna. Unwind as the birds welcome another glorious day in this ancient landscape.</p>',20980,180,NULL,NULL,27051);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21453,'Rainforest Sound Journey','rainforest-sound-journey','publish','-8.878398','-70.648922','Brazil','near Feijó, Acre Province',NULL,'2022-04-12',23857,23719,378,368,360,'<p>A 20 minute sound journey compiled from various recordings made deep in Brazil’s western Amazon rainforest.</p>',20990,1238,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21452,'Great Horned Owls','great-horned-owls','publish','44.912507','-120.45301','USA','John Day River Basin, Oregon',NULL,'2022-04-12',23858,NULL,384,365,360,'<p>An unlikely exchange between predator and prey, Great Horned Owls (Bubo virginianus) and a Western Screech-Owl (Otus kennicottii) call during pre-dawn stillness with a background ambience of distant wind though juniper and rugged terrain.</p>',20982,180,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21451,'Hart Mountain Refuge','hart-mountain-refuge','publish','42.551103','-119.650792','USA','Hart Mountain Refuge, Oregon',NULL,'2022-04-12',23858,NULL,387,366,360,'<p>An early morning sageland soundscape featuring short-eared owls (Asio flammeus) with barks, hoots and wing-claps. Other species include Wilson’s snipe, sage thrasher, vesper sparrow, and savannah sparrow, greater sage grouse.</p>',20991,180,NULL,NULL,21861);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21450,'Dawn Awakening','dawn-awakening','publish','44.332106','-119.991567','USA','Ochoco Mountains, Oregon',NULL,'2022-04-12',23858,NULL,387,367,360,'<p>A sweetly singing Hermit Thrush (Catharus guttatus) leads the dawn chorus in the Ochoco Mountain forest.</p>',21014,186,NULL,NULL,21820);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21449,'Coast Range Lake','coast-range-lake','publish','45.941911','-123.69155','USA','Oregon Coast Range, Oregon',NULL,'2022-04-12',23858,NULL,387,366,360,'<p>A simple dawn chorus featuring a relaxing rhythm of tones and trills from the Varied Thrush (Ixoreus naevius) along with melodic phrases of the song sparrow, a background twitter of the Pacific wren, and distant bouts of the Pacific chorus frog.</p>',20992,181,NULL,NULL,21849);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21448,'Ocean Mist at Cape Falcon','ocean-mist-cape-falcon','publish','45.7724557','-123.9739061','USA','Cape Falcon, Oregon',NULL,'2022-04-12',23858,NULL,380,366,375,'<p>Water droplets fall from the trees like rain on the ferns and salal below. A large winter ocean swell brings relaxing deep breath sounds of surf sieved though smoothly rounded gravel.</p>',21015,181,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21447,'Morning by Crooked River','morning-by-crooked-river','publish','44.087795','-120.040234','USA','South Fork Crooked River, Oregon',NULL,'2022-04-12',23858,NULL,382,366,360,'<p>The dawn bird chorus has settled down a bit, yet the morning is alive with birdsong including the calls of Gray Flycatcher, Western Meadowlark, Northern Flicker, Chipping Sparrow & Common Raven.</p>',21017,300,NULL,NULL,21818);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21445,'Song of the Hermit Thrush','song-of-the-hermit-thrush','publish','46.7492463','-121.4387559','USA','Skamania County, Washington',NULL,'2022-04-12',23860,NULL,381,366,360,'<p>Sublime song of a Hermit Thrush recorded in the Gifford Pinchot National Forest in Skamania County, Washington.</p>',20994,279,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21444,'Whalen Island Soundscape','whalen-island-soundscape','publish','45.27486097','-123.9491319','USA','Whalen Island, Oregon',NULL,'2022-04-12',23860,NULL,381,366,360,'<p>Recorded in woodland next to an estuary. Sounds include Wilson’s Warbler, Rufous Hummingbird, Osprey and Song Sparrow.</p>',21021,41,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21443,'Sunday Morning Marsh','sunday-morning-marsh','publish','45.3819','-122.8319','USA','Washington County, Oregon',NULL,'2022-04-12',23860,NULL,382,366,360,'<p>Species recorded: Red-winged Blackbird, American Bittern, Sora, Virginia Rail, Song Sparrow, American Robin, Canada Goose, Common Yellowthroat, Ring-necked Pheasant, Mourning Dove, Starling, bullfrog.</p>',20981,222,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21442,'Sage Grouse Lek','sage-grouse-lek','publish','43.480535','-119.28251','USA','Harney County, Oregon',NULL,'2022-04-12',23860,NULL,384,366,360,'<p>Each spring male Greater Sage Grouse (Centrocercus urophasianus) congregate in leks and perform a “strutting display” to woo the females. The males strut with their ‘chests out’, air-sacs inflated, and produce an unusual swishing & bouncing sound as the air is released.</p>',20995,103,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21441,'Canopy Soundscape','canopy-soundscape','publish','-4.276135532','-74.13199196','Peru','near Iquitos',NULL,'2022-04-12',23861,23748,378,366,360,'<p>One hour of audio recorded from a canopy walkway in the Peruvian Amazon.</p>',20983,3606,NULL,NULL,21824);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21439,'Gabon Rainforest Ambience','gabon-rainforest-ambience','publish','-2.700593','9.971321','Gabon','Sounga, Gamba Reserve',NULL,'2022-04-12',23861,23841,378,366,360,'<p>Lovely recording from Central Africa. Gradually the gentle sounds build, from just a few soloists to a rich rainforest orchestra. At approx 29:40 minutes listen for the whooshing sound as a pair of hornbills fly in.</p>',27409,1953,NULL,NULL,21818);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21438,'Southern Bornean Gibbon','southern-bornean-gibbon','publish','-1.862437582','112.953254','Indonesia','Sabangau Rainforest, Central Kalimantan',NULL,'2022-04-12',23862,23744,378,362,386,'<p>A group of Southern Bornean Gibbon (Hylobates albibarbis) sing loudly in the Sabangau rainforest.</p>',24308,109,NULL,NULL,22632);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21437,'Dawn Chorus in Thy','dawn-chorus-in-thy','publish','56.948306','8.374955','Denmark','Thy National Park',NULL,'2022-04-12',23864,23863,381,366,360,'<p>Dawn chorus in Thy National Park on Denmark’s coast.</p>',21020,160,NULL,NULL,21856);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21436,'Olympic National Park','olympic-national-park','publish','47.967471','-123.499627','USA','Olympic National Park, WA',NULL,'2022-04-12',23864,NULL,378,363,369,'<p>A 20 minute sound journey through Olympic National Park. Features Pacific chorus frogs, a dawn chorus by the Hoh river, huge waves crashing on Rialto beach and a haunting howling sound recorded inside the hollow of a dead Sitka Spruce.</p>',21018,1200,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21435,'Kittiwakes at Bulbjerg','kittiwakes-at-bulbjerg','publish','57.15804925','9.023071922','Denmark','Bulbjerg',NULL,'2022-04-12',23864,23863,380,362,375,'<p>Waves gently roll against the shore, and Kittiwakes noisily fly around their colony on the cliffs overhead.</p>',21022,142,NULL,NULL,21801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21434,'Midnight Loons','midnight-loons','publish','47.76171354','-94.20908927','USA','Wagner Lake, Minnesota',NULL,'2022-04-12',23865,NULL,382,366,360,'<p>This track features the haunting calls of the Common Loon. The ambient “roar” you’ll hear is the sound of gentle night breezes swishing through the treetops of large Red Pines nearby.</p>',21023,720,NULL,NULL,21847);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21433,'Corys Shearwaters in the Azores','corys-shearwaters-in-the-azores','publish','38.546414','-28.480347','Portugal','Pico Island, Azores',NULL,'2022-04-12',23866,23718,380,363,360,'<p>The calls of Cory’s shearwaters as they come back to the nest sites under the cover of darkness.</p>',21025,92,NULL,NULL,24054);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21432,'Whistling Frogs and Insects','whistling-frogs-and-insects','publish','13.8782628','-61.0805989','St Lucia','West coast',NULL,'2022-04-12',23866,23867,380,365,369,'<p>St Lucia at night, the air filled with the songs of Whistling Frogs and insects.</p>',21026,78,NULL,NULL,21834);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21431,'A Norfolk Wood in Spring','a-norfolk-wood-in-spring','publish','52.909047','1.255189','England','Norfolk',NULL,'2022-04-12',23868,23693,381,366,360,'<p>Great Spotted woodpeckers drum & many birds are calling, including a long yaffle from a Green Woodpecker.</p>',21027,349,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21429,'In the Rock Pool','in-the-rock-pool','publish','50.276953','-3.883297','England','Devon',NULL,'2022-04-12',23868,23691,382,365,386,'<p>Hydrophones were placed underwater in a small still rock pool. You can hear the sounds of whelks, limpets, shrimp and other creatures.</p>',20997,110,NULL,NULL,21829);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21428,'Death Watch Beetle','death-watch-beetle','publish','52.905522','1.262711','England','Norfolk',NULL,'2022-04-12',23868,23693,381,365,386,'<p>Contact microphones were placed inside the hollow of an old Oak. The knocking sounds are made by Death Watch Beetles trying to attract a mate.</p>',20998,137,NULL,NULL,27066);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21427,'Mother and Pup Grey Seal','grey-seals','publish','52.75627','1.656078','England','Horsey, Norfolk',NULL,'2022-04-12',23868,23691,380,362,374,'<p>A mother and pup Grey Seal defend their patch on the beach from other seals. Your can hear the time going by, as the tide is coming in, getting closer to the microphone and so are the seals!</p>',21030,331,NULL,NULL,21801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21426,'Tide on Dry Sand','tide-on-dry-sand','publish','50.617242','-3.425058','England','Exmouth, Devon',NULL,'2022-04-12',23868,23693,380,363,375,'<p>Recorded on the beach at Exmouth, Devon UK. Two hydrophones buried in the sand about 4 inches deep, recording the tide coming in over the dry sand.</p>',21029,317,NULL,NULL,21802);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21425,'Thunder and Rain','thunder-and-rain','publish','52.913192','1.244215','England','Norfolk',NULL,'2022-04-12',23868,23693,384,362,377,'<p>Excellent recording of a thunderstorm and rain, with nice detail of the thunder. Recorded under a tree for cover.</p>',21028,520,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21423,'Calm Sea in an Ice Cave','calm-sea-in-an-ice-cave','publish','61.44117062','21.2793836','Finland','near Tahkoluoto',NULL,'2022-04-12',23869,23777,390,368,375,'<p>The sounds of a gentle swell from inside a hole in the ice.</p>',21031,213,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21422,'Dusk Chorus','dusk-chorus','publish','1.30665848','110.1332904','Malaysia','Kubah National Park, Sarawak',NULL,'2022-04-12',23697,23760,378,364,370,'<p>The Empress Cicada is the world’s largest cicada species, and has a call to match. It’s pulsing, electric-saw-like sound is strangely beautiful and a familiar sound in Borneo’s tropical rainforest. In this sample a White-rumped Shama sings sweetly, & the the sound of insects intensify as evening sets in.</p>',21024,159,NULL,NULL,21817);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21421,'Cicadas & Birds at Dawn','cicadas-and-birds-at-dawn','publish','5.861198608','116.1531148','Malaysia','Crocker Ranges, Sabah',NULL,'2022-04-12',23697,23774,378,364,370,'<p>Just after sunrise in Sabah’s Crocker Ranges, cicadas start buzzing like little electric saws.</p>',21001,110,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21420,'Pre-dawn in Bardia','pre-dawn-in-bardia','publish','28.48800521','81.27665495','Nepal','Bardia National Park',NULL,'2022-04-12',23697,23747,384,366,360,'<p>At first light, the calls of nocturnal birds, Large-tailed Nightjar and Asian Barred Owlet, fade into the rising dawn chorus.</p>',20985,90,NULL,NULL,21922);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21419,'Jungle Monsoon','jungle-monsoon','publish','27.56980289','84.51058363','Nepal','Chitwan National Park',NULL,'2022-04-12',23697,23747,378,366,372,'<p>Dark clouds were forming, grumbling and rolling continuously. This particular afternoon, the rainfall was lighter than usual, and soon enough the storm had passed, birds singing again as the sky brightened.</p>',21032,353,NULL,NULL,21818);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21418,'Monsoon in Borneo','monsoon-in-borneo','publish','1.726594402','110.5047688','Malaysia','Bako National Park, Sarawak',NULL,'2022-04-12',23697,23774,378,365,372,'<p>Leading up to the storm, the air is heavy and still. The soundscape becomes softer, simpler, as if the wildlife is bracing itself for the coming deluge.</p>',20986,241,NULL,NULL,21808);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21417,'Windy Morning on Mount Kinabalu','windy-morning-on-mount-kinabalu','publish','6.02032773','116.536263','Malaysia','Mount Kinabalu, Sabah',NULL,'2022-04-12',23697,23774,387,363,373,'<p>Strong winds made recording difficult on this trip to Mount Kinabalu, but I managed to get one decent recording where the sound of the wind complements the birdsong & ambience.</p>',21033,250,NULL,NULL,22768);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21416,'Pasoh at Night','pasoh-at-night','publish','3.03624','102.331799','Malaysia','Pasoh Forest Reserve',NULL,'2022-04-12',23697,23870,378,365,369,'<p>In the hours following dusk in Pasoh Forest Reserve, the forest is alive with insects, frogs, nocturnal birds and mammals. This recording was made by a puddle on the side of the main access road.</p>',21034,82,NULL,NULL,24040);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21415,'Siamangs in the Storm','siamangs-in-the-storm','publish','3.72937857','101.7779433','Malaysia','Frasers Hill, Pahang Province',NULL,'2022-04-12',23697,23870,387,368,377,'<p>In the highlands of Malaysia, a thunderstorm rumbles over the forest. Rain filters through the thick canopy, lightly falling on the forest floor. Mesia’s, fulvettas and other birds sing sweetly, and a group of Siamangs (a type of gibbon) call loudly in the distance.</p>',21004,125,NULL,NULL,21809);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21414,'First Light at Fogg Dam','first-light-at-fogg-dam','publish','-12.58278092','131.2849622','Australia','Fogg Dam, NT',NULL,'2022-04-12',23697,23731,382,366,360,'<p>Recorded in pre-dawn light where the monsoon forest merges with the wetland. A range of bird species can be heard – forest-dwelling birds herald the dawn while nocturnal Large-tailed Nightjars make their ‘chopping’ calls in the dim light. Waterbirds such as Magpie Geese and Whistling Ducks fly over the forest toward the wetland and the gurgling territorial calls of Orange-footed Scrubfowl can occasionally heard in the distance.</p>',21036,200,NULL,NULL,24049);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21413,'Dharawal','dharawal','publish','-34.22982719','150.8818771','Australia','Dharawal National Park, NSW',NULL,'2022-04-12',23697,23731,382,366,360,'<p>Situated on a rugged sandstone plateau south of Sydney, Dharawal National Park preserves an ancient landscape of tall eucalypts, heaths, swamps, waterfalls and rockpools. A network of creeks drain crystal clear water from the vast sedgelands and hanging upland swamps in Dharawal.</p>',21035,365,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21412,'Dawn in the Valley','dawn-in-the-valley','publish','-34.12555244','151.0463287','Australia','Royal National Park, NSW',NULL,'2022-04-12',23697,23731,384,366,360,'<p>Starting before dawn, crickets, tree frogs and owls gradually give way to the calls of early-rising Kookaburras, followed by an intense dawn chorus of many bird species singing in celebration of the new day.</p>',21037,288,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21411,'Spring in the Himalayan Foothills','spring-in-the-himalayan-foothills','publish','27.88989761','85.37392368','Nepal','Shivapuri National Park',NULL,'2022-04-12',23697,23747,387,361,360,'<p>The stunning rhododendron forests of Shivapuri National Park are alive with birds and bees in the springtime.</p>',21038,223,NULL,NULL,21853);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21410,'Booderee Marsh','booderee-marsh','publish','-35.15266271','150.6679898','Australia','Booderee National Park',NULL,'2022-04-12',23697,23675,382,366,369,'<p>Striped Marsh Frog (Limnodynastes peroni) & Eastern Common Froglet (Crinia signifera) call from a marsh in Booderee National Park, NSW, Australia.</p>',20978,161,NULL,NULL,24061);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21409,'By a Tropical Pond','by-a-tropical-pond','publish','5.905737736','117.9277468','Malaysia','Sepilok Forest Reserve, Sabah',NULL,'2022-04-12',23697,23744,378,368,360,'<p>Hill Mynas, Emerald Doves, and a Green Imperial Pigeon call from the nearby forest, along with a chorus of frogs from the edge of the pond.</p>',20987,195,NULL,NULL,24040);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21408,'Sepilok Ambience','sepilok-ambience','publish','5.838116511','117.9861117','Malaysia','Sepilok Forest Reserve, Sabah',NULL,'2022-04-12',23697,23774,378,366,360,'<p>Recorded in primary rainforest at Sepilok Forest Reserve, insects buzz & pulse in the rising morning heat, and birds call softly in the background.</p>',21039,201,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21406,'Cream-coloured Giant Squirrel','cream-coloured-giant-squirrel','publish','1.43782226','111.8883607','Malaysia','Sarawak',NULL,'2022-04-12',23697,23744,378,366,374,'<p>The calls of Giant Squirrels often start with an explosion of bubbly staccato notes, followed by some excited grunts and sneezes.</p>',21040,75,NULL,NULL,21818);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21405,'Dawn in Mallee Country','dawn-in-mallee-country','publish','-33.0069541','146.0952227','Australia','Nombinnie Nature Reserve, NSW',NULL,'2022-04-12',23697,23675,383,362,360,'<p>Spring is a great time to visit the mallee country, and if you can handle the frosty mornings, the intense dawn chorus at 6am is amazing.</p>',20988,178,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21404,'The Beast of Dunn''s Swamp','the-beast-of-dunn-s-swamp','publish','-32.83455896','150.2073766','Australia','Wollemi National Park, NSW',NULL,'2022-04-12',23697,23731,382,364,386,'<p>For the early Australian settlers, camping in the bush must have been a frightening experience. With limited knowledge of Australian fauna, their imaginations no doubt ran wild when hearing some of the rather disconcerting sounds of the bush at night – such as these harmless Brush-tailed Possums having a territorial disagreement.</p>',21041,142,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21403,'Summer in Wollemi','summer-in-wollemi','publish','-33.14577834','150.4168464','Australia','Wollemi National Park, NSW',NULL,'2022-04-12',23697,23731,381,366,360,'<p>Dawn chorus from Wollemi National Park, an area of wilderness relatively close to Sydney.</p>',21042,222,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21402,'Gulls on Ice','gulls-on-the-ice','publish','68.780176','-178.958379','Russia','Chukchi Sea Coast, Lagune Ukouge',NULL,'2022-04-12',23765,23744,380,366,375,'<p>Soundscape from one of the remotest regions on the planet, Vega Gulls congregating on the ice-covered coast of Russia’s far eastern Chukotka Pensinsula.</p>',21045,298,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21401,'Swinhoe''s Snipe Display Flight','swinhoe-s-snipe-display-flight','publish','50.550405','83.676673','Kazakhstan','Bjelaja Uba',NULL,'2022-04-12',23871,23748,381,366,360,'<p>Excellent recording documenting the display flight of a Swinhoe’s Snipe.</p>',21007,113,NULL,NULL,21870);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21399,'Cano Negro','cano-negro','publish','10.736037','-84.789585','Costa Rica','Cano Negro Wildlife Sanctuary',NULL,'2022-04-12',23873,23840,380,364,374,'<p>Recorded whilst on a canoe down the river Cano Negro in Costa Rica. As we passed through a mangrove forest, the calls of Howler Monkeys echoed from the water surface. On the other side of the river, Spider Monkeys climbed through the trees and a Montezuma’s Oropendola sang. Just after 4:00 a caiman jumps into the water.</p>',21043,336,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21398,'Dispersion in Ice Sheets','dispersion-in-ice-sheets','publish','52.742053','13.49664','Germany','near Berlin',NULL,'2022-04-12',23873,23748,390,362,376,'<p>Unique underwater perspective of a lake covered with thin ice. The extraordinary synthetic-sounding descending tones are caused by the natural dispersion of sound waves.</p>',21050,120,NULL,NULL,24075);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21397,'Ancient Forest','ancient-forest','publish','44.763544','-62.984255','Canada','Abrahams Lake, Nova Scotia',NULL,'2022-04-12',23772,23744,381,366,360,'<p>This recording captures the soundscape of an increasingly rare eco-system, the old growth virgin forest. Many of the sounds you hear are the same sounds that echoed through these trees thousands years ago and because it has never been touched by humans the soundscape is perhaps as close to true wilderness as you can experience.</p>',21049,174,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21396,'Peskowesk','peskowesk','publish','44.319975','-65.292017','Canada','Kejimkujik National Park',NULL,'2022-04-12',23772,23744,381,366,360,'<p>A journey in the through the sounds of the Acadian Forest of Nova Scotia. From dawn, following the morning chorus in wetlands, forests and river valleys we take a journey into the Spring Wilderness of Nova Scotia.</p>',21047,180,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21395,'Northern Wetland','northern-wetland','publish','46.6594554','-60.80375492','Canada','Cape Breton Highlands',NULL,'2022-04-12',23772,23744,382,366,360,'<p>Recording locations included the high Tundra plateau of the Cape Breton Highlands and the hidden wetlands of the Acadian Forest of Canada’s east coast.</p>',21048,180,NULL,NULL,21919);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21394,'Song Thrush at Dawn','song-thrush-at-dawn','publish','52.466725','1.523208','England','Suffolk',NULL,'2022-04-12',23868,23693,384,361,360,'<p>Recorded on the banks of the river Waveny. As as the dawn chorus began, a Song Thrush (<em>Turdus philomelos</em>) came close to my microphones and started to sing his beautiful song.</p>',21051,179,NULL,NULL,21840);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21393,'Kalahari Dawn','kalahari-dawn','publish','-23.74685777','20.91160777','Botswana','Kalahari Desert',NULL,'2022-04-12',23874,23841,383,366,360,'<p>The insect chorus ends at the crack of dawn and the birds get into their positions to sing in the morning. As the cooler morning air is warmed by the rising sun, the birds begin the dawn chorus.</p>',21046,339,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21392,'Jackals in the Kalahari','jackals-in-the-kalahari','publish','-23.9177','22.191515','Botswana','Kalahari Desert',NULL,'2022-04-12',23874,23841,383,364,374,'<p>As the night turns to morning, Jackals prowl the prairies. Two Jackals are heard here scavenging around my microphone.</p>',21052,190,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21391,'Fading Voices - Cape Fur Seals','fading-voices-cape-fur-seals','publish','-21.767854','13.957897','Namibia','Cape Cross',NULL,'2022-04-12',23874,23841,380,362,374,'<p>This may be the last recording from this seal colony. This fur seal breeding colony is being decimated by marauders who club 90,000 baby seals to death in a season for the lucrative seal fur trade.</p>',21003,220,NULL,NULL,21865);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21389,'Crex Meadows','crex-meadows','publish','45.849129','-92.681818','USA','Crex Meadows Wildlife Area, Wisconsin',NULL,'2022-04-12',23875,NULL,382,366,369,'<p>Chorus frogs and spring peepers precede a unison call of Sandhill Cranes, geese and waterfowl as night falls. A small mammal passes the microphones and a common snipe begins its courtship flights. Dawn excites the red-winged blackbirds, sparrows, and woodpeckers in the distant forest to sing as the wind picks up again.</p>',21053,1380,NULL,NULL,21831);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21383,'Toads on the Nile','toads-on-the-nile','publish','28.556204','30.660008','Egypt','near Sandafa al Far',NULL,'2022-04-12',23871,23876,382,368,369,'<p>African Common Toads (Amietophrynus regularis) call rhythmically from the Nile River valley near Sandafa al Far.</p>',21064,165,NULL,NULL,21831);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21382,'Hooker''s Sea Lions','hooker-s-sea-lions','publish','-48.0241314','166.5907911','New Zealand','Snares Island',NULL,'2022-04-12',23767,23877,380,364,375,'<p>Stereo recording of Hooker’s Sea Lions (Phocarctos hookeri) playing in a cove. One Sea Lion is swimming in the front, a second one is roaring in a remote sea cave. Silver Gulls and Sub-Antarctic terns are flying around. Not far away, there is a small but noisy Snares Penguin colony.</p>',21060,111,NULL,NULL,21838);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21381,'Groaning Iceberg','groaning-iceberg','publish','-66.59943964','139.4998792','Antarctica','Terre Adélie',NULL,'2022-04-12',23767,23766,390,364,376,'<p>Unique recording of icebergs as they creak, grind and rub against one another due to tidal movements and also small waves deep under the iceshelf.</p>',21091,196,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21380,'Iceberg Fragments','iceberg-fragments','publish','79.6','12.65','Norway','Bay of Alicehamna, Svalbard',NULL,'2022-04-12',23878,23753,390,365,376,'<p>Fragments of an iceberg drift along the Svalbard shoreline, popping, clicking and knocking in the icy sea.</p>',21090,164,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21379,'Song of the Marsh','song-of-the-marsh','publish','38.40672','-122.59864','USA','Ledson Marsh, Sonoma County, California',NULL,'2022-04-12',23879,NULL,382,361,360,'<p>The electric song of Red-winged Blackbird fills the air, and from the marsh the croaks Pacific Tree Frogs form a gentle rhythmic background.</p>',21062,97,NULL,NULL,21843);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21378,'Song of the Meadow','song-of-the-meadow','publish','37.80358','-118.52898','USA','Benton Hot Springs, California',NULL,'2022-04-12',23879,NULL,384,368,360,'<p>This lovely recording features the sounds of open country birds including Meadowlark, Great-tailed Grackle and California Quail.</p>',21063,68,NULL,NULL,21860);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21377,'Birdsong in Flói','birdsong-in-floi','publish','63.90115','-21.192433','Iceland','Flói Nature Reserve',NULL,'2022-04-12',23881,23880,382,366,360,'<p>This recording contains the sounds of many local birds and migrants including Red-necked Phalarope, Arctic Tern, Red-throated Diver, Black tailed Goldwit, Common Snipe, Golden Plover, Whimbrel, Eurasian Oystercatcher. Background noise is coming from the surf along the south coast.</p>',21093,570,NULL,NULL,24048);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21376,'Evening on Badger Hill','evening-on-badger-hill','publish','51.00277564','-3.858293904','England','near Umberleigh',NULL,'2022-04-12',23882,23693,384,361,360,'<p>A blackbird sings on a warm spring evening, and a calling raven flies high over the forest.</p>',21096,9,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21375,'Dawn Chorus in Pig Wood','dawn-chorus-in-pig-wood','publish','50.99240422','-4.039739979','England','near Umberleigh',NULL,'2022-04-12',23882,23693,384,361,360,'<p>A vibrant spring chorus from an English wood. Features the sounds of wood pigeons, pheasants, blackbirds, robins, wrens and tits.</p>',21094,290,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21374,'Birdsong in Kruger','birdsong-in-kruger','publish','-25.14739718','31.51079489','South Africa','Kruger National Park',NULL,'2022-04-12',23883,23675,384,366,360,'<p>Morning birdsong from the bush and savannah in South Africa’s famous Kruger National Park.</p>',21092,86,NULL,NULL,22787);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21373,'Frogs at Midnight','frogs-at-midnight','publish','36.426946','140.098279','Japan','near Mashiko',NULL,'2022-04-12',23885,23884,382,368,369,'<p>Various frog species call from a wetland in rural Japan.</p>',21066,353,NULL,NULL,21922);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21372,'Heart of the Rainforest','heart-of-the-rainforest','publish','-1.367859','119.997373','Indonesia','Lore Lindu, Sulawesi',NULL,'2022-04-12',23887,23886,378,368,360,'<p>Exotic soundscape from the beautiful rainforests of Sulawesi. Features the calls of hornbills, fruit pigeons and Piping Crows.</p>',21097,180,NULL,NULL,21921);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21371,'Asian Meadow','asian-meadow','publish','16.520372','100.832517','Thailand','Thung Salaeng Luang National Park',NULL,'2022-04-12',23887,23750,378,361,360,'<p>An exotic diversity of birdsong fills an open pine meadow in Northern Thailand.</p>',21100,179,NULL,NULL,21846);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21369,'Echoes in a Secret Gorge','echoes-in-a-secret-gorge','publish','37.858902','35.108858','Turkey','Demerkazik Gorge, Taurus Mountains',NULL,'2022-04-12',23887,23888,387,365,360,'<p>In the darkness, a Rock Thrush begins the dawn chorus and the piping calls of a Scops Owl echo eerily off the rock walls. Eventually, the whole gorge reverberates with birdsong.</p>',21099,180,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21368,'Pied Butcherbird at Ormiston Gorge','pied-butcherbird-at-ormiston-gorge','publish','-23.628964','132.727131','Australia','Ormiston Gorge, Western Macdonnell Ranges',NULL,'2022-04-12',23887,23731,383,367,360,'<p>At 3:00am in a remote Australian gorge, the sublime song of a Pied Butcherbird reverberates in the stillness of the night. From far away up the gorge, another bird was also singing, its voice floating distantly.</p>',21005,229,NULL,NULL,21842);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21367,'The Sacred Forests of India','the-sacred-forests-of-india','publish','12.036003','76.123553','India','Nagarahole National Park, Karnataka',NULL,'2022-04-12',23887,23750,381,366,360,'<p>This recording features the sounds of elephants, monkeys, deer and tiger, while birdsong echoes among deep jungles of teak, rosewood and bamboo.</p>',21101,180,NULL,NULL,24070);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21366,'Indian Jungle Dawn','indian-jungle-dawn','publish','20.563514','84.82413','India','Satkosia National Park, Orissa',NULL,'2022-04-12',23887,23744,378,361,360,'<p>A beautiful morning of birdsong unfolds in one of India’s rare lowland forests.</p>',21098,185,NULL,NULL,21866);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21365,'The Great Rann','the-great-rann','publish','23.447581','71.265053','India','The Rann of Kutch, Gujarat',NULL,'2022-04-12',23887,23750,383,361,360,'<p>In the dry season flamingos, pelicans, cranes and waterfowl gather on mirror lakes in huge numbers, and in the dry thornscrub, doves, prinias, bulbuls, coucals and silverbills contribute to a chorus of delicate birdsong that drifts over the arid plains.</p>',21009,181,NULL,NULL,24069);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21364,'Indian Woodland Birdsong','indian-woodland-birdsong','publish','20.523251','82.48509','India','Sunaberra National Park, western Orissa',NULL,'2022-04-12',23887,23750,378,368,360,'<p>This sample begins with White-browed Fantails, Prinias, Barbets, Bulbuls, Orioles and other birds together weaving a melodic chorus. Later a pair of Indian Grey Hornbills fly in, and a troupe of Langurs call nearby.</p>',21067,180,NULL,NULL,21919);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21363,'Forest Nocturne','forest-nocturne','publish','14.965756','74.174117','India','Cotigaon National Park, Goa',NULL,'2022-04-12',23887,23744,NULL,NULL,NULL,'<p>As the last birds sing and settle down, tiny Jungle Owlets awake with soft calls. The soft ‘chapping’ of geckos is heard, and as evening deepens, nocturnal crickets develop a hypnotising chorus of chiming rhythms.</p>',21070,35,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21362,'Time for the Tarkine','time-for-the-tarkine','publish','-41.62592','145.077043','Australia','Tarkine wilderness, northwest Tasmania',NULL,'2022-04-12',23887,23731,378,366,360,'<p>Australia’s Tarkine region of northwest Tasmania contains the largest expanse of temperate rainforest in the southern hemisphere. This soundscape captures the some unique sounds from this wild place, which is sadly under imminent threat from proposed mining operations.</p>',21061,185,NULL,NULL,21840);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21361,'Mojave, An American Soundscape','mojave-an-american-soundscape','publish','34.830094','-115.631852','USA','Southern Mojave Desert, California',NULL,'2022-04-12',23887,NULL,383,366,374,'<p>It is the still moments before dawn in the Mojave desert. The first birds begin calling in the dark, their voices drifting over the open plains. From rocky slopes come the echoes of a Coyote pack in full cry, while a pair of Great Horned Owls call as they patrol their territory. As the dawn chorus grows, we hear a variety of western desert birdsong; Sparrows, Cactus Wrens, Flycatchers and Thrashers. A community of Gambel’s Quail call prominently as they socialise, and a tiny Hummingbird buzzes our ear.</p>',21103,181,NULL,NULL,21842);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21360,'Zebra Herd by the River','zebra-herd-by-the-river','publish','-3.567319696','35.73216739','Tanzania','Tarangire River',NULL,'2022-04-12',23887,23889,382,368,374,'<p>A group of several hundred zebra come to the river to drink at midday. They are nervous of predators, and indeed we’d seen several prides of lions in the vicinity in previous days. Also heard are collared doves, plover and buffalo weavers.</p>',21102,174,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21359,'Night on the Savannah','night-on-the-savannah','publish','-3.546331683','35.74959102','Tanzania','Manyara National Park',NULL,'2022-04-12',23887,23890,384,366,371,'<p>We were camped in a forest clearing at Manyara NP, and heard these lions calling very close to our camp. The lion may seem quiet, but turn your volume up so the night insects sound pretty loud (they were!) and just imagine lying on the ground with only Chinese nylon between you and the night sounds.</p>',21106,211,NULL,NULL,22796);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21358,'An African Night','an-african-night','publish','-3.78134','35.946575','Tanzania','Near the Tarangire River',NULL,'2022-04-12',23887,23890,384,366,371,'<p>The air is filled with a rich chorus of nocturnal insects. Bats flutter overhead, sometimes coming close and audibly echo-locating. Nightjars call mysteriously on the wing, and if you listen carefully, the deep rumbling vocalisations from a family of elephants can occasionally be heard.</p>',21105,184,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21357,'The Whistlers of Kolombangara','the-whistlers-of-kolombangara','publish','-8.094093','157.113103','Solomon Islands','Kolombangara Island',NULL,'2022-04-12',23887,23744,378,361,360,'<p>This recording takes you to the island of Kolombangara to experience the melodic, rhythmic (and very loud!) song 0f the Golden Whistler, reverberating through the rainforests that cloak the island’s volcanic flanks.</p>',21107,193,NULL,NULL,22699);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21356,'Coral Beach','coral-beach','publish','-8.711097','157.480312','Solomon Islands','Tepepare Island',NULL,'2022-04-12',23887,23744,380,366,375,'<p>Gentle waves roll ashore, and as they recede, coral fragments tinkle delicately in the backwash. Among the coral debris, hermit crabs scurry busily, carrying their crazy variety of shelly homes. From the rainforest behind come the occasional calls of lorikeets, mynahs and fruit pigeons.</p>',21110,180,NULL,NULL,21808);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21355,'Echo on the Lake','echo-on-the-lake','publish','57.087885','30.701175','Russia','Rogovskoye Lake, Novgorodskaya oblast',NULL,'2022-04-12',23765,23744,382,366,360,'<p>Species recorded include Black-throated Loon (Gavia arctica), Black Grouse (Tetrao tetrix) and Common Gulls (Larus canus).</p>',21108,137,NULL,NULL,21862);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21354,'Song of the Skylark','song-of-the-skylark','publish','57.00296302','30.71010575','Russia','Rdeysky Reserve, Novgorodskaya oblast',NULL,'2022-04-12',23765,23744,381,366,360,'<p>Species recorded include Eurasian Skylark (Alauda arvensis), Common Cuckoo (Cuculus canorus), Song Thrush (Turdus philomelos) & Blackbird (Turdus merula).</p>',21069,337,NULL,NULL,21834);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21353,'Achit-Nur Soundscape','achit-nur-soundscape','publish','49.495235','90.411703','Mongolia','Lake Achit-nur',NULL,'2022-04-12',23765,23744,382,366,360,'<p>Soundscape from the remote Lake Achit-nur in Mongolia. Species recorded include Great Reed Warbler, Whooper Swan Common Coot and Common Black-headed Gull</p>',21111,121,NULL,NULL,21831);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21352,'Morning by the Lake','morning-by-the-lake','publish','56.04744','21.883591','Lithuania','Zemaitija National Park',NULL,'2022-04-12',23892,23891,382,368,360,'<p>Morning by the Lake Plateliai, in Zemaitija National Park, Lithuania. Icterine Warbler is singing in the tree. Other birds nearby: Great Spotted Woodpecker, Fieldfare, Wood Pigeon, Marsh Warbler and Common Whitethroat.</p>',21068,253,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21351,'Mosquito Paradise','mosquito-paradise','publish','59.2458077','27.56928663','Estonia','near Ahtme',NULL,'2022-04-12',23892,23776,382,366,360,'<p>In summer, the swampy forests of Estonia are heaven for mosquitos, but also provide a haven for singing Willow Warblers with their distinctive descending call. The sound of cuckoo and displaying Snipe are also prominent, and a Bittern booms about midway through the recording.</p>',21112,124,NULL,NULL,21834);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21349,'Morning by the Brook','morning-by-the-brook','publish','58.864246','25.513459','Estonia','near Kirna',NULL,'2022-04-12',23892,23776,381,361,360,'<p>Rich spring chorus featuring the sounds of cuckoo, chaffinch and the drumming of a woodpecker. Occasional background sounds from a nearby farm.</p>',21000,424,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21348,'Wolf Howling','wolf-howling','publish','58.468868','26.185084','Estonia','Alam-Pedja Nature Reserve',NULL,'2022-04-12',23892,23776,381,364,374,'<p>In the largest wilderness reserve in Estonia, the howl of a lone wolf fills the summer air.</p>',21116,50,NULL,NULL,24055);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21347,'Cranes - Autumn Migration','cranes-autumn-migration','publish','58.81568','23.781051','Estonia','Matsalu National Park',NULL,'2022-04-12',23892,23776,381,362,360,'<p>Eurasian Cranes, after roosting overnight by the Matsalu bay, head out to feed in the nearby fields and grasslands.</p>',21114,66,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21346,'Sunrise on the Swamp','sunrise-on-the-swamp','publish','58.437053','27.125119','Estonia','Emajõe Suursoo Nature Reserve, Tähemaa',NULL,'2022-04-12',23892,23776,382,366,360,'<p>In this early morning recording you can hear the sounds from the swamps of Emajõe Suursoo (meaning: Great Bog of the Mother River) and also from the surrounding forest. Common Toads and Moor Frogs softly croak in the foreground, while in the distance Reed Bunting, Great Snipe, Cuckoos, & Savi’s Warbler call, and a swimming Beaver paddles across the wetland.</p>',21071,223,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21345,'Arctic Divers on Lake Inari','arctic-divers-on-lake-inari','publish','69.018708','27.485061','Finland','Lake Inari',NULL,'2022-04-12',23892,23777,390,368,386,'<p>A family of Arctic Divers call as they swim on the the lake.</p>',21117,185,NULL,NULL,21870);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21344,'Underwater Mystery','underwater-mystery','publish','58.091464','26.899942','Estonia','near Hilba',NULL,'2022-04-12',23892,23776,382,365,386,'<p>Underwater recording, made with hydrophones submerged just a few centimetres in a shallow stream. The source of sound is unknown, probably underwater insects.</p>',21072,93,NULL,NULL,21824);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21343,'Dawn on Mount Lewis','dawn-on-mount-lewis','publish','-16.56770485','145.3051321','Australia','Mount Lewis, Queensland',NULL,'2022-04-12',23697,23731,387,366,360,'<p>Recorded at dawn in mid-altitude rainforest on Mount Lewis. Wompoo Fruit Doves & Pacific Emerald Doves call throughout, along with the sounds of White-throated Treecreeper, Noisy Pitta and Victoria’s Riflebird.</p>',21006,150,NULL,NULL,24042);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21342,'Eubenangee Rainforest','eubenangee-rainforest','publish','-17.42856195','145.9849111','Australia','Eubenangee Swamp, Queensland',NULL,'2022-04-12',23697,23675,382,365,360,'<p>Yellow Orioles are the dominant species calling with their magical liquid fluty sounds filling the humid air.</p>',21076,174,NULL,NULL,24049);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21341,'Matapa Bush Soundscape','matapa-bush-soundscape','publish','-18.9652765','-169.886501','Niuē','near Matapa Chasm',NULL,'2022-04-12',23893,23744,380,366,375,'<p>Excerpt from sound journey around this remote South Pacific island.</p>',21118,263,NULL,NULL,21844);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21340,'Kalaone Reef','kalaone-reef','publish','-19.080448','-169.9462009','Niuē','Kalaone Reef',NULL,'2022-04-12',23893,23744,380,366,375,'<p>Excerpt from sound journey around this remote South Pacific island.</p>',21075,240,NULL,NULL,21811);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21339,'Post Office Bay','post-office-bay','publish','-46.9261885','168.129314','New Zealand','Post Office Bay, Ulva Island',NULL,'2022-04-12',23893,23877,380,366,375,'<p>The soothing sounds of waves at Post Office Bay on Ulva Island, one of New Zealand’s few remaining havens of undisturbed natural podocarp forest.</p>',21119,420,NULL,NULL,21805);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21338,'Tawharanui Morning','tawharanui-morning','publish','-36.3600829','174.7812569','New Zealand','Tawharanui Regional Park',NULL,'2022-04-12',23893,23877,380,366,360,'<p>Enchanting chorus from a group of Tui, one of New Zealand’s beautiful native bird species.</p>',21113,420,NULL,NULL,27703);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21337,'Aroha Evening','aroha-evening','publish','-35.2157187','173.9596439','New Zealand','Aroha Island',NULL,'2022-04-12',23893,23877,381,366,371,'<p>In this evening soundscape, crickets call gently and Kiwi & Ruru (Ninox novaeseelandiae) occasionally call in the distance.</p>',21074,900,NULL,NULL,24055);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21336,'Hauturu Afternoon','hauturu-afternoon','publish','-36.1928853','175.0688028','New Zealand','Hauturu Island',NULL,'2022-04-12',23893,23877,380,361,360,'<p>Hauturu Island supports the most diverse assemblage of native fauna of any island in New Zealand. This soundscape includes the calls of tui, bellbird & kokako and represents an important record of what New Zealand must have sounded like before the invasion of introduced species.</p>',21121,1050,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21335,'Common Eiders Displaying','common-eiders-displaying','publish','60.462666','-0.886268','Scotland','Shetland Islands',NULL,'2022-04-12',23894,23693,380,362,360,'<p>One of nature’s more comical sounds. Has been described as sounding like grannies gossipping over a fence!</p>',21080,71,NULL,NULL,21838);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21334,'Yosemite Dawn Chorus','yosemite-dawn-chorus','publish','37.5134','-119.598933','USA','Mariposa Grove, Yosemite National Park',NULL,'2022-04-12',23895,NULL,381,366,360,'<p>Vibrant dawn chorus recoded amongst Giant Sequoias.</p>',21115,110,NULL,NULL,26154);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21332,'Woodcocks and Spring Peepers','woodcocks-and-spring-peepers','publish','41.830657','-73.799508','USA','Connecticut',NULL,'2022-04-12',23897,NULL,381,366,360,'<p>A male Woodcock (Scolopax minor) performs a ritual flight from one side of the microphone to the other, while Spring Peepers (Pseudacris crucifer) sing from a small pond nearby.</p>',21073,99,NULL,NULL,21856);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21331,'Moose Encounter','moose-encounter','publish','46.71937244','-60.3571527','Canada','Cape Breton Highlands, Nova Scotia',NULL,'2022-04-12',23897,23744,381,366,374,'<p>I was recording the dawn chorus over the lake when a female moose and her calf started to approach the microphone… listen to hear the whole story.</p>',21124,305,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21330,'Beaver Conversation','beaver-conversation','publish','59.804189','16.356484','Sweden','near Skultuna',NULL,'2022-04-12',23898,23843,382,366,374,'<p>One beaver is eating when another beaver comes by and they start to “talk” to each other.</p>',21077,158,NULL,NULL,21841);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21329,'A Night in the Wild','a-night-in-the-wild','publish','59.81486','15.954633','Sweden','Stora Flyten Nature Reserve',NULL,'2022-04-12',23898,23843,381,364,360,'<p>Exceptional recording of Black-throated Loons calling at night on a lake. The reverberation is amazing. It gets even better when a family of wolves join in and start howling.</p>',21011,93,NULL,NULL,24055);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21328,'Marsh in the Morning','marsh-in-the-morning','publish','52.0099','21.3536','Poland','Całowanie Marsh Reserve, Mazovia',NULL,'2022-04-12',23899,23675,382,368,369,'<p>Amongst the sounds of frogs you can hear Sedge Warblers, Nightingales, Rosefinches and other birds.</p>',21123,185,NULL,NULL,21813);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21327,'Garden Warbler and Blackcap','garden-warbler-and-blackcap','publish','53.6751','16.2427','Poland','Czaplinek, West Pomerania',NULL,'2022-04-12',23899,23675,381,366,360,'<p>A Garden Warbler and Blackcap sing to a background of insect sounds. Recorded on post-glacial highland terrain.</p>',21079,268,NULL,NULL,21862);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21326,'Winter on the Warta River','winter-on-the-warta-river','publish','51.9906','18.7687','Poland','Uniejów',NULL,'2022-04-12',23899,23748,382,366,376,'<p>A group of Mute Swans quietly drift on the Warta river during a snowy winter. Amongst their calls and sounds of preening, you can also hear the delicate sound of snowflakes falling on the microphones from trees above.</p>',21126,210,NULL,NULL,27435);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21325,'Fire-bellied Toads','fire-bellied-toads','publish','51.4757','20.1905','Poland','Inowłódz',NULL,'2022-04-12',23899,23675,382,367,369,'<p>A few fire-bellied toads calling from pond water with blackcap song in a background. recorded in Pilica river valley a lowland river valley.</p>',21082,180,NULL,NULL,21823);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21324,'Black Redstarts','black-redstarts','publish','51.545','20.221','Poland','Inowłódz',NULL,'2022-04-12',23899,23748,381,366,360,'<p>Alarm and contact calls of a Black Redstarts family group recorded on the edge of fresh pine forest near a village in lowland river valley (Pilica river valley).</p>',21083,237,NULL,NULL,21807);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21322,'Atlantic Forest Soundscape','atlantic-forest-soundscape','publish','-24.568826','-48.380113','Brazil','Ribeira Valley, Sao Paulo State',NULL,'2022-04-12',23900,23747,378,368,360,'<p>An astonishing array of birdsong and the beautiful buzz of a hummingbird who crossed the pathway where I was standing several times during the recording.</p>',21129,191,NULL,NULL,24112);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21321,'Singing Humpback Whale','singing-humpback-whale','publish','-18.877158','-174.051475','Tonga','Vavau',NULL,'2022-04-12',23902,23901,380,364,386,'<p>Singing male Humpback Whale recorded in the Vava’u island group of Tonga.</p>',21122,247,NULL,NULL,21838);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21320,'Humpback Virtuoso','humpback-virtuoso','publish','20.508463','-69.773868','Dominican Republic','Silver Bank',NULL,'2022-04-12',23902,23903,380,362,386,'<p>On this day we were able to find and swim with a singing humpback whale. Our guests were in the water literally swimming in the music, and I was able to drift nearby in the tender while dangling our hydrophone in the water.</p>',21081,526,NULL,NULL,21804);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21319,'Dawn Chorus in Monfragüe','dawn-chorus-in-monfraguee','publish','39.813918','-5.925739','Spain','Monfragüe National Park',NULL,'2022-04-12',23904,23675,387,361,360,'<p>Sunrise in one of Spain’s best natural reserves, Monfragüe. Countless birds sing in the cool pre-dawn light.</p>',21084,105,NULL,NULL,21845);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21318,'Hyenas on the Maasai Mara','hyenas-on-the-maasai-mara','publish','-1.49','35.143889','Kenya','Maasai Mara',NULL,'2022-04-12',23904,23675,384,364,374,'<p>Hyenas call at night from around our campsite in the savannah of the Maasai Mara.</p>',21085,144,NULL,NULL,21843);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21317,'African Fish Eagle','african-fish-eagle','publish','-0.764367','36.416139','Kenya','Lake Naivasha National Park',NULL,'2022-04-12',23904,23747,382,368,360,'<p>A pair of African Fish Eagles call to each other beside Lake Naivasha.</p>',21086,84,NULL,NULL,21817);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21316,'Sound of the Autumn Rut','sound-of-the-autumn-rut','publish','42.234219','1.129786','Spain','Serra de Boumort, Lleida',NULL,'2022-04-12',23904,23773,387,362,374,'<p>In autumn, Red Deer stags start their annual ‘rut’. Male deer roar to keep their harem of females together. The females are initially attracted to those males that both roar most often and the loudest.</p>',21132,220,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21315,'Nightingales by the River','nightingales-by-the-river','publish','40.900767','-0.718072','Spain','Obón, Teruel',NULL,'2022-04-12',23904,23773,382,361,360,'<p>Nightingales sing by a flowing river along with other bird species.</p>',21130,307,NULL,NULL,21866);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21314,'Great Hornbills','great-hornbills','publish','13.99386','106.440587','Cambodia','Siem Pang Conservation Area',NULL,'2022-04-12',23905,23744,378,368,360,'<p>Wonderful soundscape featuring a pair of Great Hornbill’s. You can hear the loud, deep wingbeats at 3:57 & again at 4:52, followed by the immensely powerful call at 5:00. Frogs and insects call from the swampy undergrowth in the foreground.</p>',21131,642,NULL,NULL,24067);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21313,'Trolob Niu Sacred Site','trolob-niu-sacred-site','publish','14.206925','107.010223','Cambodia','Virachey National Park',NULL,'2022-04-12',23905,23744,378,362,370,'<p>In Cambodia’s Virachey National Park, locals guided us to the remote Trolob Niu Sacred Site where I made this recording in a swampy clearing surrounded by tall forest.</p>',25184,266,NULL,NULL,24040);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21312,'Forest in Ratanakiri','forest-in-ratanakiri','publish','14.121567','106.670606','Cambodia','Virachey National Park',NULL,'2022-04-12',23905,23744,378,366,371,'<p>Lovely rainforest ambience from Virachey National Park, a key protected area in the north of Cambodia threatened by illegal logging.</p>',21134,361,NULL,NULL,24072);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21311,'Waves in the Gulf of Thailand','waves-in-the-gulf-of-thailand','publish','10.460616','103.75319','Cambodia','Koh Thmei/Ream National Park',NULL,'2022-04-12',23905,23744,380,366,375,'<p>Gentle waves roll against the shores of a tropical island in the Gulf of Thailand, off the coast of southern Cambodia.</p>',21136,305,NULL,NULL,21854);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21310,'Fallow Deer During Rut','fallow-deer-during-rut','publish','51.690716','3.713281','The Netherlands','Burgh-haamstede',NULL,'2022-04-12',23852,23675,381,364,374,'<p>Recording of a fallow deer groaning and snorting during the rut.</p>',24348,345,NULL,NULL,21807);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21309,'American Green Tree Frogs','american-green-tree-frogs','publish','39.1585','-86.387','USA','Monroe County, Indiana',NULL,'2022-04-12',23906,NULL,382,366,369,'<p>Green Frogs were regular callers from this small pond in southern Indiana, but this was the only time I heard such a chorus from multiple individuals.</p>',21008,120,NULL,NULL,21847);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21308,'Dawn Chorus in Surrey','dawn-chorus-in-surrey','publish','51.203','0.4234','England','Surrey',NULL,'2022-04-12',23906,23691,384,366,360,'<p>Woodpigeons call continuously along with the regular call and wingbeat of Pheasant. Many other common garden and countryside species can be heard throughout the recording.</p>',21010,444,NULL,NULL,21847);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21307,'Blackbird Song in the Mountains','blackbird-song-in-the-mountains','publish','45.425835','14.569151','Croatia','Platak, Radesevo',NULL,'2022-04-12',23907,23726,387,366,360,'<p>Tranquil dusk soundscape featuring Blackbirds singing sweetly along with Chaffinch, European Robin and Eurasian Cuckoo.</p>',21137,109,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21306,'Underwater World','underwater-world','publish','45.349793','14.34135','Croatia','Preluk Bay',NULL,'2022-04-12',23907,23726,380,365,375,'<p>Nice underwater hydrophone recording of waves and gentle splashing. Microphones placed at a depth of about one metre, recorded off the coast of Croatia.</p>',21087,69,NULL,NULL,21831);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21305,'Spring by the Rječina River','spring-by-the-rjecina-river','publish','45.416347','14.42217','Croatia','Rječina River',NULL,'2022-04-12',23907,23726,381,368,376,'<p>Relaxing sounds of spring as the Rječina River flows through forest in the mountains of Croatia.</p>',24345,118,NULL,NULL,21866);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21303,'Dawn Chorus near Rijeka','dawn-chorus-near-rijeka','publish','45.371067','14.37565','Croatia','Rijeka',NULL,'2022-04-12',23907,23726,381,361,360,'<p>Dawn chorus in a forest near a small pond. Species recorded include: Nuthatch, European Robin, Blackbird, woodpecker sp., Common Buzzard, Chiffchaff, Eurasian Jay, and a distant Nightingale.</p>',21138,199,NULL,NULL,21823);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21302,'Učka Nature Park','ucka-nature-park','publish','45.202482','14.226079','Croatia','Učka Nature Park',NULL,'2022-04-12',23907,23726,381,366,374,'<p>A Roe Deer barks to a melodic background of Tits (Paridae), European Robin (Erithacus rubecula), Black Woodpecker (Dryocopus martius), Eurasian Jay (Garrulus glandarius) and other birds.</p>',21142,249,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21301,'Amphibian Chorus','amphibian-chorus','publish','50.36442','18.821455','Poland','Zabrze, Silesia',NULL,'2022-04-12',23908,23748,382,366,369,'<p>On this lakeshore in Poland, frogs and toads call for a mate, and a Black Woodpecker drums in the background along with the calls of other bird species.</p>',22842,77,NULL,NULL,21823);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21300,'Song of the Golden Oriole','song-of-the-golden-oriole','publish','50.615571','18.784218','Poland','Jeleniak-Mikuliny Forest',NULL,'2022-04-12',23908,23675,381,361,360,'<p>The mellow, fluty song of Eurasian Golden Oriole is a welcome sign of spring in Europe’s temperate forests.</p>',21140,103,NULL,NULL,21815);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21299,'Forest Full of Woodpeckers','forest-full-of-woodpeckers','publish','50.305527','18.598373','Poland','Las Dąbrowa Forest',NULL,'2022-04-12',23908,23675,381,361,360,'<p>The drumming of Great Spotted and Grey-headed Woodpeckers echo in this temperate forest in early spring.</p>',21160,136,NULL,NULL,21814);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21298,'Łężczok Wetlands Soundscape','lezczok-wetlands-soundscape','publish','50.138543','18.282323','Poland','Łężczok Reserve',NULL,'2022-04-12',23908,23675,382,362,360,'<p>Geese and swan call across the wetland, and acorns occasionally fall down from overhanging oak trees and plop into the water.</p>',21161,112,NULL,NULL,21840);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21296,'Echoes of the Night','echoes-of-the-night','publish','-23.332813','-45.144426','Brazil','Serra do Mar, Ubatuba',NULL,'2022-04-12',23910,23747,378,365,371,'<p>Nocturnal sounds of the Serra do Mar near Ubatuba,</p>',24347,540,NULL,NULL,21866);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21295,'The Voice of the Amazon','the-voice-of-the-amazon','publish','-19.409865','-39.91998','Brazil','near Linhares, Espirito Santo',NULL,'2022-04-12',23910,23719,378,368,360,'<p>The voice of the Screaming Piha is extraordinary. For a relatively small bird it’s call is exceptionally loud and one of the most evocative sounds of the Amazon rainforests.</p>',21159,244,NULL,NULL,24072);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21294,'Serra dos Órgãos Soundscape','serra-dos-orgaos-soundscape','publish','-22.400097','-42.620994','Brazil','Serra dos Órgãos',NULL,'2022-04-12',23910,23719,387,368,360,'<p>A lovely 11 minute recording featuring a thrush (Creamy-bellied Thrush?) singing in Brazil’s Atlantic forest. Especially good after 6:30 when a woodpecker starts drumming.</p>',21145,669,NULL,NULL,21846);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21293,'Gurgles and Plops of Boiling Mud','artist-paint-pots-in-yellowstone','publish','44.54967','-110.808996','USA','Yellowstone National Park, Wyoming',NULL,'2022-04-12',23911,NULL,388,366,376,'<p>Unusual soundscape revealing the gurgles and plops of boiling mud from the ‘Artist’s Paint Pots’ geothermal site in Yellowstone National Park.</p>',21164,286,NULL,NULL,22780);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21292,'Night by an African River','night-by-an-african-river','publish','-19.51929495','29.76003209','Zimbabwe','near Mkoba, Zimbabwe',NULL,'2022-04-12',23912,23841,382,365,369,'<p>Frogs, crickets and other night creatures call in this rich nocturnal soundscape by a river in the midlands of Zimbabwe.</p>',21166,342,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21291,'Lions Roaring Before Dawn','lions-roaring-before-dawn','publish','-19.49166022','29.70724221','Zimbabwe','near Mkoba',NULL,'2022-04-12',23912,23913,384,364,374,'<p>Excellent recording up close (too close?!) and personal with a pride of lions roaring pre-dawn to a backdrop of night bush sounds in the Zimbabwe midlands.</p>',21168,113,NULL,NULL,22803);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21290,'Brent Geese grazing','brent-geese-grazing','publish','53.460322','6.251557','The Netherlands','Schiermonnikoog',NULL,'2022-04-12',23914,23675,380,368,360,'<p>A large group of Black-bellied Brent geese relaxing and eating on the mudflats of the Dutch island of Schiermonnikoog during low tide.</p>',21162,338,NULL,NULL,21857);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21289,'Oropendola Magic','oropendola-magic','publish','-14.657997','-67.659731','Bolivia','Madidi National Park, Franz Tamayo',NULL,'2022-04-12',23914,23744,378,368,360,'<p>About 12 species of Oropendola are found in Central and South America, and each has it’s own complex and beautiful song – this is possibly an Olive Oropendola.</p>',21163,79,NULL,NULL,21863);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21288,'Speckled Chachalaca Chorus','speckled-chachalaca-chorus','publish','-16.198427','-67.737607','Bolivia','Coroico',NULL,'2022-04-12',23914,23744,387,362,360,'<p>At dawn in the Coroico hills, Speckled Chachalacas dominate the soundscape with their antiphonal cackling.</p>',21165,613,NULL,NULL,21845);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21287,'Bryansk Forest Soundscape','bryansk-forest-soundscape','publish','52.43889','34.127984','Russia','near Beryozovka, Bryanskaya',NULL,'2022-04-12',23765,23744,381,366,360,'<p>Deep in the forest, Black, Great Spotted and Middle-spotted Woodpecker call and drum, while Great & Blue Tits sing phrases to welcome the spring.</p>',21167,265,NULL,NULL,21843);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21286,'Two Song Thrushes','two-song-thrushes','publish','58.142556','35.958639','Russia','Tver Region',NULL,'2022-04-12',23765,23744,381,366,360,'<p>The aptly named Song Thrush is famous for it’s melodic calls, and in this recording two birds can be heard singing in late spring. Notice the repeating of song phrases typical of this species.</p>',21170,150,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21285,'Song of the Siberian Rubythroat','song-of-the-siberian-rubythroat','publish','60.396297','120.335503','Russia','near Olyokminsk, Siberia',NULL,'2022-04-12',23765,23744,381,366,360,'<p>The complex and beautiful song of the Siberian Rubythroat (Luscinia calliope).</p>',21148,55,NULL,NULL,24077);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21284,'Yellow-cheeked Gibbons Singing','yellow-cheeked-gibbons-singing','publish','11.420231','107.328254','Vietnam','Cat Tien National Park',NULL,'2022-04-12',23765,23748,378,368,374,'<p>A pair of Yellow-cheeked Gibbons perform their incredible duet song. The male takes the lead with the female joining for intense ‘great call’ after approx 1 minute.</p>',21147,110,NULL,NULL,24042);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21283,'Evening Meadow','evening-meadow','publish','57.079746','30.81513863','Russia','Rdeisky State Reserve, Veliky Novgorod',NULL,'2022-04-12',23765,23744,381,367,360,'<p>Greenshanks make the repetetive -tu-wit’ call, and Black Grouse coo and gurgle in the background, occasionally making their hoarse advertising call. Other bird species include Willow Warbler, Skylark, Reed Bunting & Cuckoo.</p>',21088,170,NULL,NULL,21820);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21282,'Sounds of the Northern Steppes','sounds-of-the-northern-steppes','publish','50.083583','88.432028','Russia','Altai region',NULL,'2022-04-12',23765,23744,387,367,360,'<p>The sounds of Hoopoe, Ruddy Shelduck and Black Kite (and a few cows in the background!) in a stand of riverside forest in the remote Russian northern steppes.</p>',21171,117,NULL,NULL,21807);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21281,'Thrush Nightingale','thrush-nightingale','publish','57.0912122','30.90081646','Russia','Rdeisky State Reserve, Veliky Novgorod',NULL,'2022-04-12',23765,23744,384,366,360,'<p>Common Toads croak gently in the background as a Thrush Nightingale sings it beautiful and very loud song.</p>',21172,235,NULL,NULL,21820);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21280,'Microcosmos Voices','microcosmos-voices','publish','57.00531449','30.69765617','Russia','Rdeisky State Reserve, Veliky Novgorod',NULL,'2022-04-12',23765,23744,381,366,371,'<p>In a Russian meadow, the unusual, wispy rattles of grasshoppers and bush-crickets, along with the sounds of other insects and birds make for a relaxing, gentle rhythm.</p>',21149,198,NULL,NULL,21825);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21279,'Crickets in the Jungle','crickets-in-the-jungle','publish','11.421223','107.427943','Vietnam','Cat Tien National Park',NULL,'2022-04-12',23765,23744,378,362,371,'<p>Crickets and other insects fill the humid night air with their rhythmic pulsing.</p>',21175,70,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21278,'Vargdalen Dawn','vargdalen-dawn','publish','56.036931','13.246909','Sweden','Söderåsen National Park, Ljungbyhed',NULL,'2022-04-12',23915,23843,381,361,360,'<p>Lovely dawn chorus from Söderåsen National Park with the melodies of birds and gentle wind in the background.</p>',21174,248,NULL,NULL,21866);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21277,'Spring is in the...Water!','spring-is-in-the-water','publish','55.967352','13.524273','Sweden','Scania',NULL,'2022-04-12',23915,23843,382,364,376,'<p>Ice booms and cracks on a frozen Swedish lake. Birds sing softly in the background as the winter ice slowly melts and breaks from the warming spring air.</p>',21169,319,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21276,'Small-eared Galagos (Bushbabies)','small-eared-galagos-bushbabies','publish','-3.827388868','35.7390469','Tanzania','Lake Manyara National Park',NULL,'2022-04-12',23906,23890,382,362,360,'<p>In this clip are two exchanges of calls from trees close to the microphone. Between the Galago calls, distant Hippopotamus make their characteristic grunts.</p>',21173,86,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21275,'Elephant Browsing at Night','elephant-browsing-at-night','publish','-7.426378454','35.10113337','Tanzania','Ruaha National Park',NULL,'2022-04-12',23906,23890,383,365,374,'<p>Elephant tearing branches from a small tree. Amid the crashing of vegetation, you can hear the grinding of the Elephant chewing, and some other unexpected sounds I have annotated on the timeline.</p>',21176,285,NULL,NULL,21849);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21274,'Lion Echoes and Bats','lion-echoes-and-bats','publish','-7.683195321','34.65002161','Tanzania','Ruaha National Park',NULL,'2022-04-12',23906,23889,NULL,NULL,NULL,'<p>The roars of distant Lions echo on the walls of the dry riverbed in front of our tent. In the foreground, are the wingbeats of insect-hunting bats.</p>',21141,47,NULL,NULL,21856);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21272,'Little Blowhole','little-blowhole','publish','-34.6869963','150.8589046','Australia','Kiama, NSW',NULL,'2022-04-12',23697,23731,380,366,375,'<p>Not as well-know as the large blowhole near the centre of town, the ‘little blowhole’ can be just as impressive.</p>',21180,157,NULL,NULL,21811);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21271,'Song of the Albert''s Lyrebird','song-of-the-albert-s-lyrebird','publish','-28.38857','153.1078','Australia','Border Ranges National Park, NSW',NULL,'2022-04-12',23697,23731,378,366,360,'<p>Albert’s Lyrebird singing in Antarctic Beech forest – a rare and lesser known cousin to the famous Superb Lyrebird, but with an equally beautiful song.</p>',21181,155,NULL,NULL,24055);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21270,'Winter Woodland','winter-woodland','publish','-29.575463','151.3618529','Australia','Kings Plains National Park, NSW',NULL,'2022-04-12',23697,23731,381,366,360,'<p>Many species of honeyeater call, as well as thornbills, kookaburra, Australian Raven, magpies, butcherbirds and even the cough of an Eastern Grey Kangaroo at 3:52.</p>',21178,265,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21269,'Casuarina Creek','casuarina-creek','publish','-30.73967','152.3925','Australia','Macleay River Valley, NSW',NULL,'2022-04-12',23697,23731,382,366,360,'<p>A small group of Glossy Black Cockatoos use their massive bills to crack open Allocasuarina cones to extract the tiny kernels.</p>',21150,164,NULL,NULL,21870);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21268,'Bushfire in Kakadu','bushfire-in-kakadu','publish','-13.0994887','131.5069906','Australia','Kakadu National Park, NT',NULL,'2022-04-12',23697,23731,384,364,360,'<p>Bushfires are part of the annual cycles in Kakadu. In the dry woodlands and grasslands, controlled burns are carried out in the early dry season to stimulate new plant growth.</p>',21182,320,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21266,'Summer Thunderstorm','summer-thunderstorm','publish','45.426468','14.59867','Croatia','Risnjak National Park',NULL,'2022-04-12',23907,23726,387,363,377,'<p>Moody recording from the mountains of Croatia – rain falling in a forest with crackling, grumbling thunder.</p>',21144,146,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21264,'Rincón de la Vieja Dusk','rincon-de-la-vieja-dusk','publish','10.830039','-85.323987','Costa Rica','Rincón de la Vieja National Park',NULL,'2022-04-12',23916,23733,378,366,360,'<p>Birds sing at the end of the day, while nocturnal species awaken. Howler Monkeys fill the air with their gruff, heavy voices in the distance.</p>',21183,60,NULL,NULL,24040);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21263,'Manuel Antonio Dawn','manuel-antonio-dawn','publish','9.382254','-84.145607','Costa Rica','Manuel Antonio National Park',NULL,'2022-04-12',23916,23840,378,366,360,'<p>A group of squirrel monkeys make playful squeaks and growls from the canopy, as birds start to sing as the new day breaks.</p>',21179,60,NULL,NULL,24042);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21262,'Amphibian Chorus at Night','amphibian-chorus-at-night','publish','10.011369','-85.718422','Costa Rica','Playa Marbella, Pacific Coast',NULL,'2022-04-12',23916,23840,380,365,369,'<p>After a storm, the rhythms of insects and frogs dominate the night soundscape.</p>',21151,300,NULL,NULL,21808);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21261,'A Night on Bat Island','a-night-on-bat-island','publish','10.856193','-85.911627','Costa Rica','Archipiélago Murciélago',NULL,'2022-04-12',23916,23840,380,365,375,'<p>The sounds of waves and insects on an island in the northern part of Costa Rica.</p>',21185,722,NULL,NULL,21859);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21259,'Sabalillo Reserve at Night','sabalillo-reserve-at-night','publish','-3.23924','-72.301941','Peru','Sabalillo Forest Reserve, Amazon',NULL,'2022-04-12',23917,23746,378,365,369,'<p>Recorded at Sabalillo Reserve operated by Project Amazonas. Listen at 0.07 for the sound of what locals call ‘the Barking Frog’.</p>',24307,74,NULL,NULL,22588);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21256,'Where the Jungle Meets the Sea','where-the-jungle-meets-the-sea','publish','-6.828262','105.469028','Indonesia','Ujung Kulon National Park, Java',NULL,'2022-04-12',23918,23675,380,368,360,'<p>Relaxing sounds of gentle waves lapping the shore with the sounds of birds and the singing of rare Silvery Gibbons.</p>',21059,180,NULL,NULL,21808);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21255,'Capercaillie Lekking','capercaillie-lekking','publish','60.75375','26.994228','Finland','Southern Finland',NULL,'2022-04-12',23919,23777,381,368,360,'<p>Close-up recording of a lekking Capercaillie male (Tetrao urogallus).</p>',21187,100,NULL,NULL,22777);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21254,'Bluethroat and Bumblebees','bluethroat-and-bumblebees','publish','69.424683','26.091688','Finland','Karigasniemi','2010-07-14','2022-04-12',23919,23777,384,361,360,'<p>Bluethroat and Bumble Bees in the land of the midnight sun at 1 am.</p>
<p>This recording (or actually the first two minutes of it) won the habitat category in WSRS’s annual competition, and it was also chosen as the overall, Silver Fox, winner of the competition.</p>',21153,373,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21253,'Displaying King Eiders','displaying-king-eiders','publish','70.63622','29.731915','Norway','Båtsfjord harbour',NULL,'2022-04-12',23919,23753,382,362,360,'<p>Flock of displaying King Eider, males giving a soft, vibrating cooing and females a hard chuckling call. Long-tailed Ducks & gulls in background.</p>',21190,46,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21252,'Southern Royal Albatross Displaying','southern-royal-albatross-displaying','publish','-52.5326','169.146349','New Zealand','Campbell Island',NULL,'2022-04-12',23919,23877,384,362,360,'<p>Group of immature Southern Royal Albatrosses (Diomedea e. epomophora) displaying on the grassy slopes of Campbell Island.</p>',21188,134,NULL,NULL,21866);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21250,'The Source of the River Abion','the-source-of-the-river-abion','publish','41.737792','-2.864428','Spain','La Fuentona, Soria',NULL,'2022-04-12',23920,23773,381,361,360,'<p>Part of a series of recordings which mapped and documented the source of one of Spain’s primary river systems, El Duero.</p>',22355,345,NULL,NULL,21879);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21248,'Ice Booming at Dog Lake','ice-booming-at-dog-lake','publish','37.891383','-119.340806','USA','Yosemite National Park, California',NULL,'2022-04-12',23895,NULL,382,366,376,'<p>Amazing sounds of Dog Lake in winter booming loudly and rattling due to variations in air temperature.</p>',21189,70,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21247,'Oakwood Valley Dawn Chorus','oakwood-valley-dawn-chorus','publish','37.86615','-122.5212','USA','Golden Gate National Park, California',NULL,'2022-04-12',23895,NULL,381,366,360,'<p>Species recorded include: Wild Turkey, Black-headed Grosbeak, Swainson’s Thrush and possible Song Sparrow.</p>',21196,103,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21246,'Early Spring in the Sonoran Desert','early-spring-in-the-sonoran-desert','publish','32.079444','-110.06624','USA','Sonoran Desert, Arizona',NULL,'2022-04-12',23667,NULL,383,368,360,'<p>Morning bird song in the Sonoran Desert featuring Gambel’s Quail, Eurasian Collared Dove, Mourning Dove, Cactus Wren & Great-tailed Grackle.</p>',21197,72,NULL,NULL,21842);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21245,'San Pedro River Soundscape','san-pedro-river-soundscape','publish','31.713773','-110.189326','USA','San Pedro River, Arizona',NULL,'2022-04-12',23667,NULL,381,366,376,'<p>Relaxing soundscape of the San Pedro River gurgling accompanied by sweet birdsong.</p>',21194,113,NULL,NULL,21920);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21244,'Desert Cicadas','desert-cicadas','publish','32.079','-110.066','USA','east of Tucson, Arizona',NULL,'2022-04-12',23667,NULL,383,362,370,'<p>Not the 17-year, or even the 13-year type, these cicadas are heard every year although they likely have a 2-3 year life cycle. Possibly Tibicen chiricahua.</p>',21198,63,NULL,NULL,21842);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21243,'Lazy Morning on the Carson River','lazy-morning-on-the-carson-river','publish','39.12942','-119.70621','USA','Carson River, Nevada',NULL,'2022-04-12',23667,NULL,381,368,376,'<p>Tranquil river soundscape with the sounds of gently flowing water and birdsong.</p>',21202,74,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21242,'Quemado Dawn Chorus','quemado-dawn-chorus','publish','34.38449','-108.504931','USA','near Quemado, New Mexico',NULL,'2022-04-12',23667,NULL,384,361,360,'<p>Dawn chorus on the open plains. Features Northern Mockingbird, Ash-throated Flycatcher, Western Kingbird and Eastern Meadowlark.</p>',21200,70,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21241,'Yuba Pass Soundscape','yuba-pass-soundscape','publish','38.858959','-120.120621','USA','Yuba Pass, Sierra Nevada',NULL,'2022-04-12',23921,NULL,387,366,360,'<p>Lovely recording of frogs and birdsong in the Sierra Nevada.</p>',21195,122,NULL,NULL,21878);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21239,'Early Morning at Loch Urr','early-morning-at-loch-urr','publish','55.149843','-3.961014','Scotland','Loch Urr, Dumfries and Galloway',NULL,'2022-04-12',23923,23922,382,366,360,'<p>Beautiful soundscape featuring the display calls of Curlew and the non-vocal drumming flight sounds of Snipe.</p>',24305,268,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21238,'Dawn Chorus at Castle Wood','dawn-chorus-at-castle-wood','publish','55.895096','-2.710043','Scotland','Castle Wood, East Lothian',NULL,'2022-04-12',23923,23922,381,366,360,'<p>Light rain & sweet dawn birdsong along with the barks of two Roe Deer.</p>',21154,153,NULL,NULL,21871);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21237,'Early Morning Forest','early-morning-forest','publish','5.451959','-1.378201','Ghana','Kakum National Park',NULL,'2022-04-12',23900,23841,378,366,360,'<p>“We slept in the forest and woke to film a stunning sunrise from a wooden platform high in the canopy.” Tim Lewis</p>',21208,63,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21236,'American Bittern','american-bittern','publish','44.99148333','-76.54773889','Canada','Purdon Conservation Area, Ontario',NULL,'2022-04-12',23896,23744,382,365,360,'<p>Notice the sound of the bittern gulping and inhaling air before it begins to call. This call is not the typical foghorn boom-type call.</p>',24344,39,NULL,NULL,21840);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21235,'Little Egret Colony','little-egret-colony','publish','45.23738521','8.594786517','Italy','Garzaia di Celpenchio',NULL,'2022-04-12',23924,23675,382,362,360,'<p>Comical gargling, gobbling and chuckling sounds of Little Egret (Egretta garzetta) in a nesting colony in the Garzaia di Celpenchio nature reserve.</p>',21212,242,NULL,NULL,21840);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21234,'Echoes in the Alps','echoes-in-the-alps','publish','46.076389','12.425','Italy','Altopiano del Cansiglio',NULL,'2022-04-12',23924,23675,387,362,374,'<p>Red Deer roaring and fighting on a cold, foggy evening in the Italian Alps. Notice the incredible natural reverberation.</p>',21203,212,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21233,'Jungle Book Forest','jungle-book-forest','publish','27.55287312','84.35482312','Nepal','Chitwan National Park',NULL,'2022-04-12',23697,23747,379,368,360,'<p>Spring birdsong including orioles, barbets, doves, magpie-robins, ioras, coucals, junglefowl and peafowl. The barking alarm call of a large Sambar deer can be heard regularly, a sure sign of a big cat nearby.</p>',21207,227,NULL,NULL,21814);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21232,'Giant Banjo Frog Chorus','giant-banjo-frog-chorus','publish','-33.333397','148.232231','Australia','Backyamma State Forest, NSW',NULL,'2022-04-12',23697,23675,382,364,369,'<p>Giant Banjo Frogs make the deep ‘bonk’ calls. You can also hear the staccato croaks of Spotted Marsh Frog & the higher pitched ‘squelch’ of the Eastern Sign-bearing Froglet.</p>',21089,135,NULL,NULL,26142);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21231,'First Light at Chiltern','first-light-at-chiltern','publish','-36.12687','146.609563','Australia','Chiltern Mt Pilot National Park, VIC',NULL,'2022-04-12',23697,23675,381,368,360,'<p>Recorded at 5:45am in one of Australia’s last remaining box-ironbark woodlands. Australian Magpies, Willie Wagtails and many other species sing in this vibrant dawn chorus.</p>',21209,167,NULL,NULL,21820);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21230,'Nourlangie','nourlangie','publish','-12.864','132.845','Australia','Kakadu National Park, NT',NULL,'2022-04-12',23697,23675,384,366,360,'<p>Species recorded include: Northern Fantail, Silver-crowned Friarbird, Pied Butcherbird, Spangled Drongo and Sandstone Shrike Thrush.</p>',21214,330,NULL,NULL,21867);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21229,'Himalayan Dawn','himalayan-dawn','publish','28.19473203','85.49477329','Nepal','Langtang National Park',NULL,'2022-04-12',23697,23747,387,366,360,'<p>Recorded between 2500m and 3500m in altitude, in a variety of different alpine habitats.</p>',21204,253,NULL,NULL,21829);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21228,'Monsoon Forest Dawn','monsoon-forest-dawn','publish','-12.56569143','131.3108831','Australia','Fogg Dam, NT',NULL,'2022-04-12',23697,23675,382,366,360,'<p>The melodious liquid calls of Yellow Oriole are a feature of this habitat, as are the deep booms of pigeons and fruit doves.</p>',21215,154,NULL,NULL,24049);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21227,'Sunrise by a Billabong','sunrise-by-a-billabong','publish','-23.949606','143.803157','Australia','near Longreach, Queensland',NULL,'2022-04-12',23697,23675,384,366,360,'<p>Pied Butcherbirds, Galahs, Cockatiels and Budgerigars call from the trees surrounding a small billabong (water hole) in Queensland’s arid outback.</p>',21216,204,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21226,'Bukit Fraser - Rainforest Dawn','bukit-fraser-rainforest-dawn','publish','3.718758038','101.7614639','Malaysia','Frasers Hill, Pahang Province',NULL,'2022-04-12',23697,23774,378,365,360,'<p>The cool montane forest hosts a wide diversity of animal and plant species which specialize in this more temperate habitat.</p>',21217,300,NULL,NULL,27374);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21225,'Kinabatangan Dawn','kinabatangan-dawn','publish','5.482','118.2376','Malaysia','Lower Kinabatangan River, Sabah',NULL,'2022-04-12',23697,23774,378,366,360,'<p>Recorded over a period of several days in tropical rainforest on the banks of the Kinabatangan.</p>',21210,352,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21224,'Dawn in the Highlands','dawn-in-the-highlands','publish','-5.809981564','143.9807288','Papua New Guinea','Kumul Lodge, Enga Province',NULL,'2022-04-12',23697,23744,378,366,360,'<p>Mountain Mouse Warblers and other birds sing at dawn in cloud forest in the highlands of Papua New Guinea.</p>',21218,184,NULL,NULL,21809);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21223,'Bellbird Forest','bellbird-forest','publish','-33.005','151.3931','Australia','Watagans National Park, NSW',NULL,'2022-04-12',23697,23731,381,367,360,'<p>Bell Miners tinkle as a backdrop to the songs and lyrebirds, honeyeaters, thornbills, catbirds and many other species.</p>',21219,228,NULL,NULL,27678);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (21222,'Rhythm of Kubah','rhythm-of-kubah','publish','1.617607237','110.2053881','Malaysia','Kubah National Park, Sarawak',NULL,'2022-04-12',23697,23760,378,362,370,'<p>Kubah’s dusk chorus has to be one of the richest bioacoustic experiences on the face of the planet.</p>',21157,428,NULL,NULL,24112);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20868,'Tasmanian Rainforest Stream','tasmanian-rainforest-stream','publish','-41.70655465','146.7855674','Australia','Liffey Falls Forest Reserve, Tasmania',NULL,'2022-04-12',23697,23675,378,368,376,'<p>The relaxing sound of a stream flowing gently through cool, temperate rainforest in the Tasmanian wilderness</p>',20781,339,NULL,NULL,27681);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20867,'Melaleuca Swamp','melaleuca-swamp','publish','-13.5507368','142.6058619','Australia','Cape York, QLD',NULL,'2022-04-12',23697,23731,382,362,360,'<p>The sounds of wetland and woodland birds as recorded on the edge of a melaleuca swamp with an open lilypad-covered lagoon in the background.</p>',20799,263,NULL,NULL,21849);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20865,'Savanna Woodland','savanna-woodland','publish','-14.76876179','142.8485911','Australia','Cape York, QLD',NULL,'2022-04-12',23697,23731,384,368,360,'<p>A morning soundscape from the dry savanna woodlands of central Cape York. The fluty yodeling of a family of Black-backed Butcherbirds fills the warm morning air.</p>',20798,375,NULL,NULL,24069);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20864,'A Morning in Iron Range','a-morning-in-iron-range','publish','-12.66514824','143.2909625','Australia','Kutini-Payamu National Park, QLD',NULL,'2022-04-12',23697,23731,378,361,360,'<p>A morning soundscape from the humid lowland forests of Cape York Peninsula, featuring the sounds of Magnificent Riflebird, Eclectus Parrot and many other species.</p>',20800,363,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20863,'Frogs at Menghuan Lake','frogs-at-menghuan-lake','publish','25.1942462','121.5609363','Taiwan','Yamingshan National Park',NULL,'2022-04-12',23927,23926,382,364,369,'<p>A vibrant chorus of various frog species calling at Menghuan Lake, Taiwan.</p>',22847,290,NULL,NULL,21839);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20862,'Dawn in Plačkův les','dawn-in-plackuv-les','publish','48.9464083','16.5973606','Czech Republic','Plačkův les, Jižní Morava',NULL,'2022-04-12',23929,23928,382,362,360,'<p>Dawn chorus from floodplain forest in South Moravia.</p>',20782,403,NULL,NULL,22587);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20861,'Hornbills & Gibbons','hornbills-and-gibbons','publish','13.05022371','99.27332289','Thailand','Kaeng Krachan National Park',NULL,'2022-04-12',23697,23744,378,368,360,'<p>In the hill forests of Kaeng Krachan National Park, Thailand, White-handed Gibbons sing in the distance, while the heavy wingbeats of hornbills can be heard as they fly into feed on the fruits of a strangler fig.</p>',20783,236,NULL,NULL,24041);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20860,'A Pine by the Sea','a-pine-by-the-sea','publish','61.44420686','21.59901708','Finland','Makholma',NULL,'2022-04-12',23869,23777,380,363,375,'<p>A summer soundscape from Finland. Recorded under a lone pine tree on the shore of Makholma harbour in a gusty, north-westerly wind.</p>',20747,1320,NULL,NULL,21826);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20859,'Great Snipe Displaying','great-snipe-displaying','publish','69.630062','18.494398','Norway','Kvaløya, Tromsø',NULL,'2022-04-12',23754,23753,380,366,360,'<p>Great Snipe displaying in a marsh in northern Norway. The calls of Whimbrel, Arctic Skuas, Common snipe and several passerines can also be heard in the background.</p>',20793,256,NULL,NULL,24057);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20858,'Woodland Birdsong','woodland-birdsong','publish','43.84111','11.816389','Italy','Integral Nature Reserve "Sassofratino"',NULL,'2022-04-12',23924,23675,381,361,360,'<p>Dawn recording in a Integral Nature Reserve managed by the Italian Forestry Service. The recording is part of the SABIOD-Italy project aimed at collecting soundscapes of a series of protected sites in Italy.</p>',20802,72,NULL,NULL,21850);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20856,'Lekking Black Grouse','lekking-black-grouse','publish','61.911646','25.800811','Finland','Putkilahti',NULL,'2022-04-12',23930,23777,382,364,360,'<p>The unusual sounds of lekking Black Grouse (Tetrao tetrixis) is commonly heard in spring in the boreal taiga forests of Finland.</p>',20803,191,NULL,NULL,24048);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20855,'Dawn on the Luangwa River','dawn-on-the-luangwa-river','publish','-12.92320398','31.92366755','Zambia','South Luangwa National Park',NULL,'2022-04-12',23906,23913,383,362,386,'<p>Pre-dawn soundscape featuring the calls of White-browed Coucal, Egyptian Geese, White-crowned Lapwing and Hadeda Ibis along with the splashing of Hippopotamus in the river. The track ends with a loud exchange of Hippopotamus grunts.</p>',20778,303,NULL,NULL,22778);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20854,'Hippos in Kyambura Gorge','hippos-in-kyambura-gorge','publish','-0.136539','30.080953','Uganda','Kyambura Gorge',NULL,'2022-04-12',23757,23889,379,368,374,'<p>The beastly sounds of Hippopotamus in Uganda’s lush Kyambura Gorge.</p>',20795,82,NULL,NULL,21847);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20853,'With the Mountain Gorillas','with-the-mountain-gorillas','publish','-1.067256','29.738716','Uganda','Bwindi Impenetrable National Park',NULL,'2022-04-12',23757,23744,378,366,374,'<p>Vocalizations from an alpha male ‘silverback’ Mountain Gorilla and some of the females in the group.</p>',20780,95,NULL,NULL,21827);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20852,'Midnight in Borneo''s Rainforest','midnight-in-borneo-s-rainforest','publish','4.220107121','114.0802178','Malaysia','Lambir Hills, Sarawak',NULL,'2022-04-12',23697,23870,378,367,369,'<p>This rich natural symphony reflects the incredible biodiversity of Borneo’s rainforest. Recorded in the middle of the night, this recording features the sounds of several frog species, Blyth’s Frogmouth, Great Argus Pheasant, as well as many types of insect.</p>',20804,138,NULL,NULL,24113);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20851,'Dry Creek Bed in the Outback','dry-creek-bed-in-the-outback','publish','-31.03209273','143.0412988','Australia','near White Cliffs, NSW',NULL,'2022-04-12',23759,23731,383,366,360,'<p>Wind blows through a dry river bed lined with River Red Gums. The unique, melodious songs of Spiny-cheeked Honeyeater feature in this outback soundscape.</p>',20749,425,NULL,NULL,21821);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20850,'Dreams of Bears','dreams-of-bears','publish','51.49964','157.037182','Russia','near Kuril Lake, Kamchatka',NULL,'2022-04-12',23765,23744,381,366,374,'<p>A delightful recording capturing the sound of a mother bear and her two cubs breathing gently as they take a nap. In the background, Brown-headed Thrush, Kamchatka Warbler and many other bird species can be heard in this vibrant summer soundscape from Russia’s Kamchatka Peninsula.</p>',20784,618,NULL,NULL,21841);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20849,'Heavy Snowfall in the Beech Forest','heavy-snowfall-in-the-beech-forest','publish','56.06433','13.03008','Sweden','Söderåsen National Park, Ljungbyhed',NULL,'2022-04-12',23915,23843,381,367,376,'<p>Heavy snowflakes fall on dry leaves on the floor of a beech forest. Wind gently roars along the hillside in the background.</p>',20750,134,NULL,NULL,27684);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20848,'Magellanic Penguin Colony','magellanic-penguin-colony','publish','-44.0454','-65.2235','Argentina','Punta Tombo, Chubut Province',NULL,'2022-04-12',23931,23744,380,362,360,'<p>Penguins bray, honk and whistle at the largest Magellanic Penguin colony in the world.</p>',20805,122,NULL,NULL,21865);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20847,'Prairie Soundscape','prairie-soundscape','publish','43.2289362','-95.2373498','USA','Spencer, Iowa',NULL,'2022-04-12',23911,NULL,384,366,371,'<p>A dawn recording made at the Prairie Flower Nursery. This square-mile of Iowa prairie is a combination native tall-grass prairie and restored prairie. The restored area was previously commercial farmed before returning it to something closer to it’s natural origin.</p>',20751,580,NULL,NULL,26453);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20846,'Drumming Wolf Spider','drumming-wolf-spider','publish','57.18295398','31.38301835','Russia','Rdeysky Reserve, Novgorodskaya oblast',NULL,'2022-04-12',23765,23744,381,365,386,'<p>The incredible sound of a male wolf spider (Hygrolycosa rubrofasciata) drumming to attract a mate. These spiders create this rattling sound by striking their abdomen against leaves on the ground.</p>',20806,124,NULL,NULL,21860);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20845,'Dawn in Khao Yai','dawn-in-khao-yai','publish','14.38963247','101.3909376','Thailand','Khao Yai National Park',NULL,'2022-04-12',23697,23750,378,368,360,'<p>The bubbly calls of Pileated Gibbons feature in this early morning recording from Thailand’s rainforest. Large Scimitar Babblers, Asian Fairy Bluebirds and Green-eared Barbets can also be heard.</p>',20819,224,NULL,NULL,22595);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20844,'Weddell Seal Pup','weddell-seal-pup','publish','-67.03194831','142.5760511','Antarctica','Terre Adélie',NULL,'2022-04-12',23767,23766,390,364,386,'<p>A Weddell Seal pup calls for it’s mother on the antarctic ice floe.</p>',20785,159,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20843,'Antarctic Petrels','antarctic-petrels','publish','-71.8834','5.1667','Antarctica','Dronning Maud Land',NULL,'2022-04-12',23769,23766,390,363,360,'<p>A very rare recording of breeding Antarctic Petrels at the largest inland colony in Antarctica of this species. Due to 24h of sunshine and constant frost birds can not leave the egg or young chick during incubation.</p>',26982,60,NULL,NULL,21864);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20841,'Bats Leaving the Roost','bats-leaving-the-roost','publish','43.269309','2.782752','France','Argens-Minervois',NULL,'2022-04-12',23669,23675,381,364,374,'<p>The sound of around 400 bats leaving their roost at twilight.</p>',20752,121,NULL,NULL,22773);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20840,'Midwife Toads','midwife-toads','publish','50.406071','4.913515','Belgium','Namur',NULL,'2022-04-12',23669,23675,384,367,369,'<p>The unusual sounds of Common Midwife Toads (Alytes obstetricans) in the Belgian countryside.</p>',20753,180,NULL,NULL,21831);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20839,'Black Howler Monkey at Night','black-howler-monkey-at-night','publish','16.0944252','-88.8318105','Belize','Punta Gorda',NULL,'2022-04-12',23775,23744,378,364,374,'<p>A Black Howler Monkey bellows high in a tree at night in the rainforest of Belize.</p>',20773,239,NULL,NULL,22664);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20838,'Palawan Forest Ambience','palawan-forest-ambience','publish','10.15626','118.89222','Philippines','Subterranean River National Park, Palawan',NULL,'2022-04-12',23934,23933,380,366,360,'<p>Rainforest ambience from the beautiful Puerto-Princesa Subterranean River National Park in Palawan.</p>',20786,265,NULL,NULL,22789);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20836,'Akcake Waves','akcake-waves','publish','41.158108','29.715164','Turkey','Akçakese',NULL,'2022-04-12',23936,23888,380,366,375,'<p>On Turkey’s Black Sea coast, waves roll in the crystal clear waters and gently break on the beach.</p>',20779,120,NULL,NULL,21801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20835,'Cranes in a Meadow','cranes-in-a-meadow','publish','53.092936','20.416899','Poland','Konskie County',NULL,'2022-04-12',23845,23748,381,364,360,'<p>Delightful 15 minute recording feauturing the trumpeting of Common Cranes (Grus grus) echoing across a meadow in the south of Poland. Roe Deer (Capreolus capreolus) bark and countless birds sing from the forest nearby.</p>',20788,917,NULL,NULL,26145);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20834,'Grazing Bison','grazing-bison','publish','36.732917','-96.379217','USA','Oklahoma',NULL,'2022-04-12',23669,NULL,384,364,374,'<p>At the end of the day, Bison gathered to feed on handouts from a park ranger.</p>',23528,457,NULL,NULL,21819);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20833,'Evening on Lake Langano','evening-on-lake-langano','publish','7.54311','38.80132','Ethiopia','Lake Langano',NULL,'2022-04-12',23937,23688,382,365,371,'<p>Ambient insect life and night sounds near Lake Langano</p>',20789,221,NULL,NULL,21862);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20832,'Yellow-cheeked Gibbons','yellow-cheeked-gibbons','publish','14.037222','106.727222','Cambodia','Siem Pang Conservation Area',NULL,'2022-04-12',23905,23744,378,368,374,'<p>A pair of endangered Yellow-cheeked Gibbons declare their territory in the Siem Pang Conservation Area, Northern Cambodia. Sadly, illegal logging is detroying parts of this forest, & these voices may no longer be heard without positive action being taken soon.</p>',20755,194,NULL,NULL,22789);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20831,'Depot Beach Soundscape','depot-beach-soundscape','publish','-35.62479107','150.3210214','Australia','Murramarang National Park, NSW',NULL,'2022-04-12',23856,23675,380,366,360,'<p>Depot Beach is nestled within the Murramarang National Park about 20 minutes north of Bateman’s Bay in New South Wales. Listen to the abundant birdlife as the waves hit the shore in the background.</p>',20790,180,NULL,NULL,21844);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20830,'Inside the Cenote','inside-the-cenote','publish','20.47356055','-87.72174591','Mexico','Coba, Yucatan',NULL,'2022-04-12',23669,23675,380,365,376,'<p>Water drips inside one of the Yucatan’s cenotes, and the call of a motmot carries from the forest outside.</p>',20756,120,NULL,NULL,21921);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20829,'Dolphin Conversations','dolphin-conversations','publish','19.69632025','-87.36652562','Mexico','Punta Alen',NULL,'2022-04-12',23669,23675,380,362,374,'<p>Underwater recording featuring the complex vocalizations of dolphins – recorded with a hydrophone.</p>',20757,44,NULL,NULL,21804);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20828,'Chacaltaya Thunderstorm','chacaltaya-thunderstorm','publish','-16.348981','-68.127933','Bolivia','Mount Chacaltaya',NULL,'2022-04-12',23669,23744,387,363,377,'<p>At 5300 metres altitude on Bolivia’s Mount Chacaltaya, a thunderstorm brings lightning, thunder, snow and hail.</p>',20758,600,NULL,NULL,25234);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20827,'Ice on Graubünden Lake','graubuenden-lake','publish','46.68078196','9.866674305','Switzerland','Graubünden',NULL,'2022-04-12',23669,23938,382,365,376,'<p>On the surface of the frozen lake, ice melts and crackles …</p>',20774,120,NULL,NULL,27380);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20826,'Windstorm in the Atacama Desert','windstorm-in-the-atacama-desert','publish','-23.364492','-69.858221','Chile','Atacama Desert',NULL,'2022-04-12',23669,23744,383,363,373,'<p>Strong winds rumble in the Atacama Desert, Chile.</p>',20759,121,NULL,NULL,21842);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20825,'Sealions at Iquique','sealions-at-iquique','publish','-20.2088066','-70.16127741','Chile','Puerto Iquique',NULL,'2022-04-12',23669,23744,380,362,386,'<p>A group of South American Sealions call at dusk in the port of Iquique, Chile.</p>',24346,91,NULL,NULL,21801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20824,'Storm in the High Atlas Mountains','storm-in-the-high-atlas-mountains','publish','32.44480131','-5.877944219','Morocco','High Atlas Mountains',NULL,'2022-04-12',23669,23675,387,363,377,'<p>In Morocco’s High Atlas mountain range, a storm closes in with thunder and light rain.</p>',20761,332,NULL,NULL,22801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20823,'Evening on the Gran Sabana','evening-on-the-gran-sabana','publish','5.506541','-61.886245','Venezuela','Gran Sabana',NULL,'2022-04-12',23669,23939,387,365,386,'<p>A distant howl (possibly Crab-eating Fox?) introduces this evening soundscape from Venezuela’s Gran Sabana.</p>',20775,121,NULL,NULL,24039);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20822,'Black Howler Monkey','black-howler-monkey','publish','17.507124','-92.074926','Mexico','Palenque, Chiapas',NULL,'2022-04-12',23669,23675,378,364,374,'<p>A Black Howler Monkey demonstrates it’s extraordinary voice near the Mayan site of Palenque in Mexico.</p>',20762,204,NULL,NULL,24072);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20821,'Frogs on the Niger Delta','frogs-on-the-niger-delta','publish','14.140233','-5.020672','Mali','Diafarabé, Niger Delta',NULL,'2022-04-12',23669,23841,382,365,369,'<p>Toads and frogs are singing at night in the pond, in the center of the small village of Diafarabe, on the Niger river.</p>',20776,60,NULL,NULL,21840);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20820,'Guanaco','guanaco','publish','-54.283906','-67.055876','Argentina','Rio Grande, Tierra de Fuego',NULL,'2022-04-12',23669,23744,387,365,374,'<p>The unusual call of a Guanaco on Tierra del Fuego at the southern tip of South America.</p>',20763,121,NULL,NULL,21810);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20818,'Baby Raccoons','baby-raccoons','publish','45.685389','-93.938122','USA','near Foley, Minnesota',NULL,'2022-04-12',23940,NULL,384,362,374,'<p>Two baby raccoons twitter and squeak near the microphones</p>',20791,60,NULL,NULL,24074);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20817,'Desert Wind','desert-wind','publish','35.86454027','-116.22025','USA','Inyo County, California',NULL,'2022-04-12',23860,NULL,383,363,373,'<p>Strong winds blow across the barren landscape at Tom’s Spring in Tecopa, California, while a Long-eared Owl calls softly in the background.</p>',20792,248,NULL,NULL,21842);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20816,'Padojärv Dawn Chorus','padojaerv-dawn-chorus','publish','58.13814841','27.00622633','Estonia','Põlva County',NULL,'2022-04-12',23941,23776,382,368,360,'<p>Pado lake is on the eastern side of the Meelva bog in south-east Estonia. This recording captures a pleasant mix of bird and frog species during the dawn chorus.</p>',20764,472,NULL,NULL,21822);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20815,'Midnight Chorus','midnight-chorus','publish','58.36216643','26.91696242','Estonia','Ajha River',NULL,'2022-04-12',23941,23776,382,366,360,'<p>Recorded shortly after midnight. In the tree to the right is a Nightingale and in the field to the left is a Corn Crake (Crex crex). Cuckoos and Eurasian bittern call in the distance.</p>',20765,180,NULL,NULL,21878);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20814,'Baltic Sea Thunderstorm','baltic-sea-thunderstorm','publish','58.25972739','24.50271681','Estonia','near Pärnu',NULL,'2022-04-12',23941,23776,380,366,377,'<p>Rolling thunderstorm out at sea, along with the more delicate sounds of light rain and water movement on the shore.</p>',20766,201,NULL,NULL,21801);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20813,'River Flow - Underwater','river-flow-underwater','publish','50.522469','-3.819692','England','Dartmoor, South Devon',NULL,'2022-04-12',23868,23693,384,363,376,'<p>An unusual perspective of a flowing river – recorded underwater using hydrophones.</p>',20767,60,NULL,NULL,21852);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20812,'Cley Marshes','cley-marshes','publish','52.959278','1.064964','England','Cley, North Norfolk',NULL,'2022-04-12',23868,23691,382,362,360,'<p>Sea pounding in the background with lots of different birds calling including Gulls, Oyster Catchers, Meadow Pipit, Canada Geese, Skylark, Pheasant, & Reed Warbler in the distance.</p>',20768,518,NULL,NULL,21874);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20811,'Spring in the Hudson Valley','spring-in-the-hudson-valley','publish','41.792294','-74.277994','USA','Hudson Valley, New York State',NULL,'2022-04-12',23897,NULL,381,366,360,'<p>11AM on a sunny spring morning in New York’s Hudson Valley. The lot next door had been adopted as home by a raucous Red-Bellied Woodpecker and an Eastern Towhee (aka Rufous-sided Townhee). Also on stage are Tufted Titmouse, Chickadee, Crows, White-breasted Nuthatch, and some passing bees.</p>',20769,135,NULL,NULL,24043);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20810,'Insect Symphony','insect-symphony','publish','-24.81338184','-48.33616769','Brazil','Ribeira Valley, Sao Paulo State',NULL,'2022-04-12',23900,23748,378,364,370,'<p>In the heat of the day, cicadas buzz like tiny electric saws in this Amazonian tropical rainforest.</p>',20770,60,NULL,NULL,22779);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20809,'Oropendola Colony','oropendola-colony','publish','-0.995586','-57.112656','Brazil','Amazonas',NULL,'2022-04-12',23900,23675,378,365,360,'<p>A recording of the complex chattering and social relationships of oropendolas at their nesting colony.</p>',20771,180,NULL,NULL,24040);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20808,'Song of Arrivals','song-of-arrivals','publish','56.097529','13.176366','Sweden','Rönneå River, Scania',NULL,'2022-04-12',23915,23843,381,362,360,'<p>The calls of hundreds of Whooper Swans after they arrive to feed on flooded meadows by the river Rönneå.</p>',20777,230,NULL,NULL,21866);
INSERT INTO master-recordings(ID,title,slug,status,lat,lng,region,location,recording_date,publish_date,recordist,charity,habitat,mood,predominant_sound,notes,audio_id,duration,is_livestream,streaming_url,thumbnail_id) VALUES (20807,'Crane Symphony at Lake Hornborga','crane-symphony-at-lake-hornborga','publish','58.284645','13.497342','Sweden','Lake Hornborga, Westgothia',NULL,'2022-04-12',23915,23843,382,362,360,'<p>The sounds of tens of thousands of cranes calling, singing and dancing as they arrive at their spring feeding grounds at Lake Hornborga.</p>',20772,178,NULL,NULL,21847);