-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlist_output.txt
8449 lines (8449 loc) · 571 KB
/
list_output.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=794",
"publishedDate": "15 Nov 2024 00:00:00 GMT",
"description": "Celebrating 100 episodes, ELUCID discusses his REVELATOR LP. Plus new DIBIASE, Mother Nature, Kahj & Versâam, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://elucid.bandcamp.com/album/revelator\">Elucid</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "100 With ELUCID",
"screenImageUrl": "https://f4.bcbits.com/img/37777110_0",
"imageUrl": "https://f4.bcbits.com/img/37777110_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=793",
"publishedDate": "12 Nov 2024 00:00:00 GMT",
"description": "Anaiis chats about recording with Sessa and Luedji Luna. Plus new BADBADNOTGOOD & Tim Bernardes, Silvan Strauss, and L'Eclair.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=https://anaiis.bandcamp.com/album/anaiis-grupo-cosmo>Anaiis</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "A New Voyage",
"screenImageUrl": "https://f4.bcbits.com/img/37754088_0",
"imageUrl": "https://f4.bcbits.com/img/37754088_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=792",
"publishedDate": "08 Nov 2024 00:00:00 GMT",
"description": "Jim Mutilator, a founding father of Hellenic black metal, stops by to talk Rotting Christ, Varathron, and his new band, Yoth Iria.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://edgedcircleproductions.bandcamp.com/album/blazing-inferno\">Yoth Iria</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "But Fear Not",
"screenImageUrl": "https://f4.bcbits.com/img/37710046_0",
"imageUrl": "https://f4.bcbits.com/img/37710046_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=791",
"publishedDate": "05 Nov 2024 00:00:00 GMT",
"description": "Joshua Idehen talks music, mums, and playing for royalty, plus new Herbert, ARTU, Felipe Gordon, Cleo Sol, and more.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://joshuaidehen.bandcamp.com/album/mum-does-the-washing-ep\">Joshua Idehen</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Autumn Dance",
"screenImageUrl": "https://f4.bcbits.com/img/37687498_0",
"imageUrl": "https://f4.bcbits.com/img/37687498_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=790",
"publishedDate": "01 Nov 2024 00:00:00 GMT",
"description": "The great Hemlock Ernst discusses his new LP with Icky Reels. Plus tracks from NanaBcool, Flying Lotus, Sa-Roc, & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://ickyreels.bandcamp.com/album/studying-absence\">Hemlock Ernst</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Studying Samuel",
"screenImageUrl": "https://f4.bcbits.com/img/37649342_0",
"imageUrl": "https://f4.bcbits.com/img/37649342_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=789",
"publishedDate": "29 Oct 2024 00:00:00 GMT",
"description": "Shigeto chats about Detroit, resilience, and making his collaborative new LP. Plus new Sade, Last Poets, and Lenna Bahule.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://shigeto.bandcamp.com/album/cherry-blossom-baby\">Shigeto</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Makin' It Work",
"screenImageUrl": "https://f4.bcbits.com/img/37614588_0",
"imageUrl": "https://f4.bcbits.com/img/37614588_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=788",
"publishedDate": "25 Oct 2024 00:00:00 GMT",
"description": "Nina Saeidi and Shem Lucas from the UK band Lowen join the show to discuss their new album and recommend some horror films.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://lowen.bandcamp.com/album/do-not-go-to-war-with-the-demons-of-mazandaran-2\">Lowen</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "The Embrace of Fire",
"screenImageUrl": "https://f4.bcbits.com/img/37570421_0",
"imageUrl": "https://f4.bcbits.com/img/37570421_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=787",
"publishedDate": "22 Oct 2024 00:00:00 GMT",
"description": "Seun Kuti talks about the new Egpyt 80 LP, plus an exclusive chat with Thandii, and DJ Norsicaa's deep dig! ",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://seunkutiegypt80.bandcamp.com/album/heavier-yet-lays-the-crownless-head\">Seun Kuti</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Deep Digs and New Moves",
"screenImageUrl": "https://f4.bcbits.com/img/37548128_0",
"imageUrl": "https://f4.bcbits.com/img/37548128_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=786",
"publishedDate": "18 Oct 2024 00:00:00 GMT",
"description": "Oklahoma City's Jabee talks about his latest. Plus, fresh cuts from Julius Myth, Oliver the 2nd, Silas Short, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://jabee-mmg.bandcamp.com/album/the-spirit-is-willing-but-the-flesh-is-weak\">Jabee</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Homegrown",
"screenImageUrl": "https://f4.bcbits.com/img/37515223_0",
"imageUrl": "https://f4.bcbits.com/img/37515223_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=785",
"publishedDate": "15 Oct 2024 00:00:00 GMT",
"description": "Danish duo Svaneborg Kardyb and harp-wielding Marysia Osu guest, plus new Rogê, Kokoroko, Jeff Parker, tunng, and Ganavya.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=https://marysiaosu.bandcamp.com/album/harp-beats-dreams>Marysia Osu</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Super Mementos",
"screenImageUrl": "https://f4.bcbits.com/img/37481160_0",
"imageUrl": "https://f4.bcbits.com/img/37481160_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=784",
"publishedDate": "11 Oct 2024 00:00:00 GMT",
"description": "For the Metal Show's 100th episode, host Brad Sanders talks about the show's history and interviews Undeath frontman Alexander Jones.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://undeath.bandcamp.com/album/more-insane\">Undeath</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "The 100th Episode",
"screenImageUrl": "https://f4.bcbits.com/img/37436987_0",
"imageUrl": "https://f4.bcbits.com/img/37436987_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=783",
"publishedDate": "08 Oct 2024 00:00:00 GMT",
"description": "Super selector Tina Edwards drops a cross-cultural soundclash featuring the Sweden-meets-Senegal duo of Annarella & Django.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/tinaedwards\" target=\"_blank\">Tina Edwards</a>. Illustration of <a href=\"https://annarellaanddjango.bandcamp.com/album/jouer\">Annarella and Django</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Dancing On This",
"screenImageUrl": "https://f4.bcbits.com/img/37415755_0",
"imageUrl": "https://f4.bcbits.com/img/37415755_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=782",
"publishedDate": "04 Oct 2024 00:00:00 GMT",
"description": "Dive into the latest from NYC’s Phiik & Lungs. Plus, new music from Wiseboy Jeremy, Greg Cypher, MERCURY, and more.",
"imageCaption": "<a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://powrecordings.bandcamp.com/album/carrot-season\">Phiik & Lungs</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Carrot Season",
"screenImageUrl": "https://f4.bcbits.com/img/37368465_0",
"imageUrl": "https://f4.bcbits.com/img/37368465_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=781",
"publishedDate": "01 Oct 2024 00:00:00 GMT",
"description": "Lex Amor stops by to talk about her musical beginnings, collaboration and her fantastic new LP ‘Forward Ever’.\n",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=\"https://lexamor.bandcamp.com/album/forward-ever\">Lex Amor</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Best Foot Forward",
"screenImageUrl": "https://f4.bcbits.com/img/37333616_0",
"imageUrl": "https://f4.bcbits.com/img/37333616_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=780",
"publishedDate": "27 Sep 2024 00:00:00 GMT",
"description": "Unto Others frontman Gabriel Franco chats about the band's devilishly catchy new LP and the vagaries of the music industry.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://untootherspdx.bandcamp.com/album/never-neverland-deluxe-edition\">Unto Others</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "Lightning in the Sky",
"screenImageUrl": "https://f4.bcbits.com/img/37287050_0",
"imageUrl": "https://f4.bcbits.com/img/37287050_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=779",
"publishedDate": "24 Sep 2024 00:00:00 GMT",
"description": "Bass-wielding Anna Butterss, LA vocalist Sharada Shashidhar, and the duo Kit Sebastian guest in this week's jam-packed show.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://intlanthem.bandcamp.com/album/mighty-vertebrate\">Anna Butterss</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "This Must Be The Place",
"screenImageUrl": "https://f4.bcbits.com/img/37255851_0",
"imageUrl": "https://f4.bcbits.com/img/37255851_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=778",
"publishedDate": "20 Sep 2024 00:00:00 GMT",
"description": "Awon & Phoniks converse about their new release, \"Golden Era 2.\" Plus new tracks by Lex Amor, Cappo, Pep Love, & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://awonandphoniks.bandcamp.com/album/golden-era-2\">Awon & Phoniks</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "The Classic Duo",
"screenImageUrl": "https://f4.bcbits.com/img/37230145_0",
"imageUrl": "https://f4.bcbits.com/img/37230145_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=777",
"publishedDate": "17 Sep 2024 00:00:00 GMT",
"description": "New music from Brazil to the South China Sea, plus Dave Guy dips into his NY upbringing and Photay is inspired by nature.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://daveguy.bandcamp.com/album/ruby\">Dave Guy</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Native New Yorker",
"screenImageUrl": "https://f4.bcbits.com/img/37199188_0",
"imageUrl": "https://f4.bcbits.com/img/37199188_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=776",
"publishedDate": "13 Sep 2024 00:00:00 GMT",
"description": "Cammie and Dobber Beverly from the Houston progressive metal band Oceans of Slumber talk about their towering new album.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://oceansofslumber.bandcamp.com/album/where-gods-fear-to-speak\">Oceans of Slumber</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "With Hearts Unyielding",
"screenImageUrl": "https://f4.bcbits.com/img/37156036_0",
"imageUrl": "https://f4.bcbits.com/img/37156036_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=775",
"publishedDate": "10 Sep 2024 00:00:00 GMT",
"description": "Allysha Joy and Pale Jay celebrate soulful album releases, plus new tunes by Thandii, Ezra Collective, and Mulatu Astatke.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=https://allyshajoy.bandcamp.com/album/the-making-of-silk>Allysha Joy</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Dropping Keys",
"screenImageUrl": "https://f4.bcbits.com/img/37132545_0",
"imageUrl": "https://f4.bcbits.com/img/37132545_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=774",
"publishedDate": "06 Sep 2024 00:00:00 GMT",
"description": "KeiyaA joins the show to discuss her re-release of the album \"Forever, Ya Girl\". Plus features from Baro, Eligh, Demae, & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://keiyaa.bandcamp.com/album/forever-ya-girl-3\">KeiyaA</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Forever Eva",
"screenImageUrl": "https://f4.bcbits.com/img/37089971_0",
"imageUrl": "https://f4.bcbits.com/img/37089971_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=773",
"publishedDate": "03 Sep 2024 00:00:00 GMT",
"description": "Andy Hay stops by to talk about his album Polaris",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=\"https://andyhay.bandcamp.com/album/polaris\">Andy Hay</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "A Musical Murmuration",
"screenImageUrl": "https://f4.bcbits.com/img/37049643_0",
"imageUrl": "https://f4.bcbits.com/img/37049643_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=772",
"publishedDate": "30 Aug 2024 00:00:00 GMT",
"description": "Karl Sanders and George Kollias stop by to talk about their longstanding collaboration and the devastating new Nile album.",
"imageCaption": " Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://nile.bandcamp.com/album/the-underworld-awaits-us-all\">Nile</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "True Gods of the Desert",
"screenImageUrl": "https://f4.bcbits.com/img/37002510_0",
"imageUrl": "https://f4.bcbits.com/img/37002510_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=771",
"publishedDate": "27 Aug 2024 00:00:00 GMT",
"description": "Galliano make a triumphant return, Rosie Lowe steps out independent-style, plus new Tara Lily, JazzIsDead, Anna Butterss.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=https://galliano.bandcamp.com/album/halfway-somewhere>Galliano</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "The Pleasure Principle",
"screenImageUrl": "https://f4.bcbits.com/img/36978088_0",
"imageUrl": "https://f4.bcbits.com/img/36978088_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=770",
"publishedDate": "23 Aug 2024 00:00:00 GMT",
"description": "The eclectic duo, TiRon & Ayomari join the show to discuss their newest release. Plus tunes from Mati, Darious, Cozzy Ono, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://tironandayomari.bandcamp.com/album/the-adventures-of-tiron-ayomari\">TiRon & Ayomari</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Adventure Time",
"screenImageUrl": "https://f4.bcbits.com/img/36949957_0",
"imageUrl": "https://f4.bcbits.com/img/36949957_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=769",
"publishedDate": "16 Aug 2024 00:00:00 GMT",
"description": "Lord Kaiju from Oxygen Destroyer stops by to discuss the band's ripping new album and the giant monster movies that inspired it.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://oxygen-destroyer.bandcamp.com/album/guardian-of-the-universe\">Oxygen Destroyer</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "Nightmarish Visions",
"screenImageUrl": "https://f4.bcbits.com/img/36886199_0",
"imageUrl": "https://f4.bcbits.com/img/36886199_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=768",
"publishedDate": "13 Aug 2024 00:00:00 GMT",
"description": "Esparanza Spalding chats about her new LP with Milton Nascimento and collab with Nubya Garcia, plus Orlas & Claude Fontaine drop by.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://esperanzaspalding.bandcamp.com/album/milton-esperanza\">Esperanza Spalding</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "The Music Was There",
"screenImageUrl": "https://f4.bcbits.com/img/36857078_0",
"imageUrl": "https://f4.bcbits.com/img/36857078_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=767",
"publishedDate": "09 Aug 2024 00:00:00 GMT",
"description": "Namesbliss new album, \"Lively Experience\" is featured as Album of the Day. Plus tunes from Phonte, Demae, JSWISS, & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://namesbliss.bandcamp.com/album/lively-experience\">Namesbliss</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "LIVELY",
"screenImageUrl": "https://f4.bcbits.com/img/36824131_0",
"imageUrl": "https://f4.bcbits.com/img/36824131_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=766",
"publishedDate": "06 Aug 2024 00:00:00 GMT",
"description": "Guests Lollise and Kampire take us on musical journeys inspired by childhoods full of music from the African diaspora. ",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=https://lollise.bandcamp.com/album/i-hit-the-water>Lollise</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "The Music That Makes Us",
"screenImageUrl": "https://f4.bcbits.com/img/36794562_0",
"imageUrl": "https://f4.bcbits.com/img/36794562_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=765",
"publishedDate": "02 Aug 2024 00:00:00 GMT",
"description": "Decibel editor-in-chief Albert Mudrian joins the show to talk through the first 20 years of the metal magazine's history.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of Albert Mudrian by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "Only Print Is Real",
"screenImageUrl": "https://f4.bcbits.com/img/36754835_0",
"imageUrl": "https://f4.bcbits.com/img/36754835_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=764",
"publishedDate": "30 Jul 2024 00:00:00 GMT",
"description": "Discoveries and new faves from Kaiit, Alvin Cobb, Jr., and Juls Baby plus the shapeshifting sound of Ishmael Ensemble. ",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://ishmaelensemble.bandcamp.com/album/rituals\">Ishmael Ensemble</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "New Sound Rituals",
"screenImageUrl": "https://f4.bcbits.com/img/36731038_0",
"imageUrl": "https://f4.bcbits.com/img/36731038_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=763",
"publishedDate": "26 Jul 2024 00:00:00 GMT",
"description": "UK's Lee Scott joins the show to discuss his new release,\"To Tame A Dead Horse\". Plus features from Dizraeli, Princess Xixi, Sotolish, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://leescott.bandcamp.com/album/to-tame-a-dead-horse\">Lee Scott</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "The Dual Writer",
"screenImageUrl": "https://f4.bcbits.com/img/36700131_0",
"imageUrl": "https://f4.bcbits.com/img/36700131_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=762",
"publishedDate": "23 Jul 2024 00:00:00 GMT",
"description": "James Alexander Bright stops by to chat about his stellar new LP, plus top sounds from the summer and upcoming Fall releases.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. <a href=\"https://jamesalexanderbright.bandcamp.com/album/cool-cool\">James Alexander Bright</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "A Hot Kind of Cool",
"screenImageUrl": "https://f4.bcbits.com/img/36670997_0",
"imageUrl": "https://f4.bcbits.com/img/36670997_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=761",
"publishedDate": "19 Jul 2024 00:00:00 GMT",
"description": "Nicky H. and Famke C. from the Dutch post-punk/black metal band Vuur & Zijde join the show to discuss their debut LP, 'Boezem.'",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://vuurenzijde.bandcamp.com/album/boezem\">Vuur & Zijde</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Fire and Silk",
"screenImageUrl": "https://f4.bcbits.com/img/36630351_0",
"imageUrl": "https://f4.bcbits.com/img/36630351_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=760",
"publishedDate": "16 Jul 2024 00:00:00 GMT",
"description": "Jimetta Rose stops by to talk about her new album 'Things Are Getting Better'.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=https://jimettarosethevoicesofcreation.bandcamp.com/album/things-are-getting-better>Jimetta Rose</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Jimetta Rose",
"screenImageUrl": "https://f4.bcbits.com/img/36608564_0",
"imageUrl": "https://f4.bcbits.com/img/36608564_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=759",
"publishedDate": "12 Jul 2024 00:00:00 GMT",
"description": "Kunde joins the show to discuss his newest release, \"Dandelion\". Plus tunes from Common, Wiki, Lee Scott, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://kundemusic.bandcamp.com/album/dandelion\">Kunde</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Dandelion Wishes",
"screenImageUrl": "https://f4.bcbits.com/img/36575339_0",
"imageUrl": "https://f4.bcbits.com/img/36575339_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=758",
"publishedDate": "09 Jul 2024 00:00:00 GMT",
"description": "Brijean guests hosts, sharing tracks from their new album 'Macro'",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=\"https://brijean.bandcamp.com/album/macro\">Brijean</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Brijean Guest Hosts",
"screenImageUrl": "https://f4.bcbits.com/img/36546910_0",
"imageUrl": "https://f4.bcbits.com/img/36546910_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=757",
"publishedDate": "05 Jul 2024 00:00:00 GMT",
"description": "Marta Gabriel of the long-running Polish heavy metal band Crystal Viper joins the show to chat about their Lovecraft-inspired new LP.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://listenable-records.bandcamp.com/album/the-silver-key\">Crystal Viper</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "Cosmic Forces Overtake",
"screenImageUrl": "https://f4.bcbits.com/img/36486865_0",
"imageUrl": "https://f4.bcbits.com/img/36486865_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=756",
"publishedDate": "02 Jul 2024 00:00:00 GMT",
"description": "Jamie Finlay stops by to talk about his brand new album ‘Sun Dogs.\n",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=\"https://jamiefinlay.bandcamp.com/album/sun-dogs\">Jamie Finlay</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Let The Sun Shine In",
"screenImageUrl": "https://f4.bcbits.com/img/36482754_0",
"imageUrl": "https://f4.bcbits.com/img/36482754_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=755",
"publishedDate": "28 Jun 2024 00:00:00 GMT",
"description": "Musician and producer, RJD2 joins the show to discuss his recent release, \"Visions Out Of Limelight.\" ",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://officialrjd2.bandcamp.com/album/visions-out-of-limelight\">RJD2</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Honoring Bass In Hip Hop",
"screenImageUrl": "https://f4.bcbits.com/img/36448513_0",
"imageUrl": "https://f4.bcbits.com/img/36448513_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=754",
"publishedDate": "25 Jun 2024 00:00:00 GMT",
"description": "Guest hosts Hiatus Kaiyote share new music from their album 'Love Heart Cheat Code'.",
"imageCaption": "Hosted by <a href=\"https://hiatuskaiyote.bandcamp.com/album/love-heart-cheat-code\" target=\"_blank\">Hiatus Kaiyote</a>. Illustration by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Hiatus Kaiyote Guest Host",
"screenImageUrl": "https://f4.bcbits.com/img/36419977_0",
"imageUrl": "https://f4.bcbits.com/img/36419977_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=753",
"publishedDate": "21 Jun 2024 00:00:00 GMT",
"description": "The chimeric vocalist Julie Christmas joins the show to talk about her long-awaited second solo album, 'Ridiculous and Full of Blood.'",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://juliechristmas.bandcamp.com/album/ridiculous-and-full-of-blood\">Julie Christmas</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "Loud; Supernatural",
"screenImageUrl": "https://f4.bcbits.com/img/36376113_0",
"imageUrl": "https://f4.bcbits.com/img/36376113_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=752",
"publishedDate": "18 Jun 2024 00:00:00 GMT",
"description": "Guest host corto.alto is in the hot seat this week celebrating his new project 30/108.",
"imageCaption": "Hosted by <a href=\"https://cortoalto.bandcamp.com/\" target=\"_blank\">corto.alto</a>. Illustration by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "corto.alto guest hosts",
"screenImageUrl": "https://f4.bcbits.com/img/36351718_0",
"imageUrl": "https://f4.bcbits.com/img/36351718_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=751",
"publishedDate": "14 Jun 2024 00:00:00 GMT",
"description": "The innovative creative, Suzi Analogue, joins the show the discuss their recent release, \"ONEZ\". Plus tunes from Tecoby Hines, JUNE!, & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://suzianalogue.bandcamp.com/album/onez\">Suzi Analogue</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Suzi & The Percolator",
"screenImageUrl": "https://f4.bcbits.com/img/36316003_0",
"imageUrl": "https://f4.bcbits.com/img/36316003_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=750",
"publishedDate": "11 Jun 2024 00:00:00 GMT",
"description": "Guests include multidisciplinary artist Violence Gratuite and RAH, enigmatic leader of Afrobeat band the Ruffcats. ",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://hakunakulala.bandcamp.com/album/baleine-a-boss\">Violence Gratuite</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Souvenirs of Summer",
"screenImageUrl": "https://f4.bcbits.com/img/36285367_0",
"imageUrl": "https://f4.bcbits.com/img/36285367_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=749",
"publishedDate": "07 Jun 2024 00:00:00 GMT",
"description": "Intranced frontman James-Paul Luna talks about the Los Angeles heavy metal band's debut LP. Plus, a tribute to the late Brad Raub.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://intranced.bandcamp.com/album/muerte-y-metal\">Intranced</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "Muerte y Metal",
"screenImageUrl": "https://f4.bcbits.com/img/36240952_0",
"imageUrl": "https://f4.bcbits.com/img/36240952_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=748",
"publishedDate": "04 Jun 2024 00:00:00 GMT",
"description": "Featuring new music from The Zawose Queens, Emanative, Forest Law, Beak>, gglum, Ghostpoet, Arnheim, Arjuna Oakes, and more.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=https://thezawosequeens.bandcamp.com/album/maisha>The Zawose Queens</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Another Scorcher",
"screenImageUrl": "https://f4.bcbits.com/img/36216210_0",
"imageUrl": "https://f4.bcbits.com/img/36216210_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=747",
"publishedDate": "31 May 2024 00:00:00 GMT",
"description": "Insightful lyricist Cavalier talks about his newest release, \"Different Type Time.\" Plus tunes from Obed Padilla, Cook Ski & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://cavaliervmc.bandcamp.com/album/different-type-time-2\">Cavalier</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Take Your Time & Enjoy.",
"screenImageUrl": "https://f4.bcbits.com/img/36178477_0",
"imageUrl": "https://f4.bcbits.com/img/36178477_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=746",
"publishedDate": "28 May 2024 00:00:00 GMT",
"description": "Prolific musician JJ Whitefield talks about his meditative LP for Jazzman, plus sunny sounds by Galliano, Rogê, and MAE.SUN.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=https://jazzmanalbums.bandcamp.com/album/the-infinity-of-nothingness>JJ Whitefield</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Solar Breeze",
"screenImageUrl": "https://f4.bcbits.com/img/36146292_0",
"imageUrl": "https://f4.bcbits.com/img/36146292_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=745",
"publishedDate": "24 May 2024 00:00:00 GMT",
"description": "Brian Ortiz stops by to talk about the indigenous Mesoamerican instrumentation and themes of his death/doom project, Tzompantli.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://20buckspin.bandcamp.com/album/beating-the-drums-of-ancestral-force\">Tzompantli</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Our Lands Befouled",
"screenImageUrl": "https://f4.bcbits.com/img/36111874_0",
"imageUrl": "https://f4.bcbits.com/img/36111874_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=744",
"publishedDate": "21 May 2024 00:00:00 GMT",
"description": "Musical polymath Carlos Niño guest hosts the show with a signature selection of energetic space jazz and beyond.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://intlanthem.bandcamp.com/album/placenta\">Carlos Niño</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Carlos Niño Takeover!",
"screenImageUrl": "https://f4.bcbits.com/img/36082233_0",
"imageUrl": "https://f4.bcbits.com/img/36082233_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=743",
"publishedDate": "17 May 2024 00:00:00 GMT",
"description": "LA's Blu joins the show to chat about his recent release, \"Out Of The Blue\". Plus tunes from Jay Lonzo, Sleep Sinatra, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://thenewcolorblu.bandcamp.com/album/out-of-the-blue\">Blu</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "It's The Blu's",
"screenImageUrl": "https://f4.bcbits.com/img/36047714_0",
"imageUrl": "https://f4.bcbits.com/img/36047714_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=742",
"publishedDate": "14 May 2024 00:00:00 GMT",
"description": "We dive into the new Ethio sounds of Esy Tadesse and Jorga Mesfin, plus fresh ARI TSUGI, K.O.G, Ishmael Ensemble, and Jin Ono.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://fperecs.bandcamp.com/album/ahadu\">Esy Tadesse</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Pilgrimage",
"screenImageUrl": "https://f4.bcbits.com/img/36008370_0",
"imageUrl": "https://f4.bcbits.com/img/36008370_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=741",
"publishedDate": "10 May 2024 00:00:00 GMT",
"description": "Wolf Hoffmann, the founding guitarist of German rock icons Accept, celebrates five decades of heavy metal and the band's new LP.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://accept.bandcamp.com/album/humanoid\">Accept</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "Still Restless, Still Wild",
"screenImageUrl": "https://f4.bcbits.com/img/35974188_0",
"imageUrl": "https://f4.bcbits.com/img/35974188_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=740",
"publishedDate": "07 May 2024 00:00:00 GMT",
"description": "LA music scene pillar Kamasi Washington, and new duo MRCY guest, plus fresh gems by Meridian Brothers & Violence Gratuite.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://kamasiwashington.bandcamp.com/album/fearless-movement\">Kamasi Washington</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Children of the Future",
"screenImageUrl": "https://f4.bcbits.com/img/35950682_0",
"imageUrl": "https://f4.bcbits.com/img/35950682_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=739",
"publishedDate": "03 May 2024 00:00:00 GMT",
"description": "Seafood Sam joins the show to discuss his newest album, \" Standing On Giant Shoulders\". Plus features from Brio, Jalen Frazier, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://seafood4sam.bandcamp.com/album/standing-on-giant-shoulders\">Seafood Sam</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Channeling The Greats",
"screenImageUrl": "https://f4.bcbits.com/img/35909851_0",
"imageUrl": "https://f4.bcbits.com/img/35909851_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=738",
"publishedDate": "30 Apr 2024 00:00:00 GMT",
"description": "Golden-voiced Baby Rose and SoCal's Brainstory stop by, plus new music by Sio, Low Leaf, Thom Yorke, and Ezra Collective.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://babyrose.bandcamp.com/album/slow-burn\">Baby Rose</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Spring Has Sprung",
"screenImageUrl": "https://f4.bcbits.com/img/35867940_0",
"imageUrl": "https://f4.bcbits.com/img/35867940_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=737",
"publishedDate": "26 Apr 2024 00:00:00 GMT",
"description": "We step into the realm with vocalist/guitarist Riley Pinkerton (aka The Rat Queen) from the theatrical NYC rockers, Castle Rat.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://seafood4sam.bandcamp.com/album/standing-on-giant-shoulders\">Castle Rat</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "Feed the Dream",
"screenImageUrl": "https://f4.bcbits.com/img/35822398_0",
"imageUrl": "https://f4.bcbits.com/img/35822398_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=736",
"publishedDate": "23 Apr 2024 00:00:00 GMT",
"description": "Isaiah Collier chats about the intensity of playing live. Plus new Kronos Qrt & Georgia Anne Muldrow, Nina Maia, and Mikahl Anthony.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://division81records.bandcamp.com/album/the-almighty\">Isaiah Collier</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Lifting Every Voice",
"screenImageUrl": "https://f4.bcbits.com/img/35798246_0",
"imageUrl": "https://f4.bcbits.com/img/35798246_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=735",
"publishedDate": "19 Apr 2024 00:00:00 GMT",
"description": "Beans joins the show to discuss his album release, \"ZWAARD\". Plus tunes from NxWorries, Summer Sons, Hiatus Kaiyote, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://beansiswack.bandcamp.com/album/zwaard\">Beans</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Not Sword, ZWAARD.",
"screenImageUrl": "https://f4.bcbits.com/img/35760127_0",
"imageUrl": "https://f4.bcbits.com/img/35760127_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=734",
"publishedDate": "16 Apr 2024 00:00:00 GMT",
"description": "Fabiana Palladino stops by to talk about her mesmeric debut LP.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=\"https://fabianapalladino.bandcamp.com/album/fabiana-palladino/\">Fabiana Palladino</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Music For Dreamers",
"screenImageUrl": "https://f4.bcbits.com/img/35728580_0",
"imageUrl": "https://f4.bcbits.com/img/35728580_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=733",
"publishedDate": "12 Apr 2024 00:00:00 GMT",
"description": "Attic frontman Meister Cagliostro talks heavy metal theatrics and the band's long-awaited new album, 'Return of the Witchfinder.'",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://attic-vanrecords.bandcamp.com/album/return-of-the-witchfinder\">Attic</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "Cast Your Spells",
"screenImageUrl": "https://f4.bcbits.com/img/35681512_0",
"imageUrl": "https://f4.bcbits.com/img/35681512_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=732",
"publishedDate": "09 Apr 2024 00:00:00 GMT",
"description": "Writer Emma Warren guest hosts with a South London-heavy selection plus poet MA.MOYO and a mix by Anja Ngozi.",
"imageCaption": "Hosted by <a href=\"https://sweetmachinepublishing.bandcamp.com/merch\" target=\"_blank\">Emma Warren</a>. Illustration by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "Dance Your Way Home",
"screenImageUrl": "https://f4.bcbits.com/img/35660122_0",
"imageUrl": "https://f4.bcbits.com/img/35660122_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=731",
"publishedDate": "05 Apr 2024 00:00:00 GMT",
"description": "NAHreally joins the show to discuss his newest release, \"BLIP\". Plus tunes from SBK, L.Teez and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://theexpert.bandcamp.com/album/blip\">NAHReally</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "yes or NAH?",
"screenImageUrl": "https://f4.bcbits.com/img/35619627_0",
"imageUrl": "https://f4.bcbits.com/img/35619627_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=730",
"publishedDate": "02 Apr 2024 00:00:00 GMT",
"description": "The crew at BBE Music take over the show with a top selection of soulful favorites, classics, and inspirational tunes.",
"imageCaption": "Hosted by <a href=\"https://bbemusic.bandcamp.com/\" target=\"_blank\">BBE Music</a>. Illustration of Peter Adarkwah by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "BBE Music Takeover",
"screenImageUrl": "https://f4.bcbits.com/img/35569563_0",
"imageUrl": "https://f4.bcbits.com/img/35569563_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=729",
"publishedDate": "29 Mar 2024 00:00:00 GMT",
"description": "Liz Selfish and Brenner Moate from the \"bimboviolence\" band BRAT talk about their punishing music and distinctive aesthetic.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://brat504.bandcamp.com/album/social-grace-2\">BRAT</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Ego Death",
"screenImageUrl": "https://f4.bcbits.com/img/35538926_0",
"imageUrl": "https://f4.bcbits.com/img/35538926_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=728",
"publishedDate": "26 Mar 2024 00:00:00 GMT",
"description": "José James & Jharis Yokley talk collabs and community, and sax wiz Josh Johnson goes solo. Plus Turn On The Sunlight and Jane Paknia.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://rainbowblonde.bandcamp.com/\">José & Jharis</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "The Remedy",
"screenImageUrl": "https://f4.bcbits.com/img/35506744_0",
"imageUrl": "https://f4.bcbits.com/img/35506744_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=727",
"publishedDate": "22 Mar 2024 00:00:00 GMT",
"description": "Orlando's finest, Wahid joins the show to discuss his new release, \"Feast, By Ravens\". Plus tunes from Chuck Strangers, Remy Banks and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://wahid.bandcamp.com/album/feast-by-ravens\">Wahid</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Feast, By Ravens",
"screenImageUrl": "https://f4.bcbits.com/img/35469606_0",
"imageUrl": "https://f4.bcbits.com/img/35469606_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=726",
"publishedDate": "19 Mar 2024 00:00:00 GMT",
"description": "Cassie Kinoshi guests, plus a cameo from Amanda Whiting and global sounds from Baby Rose, Maria Chiara Argirò, and Ozoyo. ",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://intlanthem.bandcamp.com/album/gratitude\">Cassie Kinoshi</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Big Sounds!",
"screenImageUrl": "https://f4.bcbits.com/img/35438547_0",
"imageUrl": "https://f4.bcbits.com/img/35438547_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=725",
"publishedDate": "15 Mar 2024 00:00:00 GMT",
"description": "The Swedish multi-instrumentalist Per Wiberg (Spiritual Beggars, ex-Opeth) chats about his ambitious new solo album.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://perwiberg.bandcamp.com/album/the-serpent-s-here\">Per Wiberg</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "Follow the Unknown",
"screenImageUrl": "https://f4.bcbits.com/img/35394088_0",
"imageUrl": "https://f4.bcbits.com/img/35394088_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=724",
"publishedDate": "12 Mar 2024 00:00:00 GMT",
"description": "Brazilian polymath Amaro Freitas chats about recording with Shabaka Hutchings, Brandee Younger, Jeff Parker, and Hamid Drake.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://amarofreitas.bandcamp.com/album/yy\">Amaro Freitas</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Enchanted Rhythms ",
"screenImageUrl": "https://f4.bcbits.com/img/35369854_0",
"imageUrl": "https://f4.bcbits.com/img/35369854_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=723",
"publishedDate": "08 Mar 2024 00:00:00 GMT",
"description": "J.U.I.C.E & All Natural aka CALIsthenics discuss their debut album for Golden State Ent. Plus new MIKE, sonny miles & Cash Lanksy.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://calisthenicshiphop.bandcamp.com/album/calisthenics-prod-by-georgia-anne-muldrow\">CALIsthenics</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "CALIsthenics",
"screenImageUrl": "https://f4.bcbits.com/img/35332739_0",
"imageUrl": "https://f4.bcbits.com/img/35332739_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=722",
"publishedDate": "05 Mar 2024 00:00:00 GMT",
"description": "In the wake of their killer new LP drop, Melbourne-based Mildlife take over the Weekly with a choice selection of tunes.",
"imageCaption": "Hosted by <a href=\"https://mildlife.bandcamp.com/album/chorus\">Mildlife</a>. Illustration of Mildlife by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "The Mildlife Takeover",
"screenImageUrl": "https://f4.bcbits.com/img/35302000_0",
"imageUrl": "https://f4.bcbits.com/img/35302000_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=721",
"publishedDate": "01 Mar 2024 00:00:00 GMT",
"description": "Dis Fig joins the show to talk about her collaborative album with The Body and the crossover between metal and electronic music.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://disfig.bandcamp.com/album/orchards-of-a-futile-heaven\">Dis Fig</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "A Higher Path",
"screenImageUrl": "https://f4.bcbits.com/img/35246890_0",
"imageUrl": "https://f4.bcbits.com/img/35246890_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=720",
"publishedDate": "27 Feb 2024 00:00:00 GMT",
"description": "A Black History Month special with artists highlighting legends and influences, plus Amy Gadiaga drops by with her new EP. ",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://amygadiaga.bandcamp.com/album/all-black-everything\">Amy Gadiaga</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Shouts to the Top",
"screenImageUrl": "https://f4.bcbits.com/img/35218424_0",
"imageUrl": "https://f4.bcbits.com/img/35218424_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=719",
"publishedDate": "23 Feb 2024 00:00:00 GMT",
"description": "UK-based Kid Acne discusses his latest release \"Hauntology Codes\". Plus tunes from Awon, Ol' Burger Beats, Earl Sweatshirt & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://kidacne.bandcamp.com/album/hauntology-codes\">Kid Acne</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Third Time's A Charm",
"screenImageUrl": "https://f4.bcbits.com/img/35173492_0",
"imageUrl": "https://f4.bcbits.com/img/35173492_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=718",
"publishedDate": "20 Feb 2024 00:00:00 GMT",
"description": "In the latest Bandcamp Weekly, Otherly Love Records co-founder Stephen Buono talks about the new Church Chords record. ",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=\"https://churchchords.bandcamp.com/album/elvis-he-was-schlager-lp\">Church Chords</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Take It To Church",
"screenImageUrl": "https://f4.bcbits.com/img/35146988_0",
"imageUrl": "https://f4.bcbits.com/img/35146988_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=717",
"publishedDate": "16 Feb 2024 00:00:00 GMT",
"description": "Laurent Teubl from Chapel of Disease talks about his band's latest (and boldest) step beyond their death metal origins.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://chapelofdisease.bandcamp.com/album/echoes-of-light\">Chapel of Disease</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "Chasing Light",
"screenImageUrl": "https://f4.bcbits.com/img/35102414_0",
"imageUrl": "https://f4.bcbits.com/img/35102414_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=716",
"publishedDate": "09 Feb 2024 00:00:00 GMT",
"description": "Angry Blackmen join the show to discuss their newest release, \"The Legend Of ABM\". Plus tunes from IAMGAWD, Aj Suede and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://deathbombarc.bandcamp.com/album/the-legend-of-abm\">Angry Blackman</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "The Legendary ABM",
"screenImageUrl": "https://f4.bcbits.com/img/35038018_0",
"imageUrl": "https://f4.bcbits.com/img/35038018_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=715",
"publishedDate": "06 Feb 2024 00:00:00 GMT",
"description": "Special guests Helado Negro, the Discodelic label, and The Sorcerers grace the show with new tunes and stories, plus winter warmers!",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://heladonegro.bandcamp.com/album/phasor\">Helado Negro</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "In Sounds From Way Out",
"screenImageUrl": "https://f4.bcbits.com/img/34995655_0",
"imageUrl": "https://f4.bcbits.com/img/34995655_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=714",
"publishedDate": "02 Feb 2024 00:00:00 GMT",
"description": "GUHTS vocalist Amber Gardner stops by to chat about the NYC post-metal band's debut album and the regenerative power of music.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://guhts.bandcamp.com/album/regeneration\">GUHTS</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "Silence My Heart",
"screenImageUrl": "https://f4.bcbits.com/img/34948587_0",
"imageUrl": "https://f4.bcbits.com/img/34948587_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=713",
"publishedDate": "30 Jan 2024 00:00:00 GMT",
"description": "Featuring TAMTAM from Japan and prolific musician and producer Charif Megarbane, plus Sly 5th Ave, Elpac, and Fabiana Palladino. ",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://tamtam.bandcamp.com/album/ramble-in-the-rainbow\">Tam Tam</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "The Winter Shuffle",
"screenImageUrl": "https://f4.bcbits.com/img/34917769_0",
"imageUrl": "https://f4.bcbits.com/img/34917769_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=712",
"publishedDate": "26 Jan 2024 00:00:00 GMT",
"description": "UllNevaNo joins the show to discuss his recent releases. Plus some features from BlaaqGold, Mo Kolours, Oddisee, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://magnetikmoments.bandcamp.com/track/november-23\">UllNevaNo</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Hip Hop & Basketball",
"screenImageUrl": "https://f4.bcbits.com/img/34879189_0",
"imageUrl": "https://f4.bcbits.com/img/34879189_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=711",
"publishedDate": "23 Jan 2024 00:00:00 GMT",
"description": "Daudi Matsiko chats about his stellar new LP, Carlos Niño drops a guest mix, plus Don Melody Club, Air Space, and Thee Heart Tones.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://hellodaudi.bandcamp.com/album/the-king-of-misery\">Daudi Matsiko</a> by <a href=\"https://www.behance.net/NoopurChoksi?locale=en_US\" target=\"_blank\">Noopur Choksi</a>.",
"subtitle": "Freedom Sounds",
"screenImageUrl": "https://f4.bcbits.com/img/34846305_0",
"imageUrl": "https://f4.bcbits.com/img/34846305_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=710",
"publishedDate": "19 Jan 2024 00:00:00 GMT",
"description": "The Swedish musician Linnea Hjertén stops by to talk about the creation of her mesmerizing, voice-centered new solo album.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://linneahjerten.bandcamp.com/album/nio-systrar\">Linnea Hjertén</a> by <a href=\"https://www.nataliefoss.co.uk\" target=\"_blank\">Natalie Foss</a>.",
"subtitle": "The Way In",
"screenImageUrl": "https://f4.bcbits.com/img/34797407_0",
"imageUrl": "https://f4.bcbits.com/img/34797407_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=709",
"publishedDate": "16 Jan 2024 00:00:00 GMT",
"description": "Head-turning new sounds from around the world, including Ghanaian guest Delasi, plus TAMTAM, Church Chords, Sternpost, and more.",
"imageCaption": "Hosted by <a href=\"http://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://delasi.bandcamp.com/album/audacity-of-free-thought-2\">Delasi</a> by <a href=\"https://www.hsiaoroncheng.com/\">Hsiao-Ron Cheng</a>.",
"subtitle": "New Faces New Sounds",
"screenImageUrl": "https://f4.bcbits.com/img/34773521_0",
"imageUrl": "https://f4.bcbits.com/img/34773521_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=708",
"publishedDate": "12 Jan 2024 00:00:00 GMT",
"description": "Jamil Honesty joins the show for the first episode of the year. Plus features from Big Hit, Childz, Bun B & more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://jamilhonesty.bandcamp.com/album/give-us-our-daily-bread-3\">Jamil Honesty</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "Honesty First",
"screenImageUrl": "https://f4.bcbits.com/img/34733787_0",
"imageUrl": "https://f4.bcbits.com/img/34733787_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=707",
"publishedDate": "09 Jan 2024 00:00:00 GMT",
"description": "Mo Kolours stops by to talk about his new album 'Original Flow'.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/alygillani\" target=\"_blank\">Aly Gillani</a>. Illustration of <a href=\"https://mokolours.bandcamp.com/album/original-flow-chapter-two\">Mo Colors</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Go With The Flow",
"screenImageUrl": "https://f4.bcbits.com/img/34704003_0",
"imageUrl": "https://f4.bcbits.com/img/34704003_25.jpg"
},
{
"type": "show",
"name": "The Metal Show",
"url": "https://bandcamp.com/?show=706",
"publishedDate": "05 Jan 2024 00:00:00 GMT",
"description": "Yfel guitarist Ryan Atkins stops by to talk about the Ohio black metal band's urgent, coal mining-inspired debut album.",
"imageCaption": "Hosted by <a href=\"https://daily.bandcamp.com/best-metal\"_blank\">Brad Sanders</a>. Illustration of <a href=\"https://yfel.bandcamp.com/album/beneath-the-mountains-vigil\">Yfel</a> by <a href=\"https://www.louisezpomeroy.com/\" target=\"_blank\">Louise Pomeroy</a>.",
"subtitle": "The Souls of Men",
"screenImageUrl": "https://f4.bcbits.com/img/34625856_0",
"imageUrl": "https://f4.bcbits.com/img/34625856_25.jpg"
},
{
"type": "show",
"name": "Bandcamp Weekly",
"url": "https://bandcamp.com/?show=705",
"publishedDate": "19 Dec 2023 00:00:00 GMT",
"description": "Tara Clerkin Trio, Kassa Overall, Gilles Peterson, and Aly Gillani join Andrew as we enjoy faves from 2023.",
"imageCaption": "Hosted by <a href=\"https://bandcamp.com/andrewjervis\" target=\"_blank\">Andrew Jervis</a>. Illustration of <a href=\"https://taraclerkintrio.bandcamp.com/album/on-the-turning-ground\">Tara Clerkin Trio</a> by <a href=\"http://www.paulgrelet.com/\" target=\"_blank\">Paul Grelet</a>.",
"subtitle": "Best of 2023, The Big Playback",
"screenImageUrl": "https://f4.bcbits.com/img/34506639_0",
"imageUrl": "https://f4.bcbits.com/img/34506639_25.jpg"
},
{
"type": "show",
"name": "The Hip Hop Show",
"url": "https://bandcamp.com/?show=704",
"publishedDate": "15 Dec 2023 00:00:00 GMT",
"description": "H31R joins the show to discuss their new release \"HeadSpace\". Plus features from Dirty Art Club, DONNY, AKAI SOLO, and more.",
"imageCaption": "Hosted by <a href=\"https://stoneycreation.bandcamp.com/\"_blank\">Stoney Creation</a>. Illustration of <a href=\"https://h31r.bandcamp.com/album/headspace\">H31R</a> by <a href=\"https://mckayfelt.site/\"_blank\">McKay Felt</a>.",
"subtitle": "The Mental Headspace",
"screenImageUrl": "https://f4.bcbits.com/img/34477163_0",