-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathartists_json.json
More file actions
1030 lines (1030 loc) · 57.2 KB
/
artists_json.json
File metadata and controls
1030 lines (1030 loc) · 57.2 KB
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
{
"artists": [
{
"id": "59013a15-d528-44c3-850a-1a2c4ac0d46a",
"name": "Adrian Clark",
"sort_name": "Adrian Clark",
"summary": "Hailing from Albury/Wodonga, this Indie Singer-Songwriter, Adrian Clark, will take you on a journey through heartache and out the other side. A new twist on the old classic, let this one man, percussive guitar show, tell you a story about life, music, love and beyond",
"image_name": "AdrianClark",
"website": "https://www.adrianclarkmusic.com.au/",
"youtube": "https://www.youtube.com/channel/UCFSBkul8fqGNz38clOH4VZw",
"itunes": "https://music.apple.com/us/artist/adrian-clark/1453021587",
"soundcloud": "https://soundcloud.com/adrian-clark-music",
"facebook": "https://www.facebook.com/artist.adrian.clark",
"twitter": "",
"instagram": "https://www.instagram.com/adrian.r.clark/",
"spotify": "https://open.spotify.com/artist/2f6F5wBEI9NlYNWfGzSIXY",
"created_at": "2023-01-04T17:18:33.433+11:00",
"updated_at": "2023-01-31T15:22:27.945+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "3c609d6b-b46c-4b70-9982-f698cdd453f7",
"name": "Ailsa Mitchell",
"sort_name": "Ailsa Mitchell",
"summary": "Award winning singer-songwriter, Ailsa, has a piercingly beautiful voice and an old world sound that pairs well with knitted cardigans, long car rides and a place by the fire on a frosty\nday. Inspired by the natural world and the diverse music scene that surrounds her, she draws heavily from Celtic and contemporary folk music.",
"image_name": "AilsaMitchell",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-02-13T14:35:42.329+11:00",
"updated_at": "2023-02-13T15:57:19.024+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "5746336c-803d-46d6-93ec-7564f84686f3",
"name": "Asha Bright",
"sort_name": "Asha Bright",
"summary": "Asha has always sung. From age 11 Asha was singing Jazz at a music Academy in Wangaratta, touring throughout Australia. By 14 she had formed her first band ‘The Inner Vision’, recording an EP and touring in the UK. This included ‘The Fleece’ in Bristol as part of the Dreamfields. By 2020 Asha decided to focus on her solo project and released her Debut single ‘Burnt Toast and Marmalade’ winning several awards with a 4 star review from Dave Ruby Howe on Triple J Unearthed.",
"image_name": "AshaBright",
"website": "",
"youtube": "https://music.youtube.com/channel/UCyC2vbgjbSni7Yo6BS0h0cQ",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/thisisashabright/",
"twitter": "",
"instagram": "https://www.instagram.com/thisisashabright/?hl=en",
"spotify": "https://open.spotify.com/artist/6DSQUzYi0yJkvxpBE18RxX?dl_branch=1\u0026nd=1",
"created_at": "2023-02-13T14:38:46.373+11:00",
"updated_at": "2023-02-13T14:38:46.373+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "c49cbb44-5ed5-4a1c-bc73-c019ff0a9928",
"name": "Bad Ibis",
"sort_name": "Bad Ibis",
"summary": "We're still waiting on some more details here… we'll update you soon!",
"image_name": "BadIbis",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-03-07T20:45:24.897+11:00",
"updated_at": "2023-03-07T20:45:24.897+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "fb39db77-f753-4c6d-a35a-ce0797eb5f49",
"name": "The Beez",
"sort_name": "Beez",
"summary": "The Beez yodellin', thigh slappin', lederhosen wettin' dance fest of German flavoured music featuring Deta C. Rayner (accordion, vocals) and Rob Rayner (guitar, vocals). Thrill to comic classics from Rammstein to Kraftwerk; tear off that dirndl and shake a Teutonic Tailfeather to Nena's 99 Red Balloons, jive to Germafied Oz Rock Classics from Oils to Icehouse but, most of all, be entertained- that's an order!",
"image_name": "TheBeez",
"website": "www.thebeez.de",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/thebeezfromberlin/?fref=ts",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T11:16:29.932+11:00",
"updated_at": "2023-01-10T09:55:39.248+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "dd35ec5c-6065-4522-9350-f8bfbe260393",
"name": "Blue Moon Marquee",
"sort_name": "Blue Moon Marquee",
"summary": "Blue Moon Marquee perform original compositions influenced by anything that swings, jumps or grooves. Carving a path through blues, jazz, jump jive, folk, country, swing and Indigenous soul, their sound defies categorisation. It stomps and struts through the wilds, conjuring a blend where Howlin’ Wolf tangos with Django, Ernest Tubb shoots firecrackers with Cab Calloway, and Memphis Minnie throws dice with Screamin’ Jay Hawkins. ",
"image_name": "BlueMoonMarquee",
"website": "https://bluemoonmarquee.com/",
"youtube": "https://www.youtube.com/BlueMoonMarquee",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/bluemoonmarquee/",
"twitter": "",
"instagram": "https://www.instagram.com/bluemoonmarquee/",
"spotify": "https://open.spotify.com/artist/6bVy3C1kw2FPWgpLcoBWk1?si=HNosJKLsQV2TSikux4eERw",
"created_at": "2023-01-04T17:19:59.823+11:00",
"updated_at": "2023-01-10T09:59:25.801+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "c7448b2e-8690-42cb-b533-cd085abb135c",
"name": "The Burning Hell",
"sort_name": "Burning Hell",
"summary": "The Burning Hell is the ongoing musical project of songwriter Mathias Kom (guitar) and Ariel Sharratt (saxophone, bass, drums), based in Prince Edward Island, Canada, and joined for their Australian tour in 2023 by Maria Peddle from Newfoundland (violin, saxophone, keys, bass, drums). Their densely populated genre-shifting songs are packed with an abundance of literary, historical, cultural, and pop-cultural forebears, stories and hooks. They move with heavy rhyme and a light step, incorporating a frequent fixation on apocalypse and ruin into work that celebrates participation in a surprising and even occasionally beautiful world. Which is to say they’re good dance partners and they want to dance with you",
"image_name": "TheBurningHell",
"website": "https://www.wearetheburninghell.com/",
"youtube": "https://www.youtube.com/user/burninghellofficial",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/theburninghell",
"twitter": "https://twitter.com/theburninghell",
"instagram": "https://www.instagram.com/theburninghellband/",
"spotify": "https://open.spotify.com/artist/09kohMK0MSHgpmKWiQeQ5E",
"created_at": "2023-01-05T12:03:32.676+11:00",
"updated_at": "2023-03-10T08:39:23.834+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "3dc0f7bc-6963-4165-9983-721a86d386a8",
"name": "Candice McLeod",
"sort_name": "Candice McLeod",
"summary": "Her live performances have been described as endearing; her 2017 debut album, raw and real. Candice McLeod is a modern-folk songstress, with ten years of road-life up her sleeve. Quickly stitching herself within the fabric of Yackandandah's (VIC) community three years ago, she continues to grow as a soulful weaver of vulnerability and strength through song. ",
"image_name": "CandiceMcLeod",
"website": "",
"youtube": "https://youtu.be/SKXeeIWbgL4",
"itunes": "",
"soundcloud": "",
"facebook": "www.facebook.com/candicemcleodmusic",
"twitter": "",
"instagram": "www.instagram.com/candicemcleodmusic ",
"spotify": "",
"created_at": "2023-01-04T17:24:58.574+11:00",
"updated_at": "2023-01-04T17:24:58.574+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "e287a74b-0ef7-46e9-8c99-6e82d4953bb6",
"name": "Cat Canteri",
"sort_name": "Cat Canteri",
"summary": "Renowned songwriter Cat Canteri intertwines bold guitar with poignant and poetic lyrics to create music that’s both fragile and life affirming. With a disarming stage presence her songs document real life situations and experiences with a brave, personal and candid honesty. Her latest album ‘Inner North’ was described as \"An impressive work of song writing mastery\" (The Music Below USA) and was nominated in The Age Music Victoria Awards for Best Folk/Roots Album.",
"image_name": "CatCanteri",
"website": "https://www.catcanteri.com/",
"youtube": "https://www.youtube.com/watch?v=vVYdNN-BWQE",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/catcanterimusic",
"twitter": "",
"instagram": "",
"spotify": "https://open.spotify.com/artist/1ItP91rrxXPzs0nVGXp89e?si=g4AhxEQFSKOa6QguyawzFg",
"created_at": "2023-01-04T17:25:47.093+11:00",
"updated_at": "2023-01-31T15:24:36.391+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "e26d0f55-50e8-4b22-ba92-7aca30289a69",
"name": "Chris Cavill",
"sort_name": "Chris Cavill",
"summary": "In 2021, Chris Cavill released Lionheart; a heart-warming album dedicated to his father following a 28-year battle with Multiple Sclerosis. The album was a huge success, racking up over 100,000 global streams. His most recent release is a cover of Neil Young’s ‘Old Man’, and features his 8-year old son.",
"image_name": "ChrisCavill",
"website": "www.chriscavillmusic.com",
"youtube": "www.youtube.com/chriscavillmusic",
"itunes": "",
"soundcloud": "",
"facebook": "www.facebook.com/chriscavillmusic",
"twitter": "",
"instagram": "https://www.instagram.com/chris.cavill/",
"spotify": "https://open.spotify.com/artist/1C6ndffV7VCL47YkvqrIva",
"created_at": "2023-01-04T17:27:12.615+11:00",
"updated_at": "2023-01-04T17:27:12.615+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "681a35a9-58ad-4fc7-bda8-2e96378e5e8c",
"name": "Dani Larkin",
"sort_name": "Dani Larkin",
"summary": "Beguiling, intense, driven folk songs expertly accompanied by guitar and banjo, Dani Larkin's songs voyage through stories drawn from mythology and folklore, ruminations on love and relationships, and experiences of wildness, loss, love and mystery, steered with a gentle strength and engagingly calm conviction. Pipped by Double J, RTE Radio 1, BBC Radio 2 and Folk Radio UK as a rising star on the Irish folk and alternative scene, 2021/2022 has been a breakthrough year for this emerging alt-folk artist, with the release of her debut album Notes For A Maiden Warrior.",
"image_name": "DaniLarkin",
"website": "https://www.danilarkin.com/",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/DaniLarkinmusic",
"twitter": "https://twitter.com/Dani_Larkin_",
"instagram": "https://www.instagram.com/dani_larkin_/",
"spotify": "https://open.spotify.com/artist/6s74lp18Qqs5s46mJKtxWi?nd=1",
"created_at": "2023-01-04T17:30:49.092+11:00",
"updated_at": "2023-01-31T15:25:07.340+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "52fc5802-bea8-4e52-aa69-e1d293911276",
"name": "Daniel Champagne",
"sort_name": "Daniel Champagne",
"summary": "The story goes that the young Australian singer, songwriter and one-of-a-kind guitar virtuoso first picked up his instrument of choice as a five-year-old following in the footsteps of a musical father. He began writing songs at 12, training classically throughout his teens and performing solo wherever he could, honing his craft and developing what would become the dynamite live show that he is renowned for today. At 18 he left school, turned professional and hit the road. In early 2020 as the COVID pandemic ground all touring to a halt, Daniel returned to Australia from his base in Nashville, writing music and further honing his craft with a swag of new songs and a complete new live show. For fans of guitar, songs or just artistic expression at it’s finest this show is a must see!",
"image_name": "DanielChampagne",
"website": "https://danielchampagnemusic.com/",
"youtube": "https://www.youtube.com/user/Champagnemusic1",
"itunes": "https://music.apple.com/au/artist/daniel-champagne/424584843",
"soundcloud": "",
"facebook": "https://www.facebook.com/danielchampagnemusic",
"twitter": "",
"instagram": "https://www.instagram.com/danielchampagnemusic/",
"spotify": "https://open.spotify.com/artist/5VbD0260te11AgTgTs5odC",
"created_at": "2023-01-04T17:33:25.887+11:00",
"updated_at": "2023-01-31T15:25:19.177+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "8eb7991b-7133-4248-9534-f3636f6984cd",
"name": "Dave Wright \u0026 the Midnight Ramblers",
"sort_name": "Dave Wright",
"summary": "Formed in 2017, The Midnight Ramblers are Dave’s side project and satisfy his love of bluegrass, folk, country, and americana. Featuring Midnight Electric members Rob Barber and Tim Cavanagh, plus Connor Ross- Hicks, the band delve deep into Dave’s vast catalogue and re-imagine some of his most popular songs into down home country and bluegrass stompers.",
"image_name": "DaveWright",
"website": "https://davewrightthemidnightramblers.bandcamp.com/",
"youtube": "https://youtu.be/JNRowUcgvAA",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/DWTME/",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-03-09T18:01:46.861+11:00",
"updated_at": "2023-03-09T18:01:46.861+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "4b07b759-e094-4171-9d39-0c47145d442a",
"name": "Dean Haitani",
"sort_name": "Dean Haitani",
"summary": "We're still waiting on some more details here… we'll update you soon!",
"image_name": "DeanHaitani",
"website": "https://www.deanhaitanimusic.com/music",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/deanhaitanimusic",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-04T17:41:22.071+11:00",
"updated_at": "2023-01-04T17:41:22.071+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "2f2cdf4b-9bb5-44b4-81a8-6722d6b63618",
"name": "Earth Hour",
"sort_name": "Earth Hour",
"summary": "Join us again for Earth Hour at the Public Hall. Once the lights will go out you will be treated to 10 surprise acts, completely acoustic, in the dark.",
"image_name": "EarthHour",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-03-09T18:23:28.024+11:00",
"updated_at": "2023-03-21T11:37:28.591+11:00",
"artist_type": "other",
"hide_in_artist_list": true
},
{
"id": "577161f4-4974-4121-8ff5-900744d89d41",
"name": "Emily Barker",
"sort_name": "Emily Barker",
"summary": "Emily Barker is an award-winning singer-songwriter, best known as the writer and performer of the theme to the BBC’s hugely successful crime drama Wallander starring Kenneth Branagh. She has released music as a solo artist as well as with various bands and collaborations including The Red Clay Halo, Frank Turner, Vena Portae, Marry Waterson and Applewood Road (with whom she released a remarkable album of original songs recorded live around a single microphone, dubbed “flawless” by The Sunday Times) and has written for film, including composing the soundtrack for Jake Gavin’s lauded debut feature Hector starring Peter Mullan and Keith Allen",
"image_name": "EmilyBarker",
"website": "https://www.emilybarker.com/",
"youtube": "https://www.youtube.com/emilybarkerhalo",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/EmilyBarkerHalo/",
"twitter": "https://twitter.com/emilybarkerhalo",
"instagram": "https://www.instagram.com/emilybarkerhalo/",
"spotify": "https://open.spotify.com/artist/25uHIpsCWoj8wEHFOEhbuV",
"created_at": "2023-01-04T17:43:48.345+11:00",
"updated_at": "2023-01-04T17:43:48.345+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "c18a72de-09ae-458a-a61c-a9eca03fbeb3",
"name": "Floyd Thursby",
"sort_name": "Floyd Thursby",
"summary": "Folk singer and songwriter Floyd Thursby has years of songs and stories to share, whether busking in the streets of Iran, playing in nursing homes, or performing for the Prime Minister of Vietnam. ‘To those in flames’ (2019) ALBUM OF THE WEEK: The Age. SHORTLISTED 2021 Music Victoria Awards.",
"image_name": "FloydThursby",
"website": "www.floydthursby.com ",
"youtube": "https://www.youtube.com/watch?v=arQ8pYuhZU4",
"itunes": "",
"soundcloud": "",
"facebook": "http://www.facebook.com/MrFloydThursby",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-04T17:45:54.487+11:00",
"updated_at": "2023-01-04T17:45:54.487+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "239a5e2a-c9b8-4a74-9698-db1ced69b86a",
"name": "Forgotten Land",
"sort_name": "Forgotten Land",
"summary": "Forgotten Land are a 4 piece local band from Yackandandah and surrounds. Gem who plays vocal and guitar sings from the heart \u0026 about her life experiences. She is backed up by her husband Dave with his rhythmic beats \u0026 legendary friends Deb \u0026 Rowan who play beautiful melodic tunes on the double bass, cello and flute.",
"image_name": "ForgottenLand",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-04T17:46:54.123+11:00",
"updated_at": "2023-01-31T15:25:46.708+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "e82c740f-a874-4bfa-a66d-bdf89de48afc",
"name": "Fred Smith",
"sort_name": "Fred Smith",
"summary": "“Fred Smith is simply the best folk/country musician working in this country. Beyond writing some of the finest songs about Australians at war, he has created a repertoire that is wry, literate, witty, powerfully emotional and insightful”. (Bruce Elder, SMH). Fred and band will be playing songs from his back catalogue and new material from the evacuation of Kabul.",
"image_name": "FredSmith",
"website": "http://www.fredsmith.com.au",
"youtube": "https://www.youtube.com/channel/UCq-41nKPSv5pAgy_c_wTUOg",
"itunes": "https://music.apple.com/au/artist/fred-smith/13772",
"soundcloud": "",
"facebook": "https://www.facebook.com/fredsmithmusic/ ",
"twitter": "",
"instagram": "",
"spotify": "https://open.spotify.com/artist/4xjl2OQnm4IJJx4iURYEEX",
"created_at": "2023-01-04T17:47:40.269+11:00",
"updated_at": "2023-03-09T18:17:05.362+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "0dad927b-9eb7-4854-a505-c23499b01db3",
"name": "The Go Set",
"sort_name": "Go Set",
"summary": "Twenty years down the line and The Go Set still sound as fierce, as vital, as the first day they set foot on a stage. The Geelong-based band has always squeezed out the sparks from the place where rock’n’roll collides with the spirit of Celtic folk. I have Irish and Scottish heritage through my grandparents on both sides and that was the kind of music I heard at home,” Keenan says. “As a little kid I listened to those traditional songs with my nan on an old record player. Then when I was discovering bands and heard The Pogues, it all made sense.” The ghosts of those who have come before are never too far away in the songs of The Go Set, and the album’s title tune is one of their finest on the topic. Dust off the dancing shoes and be ready.",
"image_name": "TheGoSet",
"website": "https://www.thegoset.com/",
"youtube": "https://www.youtube.com/user/thegoset",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/thegoset",
"twitter": "https://twitter.com/thegosetband",
"instagram": "https://www.instagram.com/thegosetband/",
"spotify": "https://www.youtube.com/thegoset",
"created_at": "2023-01-05T12:03:32.678+11:00",
"updated_at": "2023-03-10T08:39:31.884+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "448fe565-1dca-430c-8e45-7b0d6c1e1e49",
"name": "Gordon Mullen",
"sort_name": "Gordon Mullen",
"summary": "Gordon Mullen delivers a masterclass on the ukulele, weaving intricate pickings through songs by Bruce Cockburn, Muse, Midnight Oil and Nordic classics. Coming off a standing ovation at his previous Festival appearance, Mullen will bookend these artists on keyboard with originals including a call to action on climate change, refugee care and the tender recognition of the outback woman who loses all to drought and disease. Not to be missed. ",
"image_name": "GordonMullen",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-04T17:48:25.488+11:00",
"updated_at": "2023-01-06T12:09:55.959+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "ead1ecf2-09a3-4028-9432-3608efac274a",
"name": "Great Aunt",
"sort_name": "Great Aunt",
"summary": "There's a buzz about Great Aunt - theirs is a joyous and eclectic approach to making music. Together, songwriter/instrumentalists Megan Bird and Chelsea Allen draw inspiration from the traditions of old-time, bluegrass and gospel music, and their diverse backgrounds in punk and jazz, to craft modern musical stories. The duo has delighted audiences at some of Australia’s finest music and arts festivals with tales of joy and grief, whiskey and wine, gratitude and purpose-seeking.",
"image_name": "GreatAunt",
"website": "www.greatauntmusic.com",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/greatauntmusic",
"twitter": "https://twitter.com/greatauntmusic",
"instagram": "https://www.instagram.com/greatauntmusic/",
"spotify": "",
"created_at": "2023-01-04T17:54:05.089+11:00",
"updated_at": "2023-01-06T12:11:59.508+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "d3ec4f72-b8a1-4804-946b-ccdc7699091d",
"name": "Gretta Ziller",
"sort_name": "Gretta Ziller",
"summary": "Gretta Ziller’s sound may bear the hallmarks of classic Americana music but its essence is far more diverse. The Melbourne songstress’ roots span jazz, blues, rock, pop and classical. Gretta’s eclectic musical upbringing, is reflected in the varied tracks of her debut full-length album Queen of Boomtown.",
"image_name": "GrettaZiller",
"website": "http://www.grettaziller.com",
"youtube": "",
"itunes": "https://music.apple.com/au/artist/gretta-ziller/348673625",
"soundcloud": "",
"facebook": "https://www.facebook.com/",
"twitter": "https://twitter.com/",
"instagram": "https://www.instagram.com/",
"spotify": "https://open.spotify.com/artist/0z328yAQPLGxQyGhzXLf98?dl_branch=1\u0026nd=1",
"created_at": "2023-01-04T17:51:04.530+11:00",
"updated_at": "2023-01-06T12:12:05.974+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "61cca078-d1c9-47e4-8bcf-6b61aa712813",
"name": "Hannah Schmidli",
"sort_name": "Hannah Schmidli",
"summary": "Hannah is a dynamic singer-songwriter who displays a writing maturity beyond her 18 years of age. Her performances are engaging and thoroughly entertaining. She has the rare ability to connect with audience members young or old and weaves images with her lyrics, stories and music.",
"image_name": "HannahSchmidli",
"website": "hannahschmidli.com",
"youtube": "https://www.youtube.com/@hannahschmidli",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/hannahschmidlimusic/",
"twitter": "",
"instagram": "https://www.instagram.com/hannahschmidlii/",
"spotify": "",
"created_at": "2023-01-04T17:56:35.598+11:00",
"updated_at": "2023-01-04T17:56:35.598+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "c85b45d8-6675-497a-a987-1d0e42e298a4",
"name": "The Humbuckin' Pickups",
"sort_name": "Humbuckin' Pickups",
"summary": "We're still waiting on some more details here… we'll update you soon!",
"image_name": "TheHumbuckinPickups",
"website": "www.thehumbuckinpickups.com.au",
"youtube": "https://www.youtube.com/watch?v=i9ik3ZWbyt8",
"itunes": "",
"soundcloud": "",
"facebook": "www.facebook.com/TheHumbuckinPickups",
"twitter": "",
"instagram": "https://www.instagram.com/thehumbuckinpickups/",
"spotify": "https://open.spotify.com/artist/0xTNwijILQd0l7RISGa7tM?nd=1",
"created_at": "2023-01-05T12:03:32.679+11:00",
"updated_at": "2023-03-10T08:39:40.397+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "1dd91865-35b2-414e-baaa-366648d26302",
"name": "Jarrod Shaw",
"sort_name": "Jarrod Shaw",
"summary": "Jarrod Shaw possesses a passion and appreciation for blues music that becomes obvious from the moment the first note sounds. He delivers a soulful blues show, performed with\nconviction. He blends his unique guitar approach lying somewhere between piedmont fingerstyle and the blues of the delta, with wailing blues harp and a powerful voice often described as belying his years.",
"image_name": "JarrodShaw",
"website": "https://jarrodshaw.com/home",
"youtube": "https://www.youtube.com/channel/UCqgKTyCyISnwDIhKpKF6ISQ",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/jarrodshawmusic",
"twitter": "",
"instagram": "https://www.instagram.com/jarrodshawmusic/",
"spotify": "https://open.spotify.com/artist/52nDlW5vfj4PIlf0JdjJ7Y?dl_branch=1\u0026nd=1",
"created_at": "2023-02-13T14:40:55.560+11:00",
"updated_at": "2023-02-13T14:40:55.560+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "689e4393-11b4-46b5-a4a2-d832c5b00c5e",
"name": "Jayda Jean",
"sort_name": "Jayda Jean",
"summary": "Jayda Jean is a young singer-songwriter from the Yarra Valley. Her songwriting has emerged from folk beginnings but has taken a modern turn. She is a multi-award winning songwriter, having won two national song writing competitions by the age of 15. Jayda Jean is touring her debut EP “Through Your Eyes” which can be streamed everywhere.",
"image_name": "JaydaJean",
"website": "",
"youtube": "https://www.youtube.com/watch?v=ur0ONlZxrXw",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/jaydajeanmusic",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-04T17:59:40.936+11:00",
"updated_at": "2023-03-15T09:09:28.728+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "d97eca99-0ac0-4bcc-ab18-111ae20e5e59",
"name": "John Smith",
"sort_name": "John Smith",
"summary": "With his honey-on-gravel voice and mesmerising fingerstyle guitar, John Smith has built a reputation as one of the UK’s finest guitarists and songwriters. John’s intimate take on love, loss and the journey we make, combined with his innovative guitar work, have won him a loyal following around the globe. “The future of Folk Music” – John Renbourn.",
"image_name": "JohnSmith",
"website": "https://www.johnsmithjohnsmith.com/",
"youtube": "https://www.youtube.com/thejohnsmith",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/thejohnsmith",
"twitter": "https://twitter.com/thejohnsmith",
"instagram": "https://www.instagram.com/thejohnsmith/",
"spotify": "https://open.spotify.com/artist/56GNqAFg9wJNTwcHsJhyS2",
"created_at": "2023-01-04T18:01:44.374+11:00",
"updated_at": "2023-01-04T18:01:44.374+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "48f73412-53eb-43ca-9a0d-882e790d4f46",
"name": "Julian James and the Moonshine State",
"sort_name": "Julian James and the Moonshine State",
"summary": "From Melbourne’s back alley bars to Australias major Festivals (Gympie Muster, Echuca Winter Blues, Tamworth CMF) – Award winning Julian James is loved by folk and blues audiences all over Australia, with his whiskey drenched sound as much at home in 2021 as it would have been blaring out of the wireless in 1921.",
"image_name": "JulianJames",
"website": "www.julianjames.com.au",
"youtube": "https://www.youtube.com/channel/julianjamesartist",
"itunes": "",
"soundcloud": "",
"facebook": "www.facebook.com/julianjamesartist",
"twitter": "",
"instagram": "",
"spotify": "https://open.spotify.com/artist/2GZaokS2ngNy6dNiWNWNH4?dl_branch=1\u0026nd=1",
"created_at": "2023-01-05T12:03:32.673+11:00",
"updated_at": "2023-03-09T18:17:33.711+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "ea0eabd8-0ee9-464c-8de7-44d9df93b9d6",
"name": "Kevin Albert",
"sort_name": "Kevin Albert",
"summary": "Kevin is a passionate singer songwriter who has been working on his craft for over many years. Kevin has recently recorded an EP of songs that are topical including Climate change - 'Ode to Mother Earth'; First Nation Reconciliation - 'The Tide Has Changed'. Others tell stories of 'Small Country Towns'; 'Seasons' and most recent song about our ANZACs",
"image_name": "KevinAlbert",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-02-13T14:48:48.209+11:00",
"updated_at": "2023-02-13T16:11:18.667+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "b7bfe928-9e15-4f7f-8dfe-f77daed6a419",
"name": "The Maes",
"sort_name": "Maes",
"summary": "The Maes (sisters Maggie \u0026 Elsie Rigby) grew up the children of folk musicians, immersed in folk festivals, choir rehearsals and campfire sessions. Since 2014, they’ve been touring full time, playing some of the world’s most prestigious roots music festivals, including the Telluride Bluegrass Festival and Edmonton Folk Festival. “Quite simply breathtaking” – Rhythms Magazine.",
"image_name": "TheMaes",
"website": "https://themaes.com.au",
"youtube": "https://www.youtube.com/watch?v=uz0skPGKI5U",
"itunes": "https://music.apple.com/ca/artist/the-burning-hell/271674545",
"soundcloud": "",
"facebook": "https://www.facebook.com/themaesband",
"twitter": "https://twitter.com/themaesband",
"instagram": "https://www.instagram.com/themaesband/",
"spotify": "https://open.spotify.com/artist/6zdezqzQF6UyMqd7c9aYJa",
"created_at": "2023-01-05T12:03:32.681+11:00",
"updated_at": "2023-03-10T08:39:46.881+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "290d7f05-a286-413e-bf71-ff798aa32a90",
"name": "Niamh Regan",
"sort_name": "Niamh Regan",
"summary": "Niamh Regan is a critically acclaimed songwriter from county Galway, Ireland. Her debut album Hemet announced her arrival as one of the most distinctive songwriters in Ireland today. Earning nominations for both the RTE Folk Awards’ and the Choice Awards’ Album of the Year. \nRegan honed her craft as a songwriter by travelling between Ireland and California, writing about her experiences along the way. As a result, her songs seamlessly weave the intimacy of the Irish lyrical tradition with the expansive breadth of American songwriters such as Karen Dalton, Stevie Nicks, and Joni Mitchell, but the resulting sound is entirely her own.",
"image_name": "NiamhRegan",
"website": "http://niamhregan.com/",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/niamhreganmusic",
"twitter": "https://twitter.com/niamhreganmusic",
"instagram": "https://www.instagram.com/niamhreganmusic/",
"spotify": "",
"created_at": "2023-01-05T11:09:56.797+11:00",
"updated_at": "2023-01-05T11:09:56.797+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "21192f0c-ba89-49fa-a88e-c0dc10087652",
"name": "Owen Campbell",
"sort_name": "Owen Campbell",
"summary": "Owen Campbell is alternative blues and soulful cosmic rock at its best.\nInspired by the tempo of the ocean, Owen’s sound is best described as smouldering guitar work running from bluesy riffs and soulful finger-picking to lap steel guitar solos using a shot glass slide and gritty caramel vocals. ",
"image_name": "OwenCampbell",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T11:10:50.609+11:00",
"updated_at": "2023-01-05T11:10:50.609+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "50397840-0c70-4446-bdf6-9c24c2f163a9",
"name": "Pete Denahy",
"sort_name": "Pete Denahy",
"summary": "Pete cut his teeth with the Ploughboys in Melbourne in the mid 90’s and went on to tour as fiddle player and comic with Slim Dusty from 1998 to 2002 as the last musician Slim hired for his Travelling Country Band.\n\nHis show today is a blend of his comedy, country/bluegrass songs and energetic fiddle playing. He is joined this time by Aron McLean on upright bass and Jeff Mercer on electric guitar. Jeff also toured with Slim and it was on the road that Pete and Jeff became musical brothers. Aron has been gigging with Pete for over ten years. The combination of these three on stage pretty much means “good time had by all”!",
"image_name": "PeteDenahy",
"website": "https://www.petedenahy.com/",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/pete.denahy",
"twitter": "",
"instagram": "https://www.instagram.com/pete_denahy/",
"spotify": "",
"created_at": "2023-01-05T11:12:15.143+11:00",
"updated_at": "2023-01-05T11:12:15.143+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "f1af8bf0-966d-483c-88db-abf1f0736aab",
"name": "The Pigs",
"sort_name": "Pigs",
"summary": "The family that plays together, stays together... and in the nutty world of The Pigs, family (and beer, and bluegrass) is all that matters... and did I mention… you’re family too. In these troubling times you can count on The Pigs... They have not blurred their backgrounds, stockpiled dunny paper or learned anything remotely.T-Bone, Stretch, Cousin Shamus, Cousin Bert \u0026 Cousin Montz last name PIG, like to have fun and their music speaks to that… but also pokes much deeper... life, love, heartache, Robot Goats even. Expect to be shocked by their dress \u0026 hear their many hits – even that one about Moisturiser. ",
"image_name": "ThePigs",
"website": "https://thepigs.com.au/",
"youtube": "https://www.youtube.com/watch?v=0ncgv2HE5Ns",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/thepigsofficial",
"twitter": "https://twitter.com/i/flow/login",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T12:03:32.682+11:00",
"updated_at": "2023-03-10T08:39:54.662+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "55268404-415a-4fd9-a0d4-96a418b6c83d",
"name": "The Ploughboys",
"sort_name": "Ploughboys",
"summary": "In 1994 a collection of like minded musicians first graced the stage at Maldon FF The Ploughboys went on to perform at major festivals throughout Australia and OS and became one of Australia's preeminent Celtic Bands. This years performance sees the reunion of the original Ploughboys line up featuring Damian Howard, Allan O'Connell, Peter Denahy, Dominic McAlinden and John Edgar.",
"image_name": "ThePloughboys",
"website": "",
"youtube": "https://www.youtube.com/watch?v=rUU8zqcG160",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/ploughboysaustralia",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T12:03:32.684+11:00",
"updated_at": "2023-03-10T08:39:59.918+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "8deb583b-5209-4901-a392-812fe52bc990",
"name": "Riflebirds",
"sort_name": "Riflebirds",
"summary": "Get ready for electrifying, hip-shakin, vintage rock soul with Melbourne's high-flying Riflebirds. The bands unique guitar and keyboard driven sound - performed with passion and energy - has earned Riflebirds a reputation as one of the finest live acts around. With their fourth and most adventurous album \"Keep It Together\" out recently, the band is making its Yackandandah festival debut.",
"image_name": "Riflebirds",
"website": "https://www.riflebirds.com.au/",
"youtube": "https://www.youtube.com/channel/UC_aEwi_sX6nN-AmAtR569-Q",
"itunes": "https://music.apple.com/au/artist/riflebirds/994762948",
"soundcloud": "https://soundcloud.com/riflebirds",
"facebook": "https://www.facebook.com/riflebirdsband",
"twitter": "",
"instagram": "https://www.instagram.com/riflebirds/",
"spotify": "https://open.spotify.com/artist/7bzzkiQIc8GtB1jKqEtqFv",
"created_at": "2023-01-05T11:14:07.786+11:00",
"updated_at": "2023-01-05T11:14:07.786+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "8e8df656-79af-4d43-a3e7-ba05a56354e1",
"name": "The Royal High Jinx",
"sort_name": "Royal High Jinx",
"summary": "Melbourne's mesmerising contemporary world music band The Royal High Jinx burst onto Australian festival stages with originality, virtuosity \u0026 theatricality. Their songs \u0026 tunes are inspired by European traditions, peppered with Gypsy Jazz, Latin Balkan \u0026 Swing grooves with a pinch of Folk Cabaret. Described as the “Balkan Abba” for their catchy songs \u0026 glamorous show, enjoy their musical celebration.",
"image_name": "TheRoyalHighJinx",
"website": "http://www.theroyalhighjinx.com",
"youtube": "https://www.youtube.com/channel/UCktEIa6vUCTeATofysQXBWQ",
"itunes": "",
"soundcloud": "https://soundcloud.com/sarah-busuttil-4",
"facebook": "https://www.facebook.com/ theroyalhighjinxband/",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T12:03:32.685+11:00",
"updated_at": "2023-03-10T08:40:05.630+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "91cb6c07-16a0-4dc7-bc47-1ee348e18789",
"name": "Saoirse",
"sort_name": "Saoirse",
"summary": "A Saoirse performance will delight the audience with a little bit of everything Celtic, from heartfelt ballads, original songs and stories, to lively jigs and reels, with even an Irish step dance or two! With excellent musicianship and harmonies that will take your breath away, a concert promises to entertain; to warm hearts, and leave toes tapping for more!",
"image_name": "Saoirse",
"website": "http://www.saoirse.com.au/",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/saoirsemelbourne",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T11:15:03.267+11:00",
"updated_at": "2023-01-05T11:15:03.267+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "8d02bede-8fb8-438b-a59e-6ef9ab0bc46d",
"name": "Smith \u0026 Jones",
"sort_name": "SmithAndJones",
"summary": "Smith \u0026 Jones are a Bathurst based duo, made up of keyboard player/vocalist Abby Smith, and guitarist/vocalist Sophie Jones. Their work is centred around the intersection of womanhood and identity within regional areas, with a dedication to artistic leadership, community engagement and creative integrity. Their new work was recorded live in the studio, echoing their heart warming and powerful live shows.",
"image_name": "SmithAndJones",
"website": "https://www.smithandjones.net/",
"youtube": "https://www.youtube.com/channel/UCqBvEMLQyfhUTWqdid7URDg",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/SmithandJones.music/?fref=ts",
"twitter": "",
"instagram": "https://www.instagram.com/smithandjones_music/?hl=en",
"spotify": "",
"created_at": "2023-02-13T14:51:04.964+11:00",
"updated_at": "2023-02-13T14:51:04.964+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "f6490f8f-053e-4c2e-a86e-0aad55b3fc69",
"name": "Spike \u0026 The Whisper",
"sort_name": "SpikeAndTheWhisper",
"summary": "Spike \u0026 The Whisper is simultaneously a solo act and a 13 piece extravaganza. Yackandandah local David ‘Postie’ Norman has been entertaining crowds with his unique sound for nearly 40 years.\n\nHe plays and records everything you hear on stage, giving a unique twist his mix of pub classics and original songs, all tied together with his unique banter and local insights.\n\nWith a set time spanning well into the Friday night, he’s sure to get the crowd up on the dance floor, an act not to be missed!",
"image_name": "Postie",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/MSQTAmedia",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-03-07T20:42:24.786+11:00",
"updated_at": "2023-03-07T20:42:24.786+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "fb4aae6b-1405-4ba3-a1d9-36d09a6b23aa",
"name": "Street Parade",
"sort_name": "Street Parade",
"summary": "Join us for the official opening parade of the ceremony, with various performers and local groups marching down High Street. This is a free event for all!",
"image_name": "StreetParade",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-03-21T11:18:59.587+11:00",
"updated_at": "2023-03-21T11:34:28.082+11:00",
"artist_type": "other",
"hide_in_artist_list": true
},
{
"id": "3147f515-81b9-4054-a62a-4f9e5b4c4e22",
"name": "Tim McMillan and Rachel Snow",
"sort_name": "Tim McMillan and Rachel Snow",
"summary": "Fingerstyle percussive guitar meets masterful violin accompaniment and a magical blend of vocals as Tim McMillan \u0026 Rachel Snow twirl their musical influences together to create a riveting potion of Celtic rock, folk, metal, classical \u0026 jazz. Hailing from the same school in Melbourne and now based in Berlin the duo have performed together for nearly 20 years.",
"image_name": "TimMcMillan",
"website": "www.timmcmillanrachelsnow.com",
"youtube": "https://www.youtube.com/watch?v=ZJDq4c5RA3s",
"itunes": "",
"soundcloud": "",
"facebook": "www.facebook.com/timmcmillan",
"twitter": "http://www.twitter.com/tim_mcmillan",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T12:03:32.689+11:00",
"updated_at": "2023-03-09T17:54:23.729+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "0e0421d5-f00e-4c31-b3a4-716fd02ba8fc",
"name": "Tinman",
"sort_name": "Tinman",
"summary": "Born of campfires and beach houses, Tinman bring a feast of harmony and rhythm that pours from the stage. Without realising, you may feel the need to sing even if you don't know the words. Or just watch the melodies disappear into the cool night air. Come alongside these story-tellers and magic weavers and be transported for a while. ",
"image_name": "Tinman",
"website": "",
"youtube": "https://www.youtube.com/channel/UCTLUf2SE_cyZcI4Pf_qCBlA/videos",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/musicoftinman/",
"twitter": "",
"instagram": "https://www.instagram.com/tinman_band/",
"spotify": "https://open.spotify.com/artist/6z6qNMqMCDrUrtKYZEjg1y",
"created_at": "2023-01-05T12:03:32.690+11:00",
"updated_at": "2023-01-31T15:26:30.514+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "66a1a813-330c-4e77-ba35-e28ba40eee64",
"name": "Tony McManus",
"sort_name": "Tony McManus",
"summary": "Livewire violinist Alana Hunt shreds through furious csardases, Hungarian restaurant serenades and Transylvanian village folklore chased by Kirri Bachler (double bass), and Sofia Chapman (accordion).Vardos have roamed extensively through Eastern Europe learning from Rroma (Gypsy) musicians, released 6 albums, toured Australia and internationally and appeared in film and television.",
"image_name": "TonyMcManus",
"website": "https://www.tonymcmanus.com/",
"youtube": "https://www.youtube.com/watch?v=upTwC4oEbA0",
"itunes": "https://music.apple.com/us/artist/tony-mcmanus/32471999",
"soundcloud": "",
"facebook": "https://www.facebook.com/TonyMcManusMusic",
"twitter": "",
"instagram": "https://www.instagram.com/tony_mcmanus/?hl=en",
"spotify": "https://open.spotify.com/artist/1KQwje9l9U6Zb0tvlzqNBX",
"created_at": "2023-01-05T12:03:32.693+11:00",
"updated_at": "2023-01-10T10:15:51.870+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "e9f6c941-fee7-4766-9c61-8f9f4870baf8",
"name": "Vardos",
"sort_name": "Vardos",
"summary": "Livewire violinist Alana Hunt shreds through furious csardases, Hungarian restaurant serenades and Transylvanian village folklore chased by Kirri Bachler (double bass), and Sofia Chapman (accordion).\u2028Vardos have roamed extensively through Eastern Europe learning from Rroma (Gypsy) musicians, released 6 albums, toured Australia and internationally and appeared in film and television.",
"image_name": "Vardos",
"website": "https://vardos.com.au/",
"youtube": "https://www.youtube.com/watch?v=W3YaVL5Iflg",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/vardos",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-01-05T12:03:32.694+11:00",
"updated_at": "2023-03-09T17:54:01.429+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "7398a155-cbe1-40bb-a038-af2370759885",
"name": "Wallabindi",
"sort_name": "Wallabindi",
"summary": "Wallabindi is a proud Wardandi Bibbulman Noongar singer/songwriter hailing from Boorloo, Western Australia. She is an incredibly versatile artist, touring both nationally and internationally for 20 years. As a descendant of several Stolen Generations, Wallabindi is passionate about keeping her culture strong and alive through her music. She will be weaving powerful stories, truth telling and reflections throughout her performances, accompanied by her talented co-writer and long time collaborator Richard Gorter on guitar. They will also be previewing songs from their debut EP, Wallabindi Dreaming.",
"image_name": "Wallabindi",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-02-13T14:55:48.377+11:00",
"updated_at": "2023-02-13T14:55:48.377+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "dfeebb28-2720-47d3-bad3-126e1ea7b0cf",
"name": "The Water Runners",
"sort_name": "Water Runners",
"summary": "Take one part bluegrass, one part folk and a dollop of country. Mix in great storytelling, tight harmonies, and an engaging stage show, and you have The Water Runners! Voted best band in the 2020 Australian National Busking Championships and 'People's Choice' finalists in the 2021 Australian Folk Music Awards, their 2021 album, 'Further Down the Road', was produced by the award-winning Matt Fell. Their original songs tell of local tales and stories of love, loss, and life. Come on the journey.",
"image_name": "WaterRunners",
"website": "https://thewaterrunners.com/",
"youtube": "https://www.youtube.com/channel/UC0nGOwKNEZUvmuDJFR-o42g",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/thewaterrunners",
"twitter": "",
"instagram": "https://www.instagram.com/thewaterrunnersau/",
"spotify": "",
"created_at": "2023-02-13T14:54:40.201+11:00",
"updated_at": "2023-02-13T14:54:40.201+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "c0aed526-668b-4f45-8fd5-c72a4a727e45",
"name": "The Weeping Willows",
"sort_name": "Weeping Willows",
"summary": "CMAA ‘Golden Guitar’, Australian Folk Music and Music Victoria award winners, The Weeping Willows (Laura Coates and Andrew Wrigglesworth) are a couple of old souls, steeped in Bluegrass tradition and draped in Gothic Americana imagery. They regale their audiences with stories of sunshine and romance, God and The Devil, murder and decay. That kind of description might make them sound like some carefully contrived concept-act but there’s something truly different about The Weeping Willows: they really mean it...",
"image_name": "TheWeepingWillows",
"website": "http://www.theweepingwillows.com.au",
"youtube": "https://www.youtube.com/watch?v=P1oMwFyOBjk",
"itunes": "",
"soundcloud": "https://soundcloud.com/theweepingwillows",
"facebook": "https://www.facebook.com/theweepingwillows",
"twitter": "https://twitter.com/weepinwillows",
"instagram": "https://www.instagram.com/theweepingwillows/",
"spotify": "https://open.spotify.com/artist/1NtrMilHVPYuHl1yrlKVTd?nd=1",
"created_at": "2023-01-05T12:03:32.686+11:00",
"updated_at": "2023-03-10T08:40:18.475+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "4b5f80df-35fa-4ff4-a3d7-31033c6b1b66",
"name": "Welcome To Country",
"sort_name": "WelcomeToCountry",
"summary": "In the spirit of reconciliation Yackandandah Folk Festival acknowledges the Traditional Custodians of country throughout Australia and their connections to land, waters and community. We pay our respect to their Elders past and present and extend that respect to all Aboriginal and Torres Strait Islander peoples today.",
"image_name": "WelcomeToCountry",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",
"facebook": "",
"twitter": "",
"instagram": "",
"spotify": "",
"created_at": "2023-03-21T11:21:00.329+11:00",
"updated_at": "2023-03-21T11:21:00.329+11:00",
"artist_type": "other",
"hide_in_artist_list": true
},
{
"id": "4a2f2eeb-10b6-4656-9bb0-10aab1141a07",
"name": "While and Matthews",
"sort_name": "While and Matthews",
"summary": "\"The undisputed queens of British folk duos continue to come up with the goods, 1st class songs delivered with to die for harmonies, immaculate musicianship \u0026 melodies that lodge themselves in your brain.\" \n- The Guardian\n\nChris While (vocals, guitar, banjo, dulcimer, bodhran and percussion) and Julie Matthews (vocals, piano, guitar, mandolin and bouzouki) are renowned for their seamless harmonies and affinity for each other on stage, they are stunning singers, songwriters, musicians and performers whose energy and commitment to their craft and their audience is boundless",
"image_name": "WhileandMatthews",
"website": "https://www.whileandmatthews.com/",
"youtube": "https://www.youtube.com/watch?v=zmo_bNTUqAM",
"itunes": "",
"soundcloud": "",
"facebook": "https://www.facebook.com/whileandmatthews/",
"twitter": "https://twitter.com/whilematthews",
"instagram": "https://twitter.com/whilematthews",
"spotify": "",
"created_at": "2023-01-05T12:03:32.696+11:00",
"updated_at": "2023-01-10T10:16:43.526+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "fbb41fc4-dccf-4364-8281-bae84223965f",
"name": "Widows of the Parish",
"sort_name": "Widows of the Parish",
"summary": "Soul wrenching harmonies, incredible arrangements and great energy. The Widows’ sound is an intoxicating mix of bluegrass, Americana, gospel, and blues. Their gigs include fresh arrangements of both obscure gems and standards from different eras. Gorgeous harmonies from these talented female vocalists will have you alternately stomping your feet or crooning along with them",
"image_name": "WidowsoftheParish",
"website": "www.widowsoftheparish.com",
"youtube": "https://www.youtube.com/channel/UCTDrvd6ZiCTgDwmcIsrrO9A",
"itunes": "",
"soundcloud": "https://soundcloud.com/widowsoftheparish",
"facebook": "https://www.facebook.com/widowsoftheparish",
"twitter": "",
"instagram": "https://www.instagram.com/widowsoftheparish/",
"spotify": "",
"created_at": "2023-01-05T12:03:32.697+11:00",
"updated_at": "2023-01-10T10:17:19.106+11:00",
"artist_type": "artist",
"hide_in_artist_list": false
},
{
"id": "61e83281-0fff-4cdc-98c2-e69d99a9874e",
"name": "Yackandandah Community Choir",
"sort_name": "Yackandandah Community Choir",
"summary": "When a village with a population of less than 1000 can muster more than 120 to 150 voices to rehearse and perform together for the community's folk festival, it says something about the unique strength and community capacity in Yackandandah. This much loved group has put together a rousing and harmonious repertoire guaranteed to allow you to finish off the festival on a high. All credit to the wonderful choir and the energetic committee. An un-ticketed event; all are welcome to come and share the love as they lift spirits and lift the roof.",
"image_name": "YackChoir",
"website": "",
"youtube": "",
"itunes": "",
"soundcloud": "",