-
Notifications
You must be signed in to change notification settings - Fork 1
/
shows.json
1681 lines (1681 loc) · 59.9 KB
/
shows.json
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
[
{
"title": "#001 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 001",
"itunes:subtitle": "Episode 001 / Live from Bangalore, India",
"enclosure": {
"type": "audio/mpeg",
"url": "http://traffic.libsyn.com/anjunabeats/ABGT001.mp3",
"length": "116593450"
},
"link": "http://www.aboveandbeyond.nu/radio",
"guid": "http://traffic.libsyn.com/anjunabeats/ABGT001.mp3",
"pubDate": "Wed, 14 Nov 2012 18:15:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:01:09",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, bangalore, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#002 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 002",
"itunes:subtitle": "Episode 002 / Guest Mix: Armin van Buuren",
"enclosure": {
"type": "audio/mpeg",
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT002_489.mp3",
"length": "115491968"
},
"link": "http://www.aboveandbeyond.nu/radio",
"guid": "http://tatw.co.uk/ABGT002_489.mp3",
"pubDate": "Fri, 16 Nov 2012 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy,armin van buuren , anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#003 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 003",
"itunes:subtitle": "Episode 003 / Guest Mix: Arty",
"enclosure": {
"type": "audio/mpeg",
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT003_646.mp3",
"length": "115485312"
},
"link": "http://www.aboveandbeyond.nu/radio",
"guid": "http://tatw.co.uk/ABGT003_646.mp3",
"pubDate": "Fri, 23 Nov 2012 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy,arty,anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#004 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 004",
"itunes:subtitle": "Episode 004 / Guest Mix: Guy J",
"enclosure": {
"type": "audio/mpeg",
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT004_90.mp3",
"length": "115505792"
},
"link": "http://www.aboveandbeyond.nu/radio",
"guid": "http://tatw.co.uk/ABGT004_90.mp3",
"pubDate": "Fri, 30 Nov 2012 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy,guy j,anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#005 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 005",
"itunes:subtitle": "Episode 005 / Guest Mix: Ferry Corsten",
"enclosure": {
"type": "audio/mpeg",
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT005_150.mp3",
"length": "115501184"
},
"link": "http://www.aboveandbeyond.nu/radio",
"guid": "http://tatw.co.uk/ABGT004_150.mp3",
"pubDate": "Fri, 07 Dec 2012 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, Ferry Corsten,anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#006 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 006",
"itunes:subtitle": "Episode 006 / Guest Mix: James Zabiela",
"enclosure": {
"type": "audio/mpeg",
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT006_825.mp3",
"length": "115506304"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt006",
"guid": "http://tatw.co.uk/ABGT006_364.mp3",
"pubDate": "Fri, 14 Dec 2012 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, James Zabiela, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#007 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 007",
"itunes:subtitle": "Episode 007 / Guest Mix: Mike Koglin",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT007_97.mp3",
"length": "115460736",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt007",
"guid": "http://tatw.co.uk/ABGT007_97.mp3",
"pubDate": "Fri, 21 Dec 2012 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy,Mike Koglin, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#008 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 008",
"itunes:subtitle": "Episode 008 / Fans Choice Episode",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT008_242.mp3",
"length": "115501184",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt008",
"guid": "http://tatw.co.uk/ABGT008_242.mp3",
"pubDate": "Fri, 28 Dec 2012 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, Best of 2013, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#009 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 009",
"itunes:subtitle": "Episode 009 / Guest Mix : Kyau & Albert",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT009_231.mp3",
"length": "115505792",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt009",
"guid": "ABGT009",
"pubDate": "Fri, 04 Jan 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, kyau, albert, kyau & albert, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#010 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 010",
"itunes:subtitle": "Episode 010 / Guest Mix : Audien",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT010_565.mp3",
"length": "115498112",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt010",
"guid": "ABGT010",
"pubDate": "Fri, 11 Jan 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, audien, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#011 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 011",
"itunes:subtitle": "Episode 011 / Guest Mix : Fehrplay",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT011_293.mp3",
"length": "115501184",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt011",
"guid": "ABGT011",
"pubDate": "Fri, 18 Jan 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, fehrplay, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#012 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 012",
"itunes:subtitle": "Episode 012 / Guest Mix : Rank 1",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT012_427.mp3",
"length": "115499648",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt012",
"guid": "ABGT012",
"pubDate": "Fri, 25 Jan 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, rank 1, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#013 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 013",
"itunes:subtitle": "Episode 013 / Guest Mix : Andre Sobota",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT013_78.mp3",
"length": "115499648",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt013",
"guid": "ABGT013",
"pubDate": "Fri, 01 Feb 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, andre sobota, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#014 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 014",
"itunes:subtitle": "Episode 014 / Guest Mix : Lange",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT014_744.mp3",
"length": "115501184",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt014",
"guid": "ABGT014",
"pubDate": "Fri, 08 Feb 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, lange, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#015 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 015",
"itunes:subtitle": "Episode 015 / Guest Mix : Gabriel & Dresden",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT015_654.mp3",
"length": "115501184",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt015",
"guid": "ABGT015",
"pubDate": "Fri, 15 Feb 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, lange, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#016 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 016",
"itunes:subtitle": "Episode 016 / Guest Mix : Jeremy Olander",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT016_601.mp3",
"length": "115503744",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt016",
"guid": "ABGT016",
"pubDate": "Fri, 22 Feb 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, jeremy, olander, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#017 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 017",
"itunes:subtitle": "Episode 017 / Guest Mix : Maor Levi",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT017_684.mp3",
"length": "115501184",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt017",
"guid": "ABGT017",
"pubDate": "Fri, 01 Mar 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, maor, levi, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#018 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 018",
"itunes:subtitle": "Episode 018 / Guest Mix : Norin & Rad",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT018_114.mp3",
"length": "115500160",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt018",
"guid": "ABGT018",
"pubDate": "Fri, 08 Mar 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, maor, levi, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#019 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 019",
"itunes:subtitle": "Episode 019 / Guest Mix : Matt Lange",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT019_417.mp3",
"length": "115500672",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt019",
"guid": "ABGT019",
"pubDate": "Fri, 15 Mar 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, maor, levi, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#020 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 020",
"itunes:subtitle": "Episode 020 / Guest Mix : Super8 & Tab",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT020_78.mp3",
"length": "115500160",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt020",
"guid": "ABGT020",
"pubDate": "Fri, 22 Mar 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, super8, tab, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#021 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 021",
"itunes:subtitle": "Episode 021 / Guest Mix : Sasha",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT021_649.mp3",
"length": "115503744",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt021",
"guid": "ABGT021",
"pubDate": "Fri, 29 Mar 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, sasha, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#022 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 022",
"itunes:subtitle": "Episode 022 / Guest Mix : Mark Knight",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT022_963.mp3",
"length": "115499136",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt022",
"guid": "ABGT022",
"pubDate": "Fri, 05 Apr 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, mark knight, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#023 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 023",
"itunes:subtitle": "Episode 023 / Guest Mix : Mat Zo",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT023_275.mp3",
"length": "115499136",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt023",
"guid": "ABGT023",
"pubDate": "Fri, 12 Apr 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, mat zo, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#024 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 024",
"itunes:subtitle": "Episode 024 / Guest Mix : Andrew Bayer",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT024_616.mp3",
"length": "115499136",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt024",
"guid": "ABGT024",
"pubDate": "Fri, 18 Apr 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, andrew bayer, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#025 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 025",
"itunes:subtitle": "Episode 025 / Guest Mix : Jaytech",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT025_997.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt025",
"guid": "ABGT025",
"pubDate": "Fri, 28 Apr 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, jaytech, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#026 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 026",
"itunes:subtitle": "Episode 026 / Guest Mix : BT",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT026_488.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt026",
"guid": "ABGT026",
"pubDate": "Fri, 03 May 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, BT, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#027 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 027",
"itunes:subtitle": "Episode 027 / Guest Mix : Boom Jinx",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT027_528.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt027",
"guid": "ABGT027",
"pubDate": "Fri, 10 May 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, Boom Jinx, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#028 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 028",
"itunes:subtitle": "Episode 028 / Guest Mix : Ronski Speed",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT028_35.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt028",
"guid": "ABGT028",
"pubDate": "Fri, 17 May 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, Ronski Speed, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#029 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 029",
"itunes:subtitle": "Episode 029 / Guest Mix : Jerome Isma-Ae",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT029_661.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt029",
"guid": "ABGT029",
"pubDate": "Fri, 24 May 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, Jerome Isma Ae, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#030 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 030",
"itunes:subtitle": "Episode 030 / Guest Mix : Myon & Shane 54",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT030_246.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt030",
"guid": "ABGT030",
"pubDate": "Fri, 31 May 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, myon, shane 54, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#031 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 031",
"itunes:subtitle": "Episode 031 / Guest Mix : Jon O Bir",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT031_471.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt031",
"guid": "ABGT031",
"pubDate": "Fri, 7 Jun 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, jon o bir, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#032 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 032",
"itunes:subtitle": "Episode 032 / Guest Mix : Cosmic Gate",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT032_60.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt032",
"guid": "ABGT032",
"pubDate": "Fri, 14 Jun 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, cosmic gate, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#033 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode 033",
"itunes:subtitle": "Episode 033 / Guest Mix : Ilan Bluestone",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT033_228.mp3",
"length": "115489920",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt033",
"guid": "ABGT033",
"pubDate": "Fri, 21 Jun 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00",
"itunes:keywords": [
"above, beyond, above & beyond, above and beyond, group therapy, ilan bluestone, anjuna, anjunabeats, anjunabeats, oceanlab, tranquility base"
]
},
{
"title": "#034 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #034 / Guest Mix: Henry Saiz",
"itunes:subtitle": "Episode #034 / Guest Mix: Henry Saiz",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT034_3.mp3",
"length": "115496576",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt034",
"guid": "abgt034",
"pubDate": "Fri, 28 Jun 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#035 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #035 / Guest Mix: Jody Wisternoff",
"itunes:subtitle": "Episode #035 / Guest Mix: Jody Wisternoff",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT035_852.mp3",
"length": "115499136",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt035",
"guid": "abgt035",
"pubDate": "Fri, 05 Jul 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#036 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #036 / Guest Mix: Stoneface & Terminal",
"itunes:subtitle": "Episode #036 / Guest Mix: Stoneface & Terminal",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT036_406.mp3",
"length": "115501696",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt036",
"guid": "abgt036",
"pubDate": "Fri, 12 Jul 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "Anjunadeep 05 Minimix - mixed by James Grant",
"itunes:author": "James Grant",
"description": "Released 22 July 2013 on Anjunadeep. Featuring exclusive tracks from Dusky, Tom Middleton, Andrew Bayer & James Grant, Vincenzo, Matt Lange, Jody Wisternoff, Croquet Club and Beckwith.",
"itunes:subtitle": "Anjunadeep 05 Minimix - mixed by James Grant",
"enclosure": {
"type": "audio/mpeg",
"url": "http://traffic.libsyn.com/anjunadeep05_JG_minimix.mp3",
"length": "281313"
},
"link": "http://tatw.co.uk/anjunadeep05_JG_minimix.mp3",
"guid": "http://tatw.co.uk/anjunadeep05_JG_minimix.mp3",
"pubDate": "Mon, 15 July 2013 11:29 +0000",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "00:15:01"
},
{
"title": "Anjunadeep 05 Minimix - mixed by Jody Wisternoff",
"itunes:author": "James Grant",
"description": "Released 22 July 2013 on Anjunadeep. Featuring exclusive tracks from Dusky, Tom Middleton, Andrew Bayer & James Grant, Vincenzo, Matt Lange, Jody Wisternoff, Croquet Club and Beckwith.",
"itunes:subtitle": "Anjunadeep 05 Minimix - mixed by Jody Wisternoff",
"enclosure": {
"type": "audio/mpeg",
"url": "http://traffic.libsyn.com/anjunadeep05_JW_minimix.mp3",
"length": "281313"
},
"link": "http://tatw.co.uk/anjunadeep05_JW_minimix.mp3",
"guid": "http://tatw.co.uk/anjunadeep05_JW_minimix.mp3",
"pubDate": "Mon, 15 July 2013 12:29 +0000",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "00:15:01"
},
{
"title": "#037 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #037 / Guest Mix: James Grant",
"itunes:subtitle": "Episode #037 / Guest Mix: James Grant",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT037_678.mp3",
"length": "115499648",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt037",
"guid": "abgt037",
"pubDate": "Fri, 19 Jul 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#038 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #038 / Guest Mix: Matt Fax",
"itunes:subtitle": "Episode #038 / Guest Mix: Matt Fax",
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT038_630.mp3",
"length": "115499136",
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt038",
"guid": "abgt038",
"pubDate": "Fri, 26 Jul 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#039 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #039 / Guest Mix: Paul Oakenfold",
"itunes:subtitle": "Episode #039 / Guest Mix: Paul Oakenfold",
"summary": null,
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT039_257.mp3",
"length": 115499136,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt39",
"guid": "abgt39",
"pubDate": "Fri, 02 Aug 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#040 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #040 / Guest Mix: Beckwith",
"itunes:subtitle": "Episode #040 / Guest Mix: Beckwith",
"summary": null,
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT040.mp3",
"length": 115485475,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt040",
"guid": "abgt040",
"pubDate": "Fri, 09 Aug 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#041 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #041 / Guest Mix: JES",
"itunes:subtitle": "Episode #041 / Guest Mix: JES",
"summary": null,
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT041.mp3",
"length": 115485057,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt041",
"guid": "abgt041",
"pubDate": "Fri, 16 Aug 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#042 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #042 / Guest Mix: Tom Middleton",
"itunes:subtitle": "Episode #042 / Guest Mix: Tom Middleton",
"summary": null,
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT042.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt042",
"guid": "abgt042",
"pubDate": "Fri, 23 Aug 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#043 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #043 / Guest Mix: Seven",
"itunes:subtitle": "Episode #043 / Guest Mix: Seven Lions",
"summary": null,
"enclosure": {
"url": "http://static.aboveandbeyond.nu/grouptherapy/temp/ABGT043.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt043",
"guid": "abgt043",
"pubDate": "Fri, 30 Aug 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#044 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #044 / Guest Mix: Dusky",
"itunes:subtitle": "Episode #044 / Guest Mix: Dusky",
"summary": null,
"enclosure": {
"url": "http://static.aboveandbeyond.nu/abgt/podcast/ABGT044.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt044",
"guid": "abgt044",
"pubDate": "Fri, 13 Sep 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#045 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #045 / Guest Mix: Orjan Nilsen",
"itunes:subtitle": "Episode #045 / Guest Mix: Orjan Nilsen",
"summary": null,
"enclosure": {
"url": "http://traffic.libsyn.com/anjunabeats/ABGT045.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt045",
"guid": "abgt045",
"pubDate": "Fri, 13 Sep 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#046 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #046 / Guest Mix: Marcus Schossow",
"itunes:subtitle": "Episode #046 / Guest Mix: Marcus Schossow",
"summary": null,
"enclosure": {
"url": "http://traffic.libsyn.com/anjunabeats/ABGT046.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt046",
"guid": "abgt046",
"pubDate": "Fri, 20 Sep 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#047 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #047 / Guest Mix: LTN",
"itunes:subtitle": "Episode #047 / Guest Mix: LTN",
"summary": null,
"enclosure": {
"url": "http://traffic.libsyn.com/anjunabeats/ABGT047.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt047",
"guid": "abgt047",
"pubDate": "Fri, 27 Sep 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#048 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #048 / Guest Mix: Andy Duguid",
"itunes:subtitle": "Episode #048 / Guest Mix: Andy",
"summary": null,
"enclosure": {
"url": "http://traffic.libsyn.com/anjunabeats/ABGT048.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt048",
"guid": "abgt048",
"pubDate": "Fri, 04 Oct 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#049 Group Therapy Radio with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Episode #049 / Guest Mix: Toby",
"itunes:subtitle": "Episode #049 / Guest Mix: Toby",
"summary": null,
"enclosure": {
"url": "http://traffic.libsyn.com/anjunabeats/ABGT049.mp3",
"length": 1233,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt049",
"guid": "abgt049",
"pubDate": "Fri, 11 Oct 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "Group Therapy Radio Guest Mix Special with Above & Beyond",
"itunes:author": "Above & Beyond",
"description": "Guest Mix Special",
"itunes:subtitle": "Guest Mix Special",
"summary": null,
"enclosure": {
"url": "http://traffic.libsyn.com/anjunabeats/ABGTGuest_Mix_Special.mp3",
"length": 115202088,
"type": "audio/mpeg"
},
"link": "http://www.aboveandbeyond.nu/radio/abgt-guest-mix-special-2013",
"guid": "abgt-guest-mix-special-2013",
"pubDate": "Fri, 18 Oct 2013 21:10:00 +0100",
"category": "Music",
"itunes:explicit": "no",
"itunes:duration": "02:00:00"
},
{
"title": "#ABGT050 Group Therapy Radio with Above & Beyond - Guy J",
"itunes:author": "Above & Beyond",
"description": "Guy J live from Alexandra Palace, London - Saturday October 26",