-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaylist_items.json
More file actions
2231 lines (2231 loc) · 75.8 KB
/
Copy pathplaylist_items.json
File metadata and controls
2231 lines (2231 loc) · 75.8 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
{
"schema": "discogs-playlist/v1",
"playlist": {
"title": "ACID — A Black-Heritage Canon (1986–2026)",
"description": "Three notable acid tracks per year since acid's inception, every entry with core Black-artist involvement. Sourced from the YouTube links on each track's Discogs release page. Companion document: acid-playlist.md (curated + verified via the Discogs API, July 2026).",
"privacy": "public",
"playlist_id": "PLNXi-Q1Sb-_E",
"url": "https://www.youtube.com/playlist?list=PLNXi-Q1Sb-_E"
},
"source_of_truth": "discogs.com release pages (videos[]); per-item 'match' notes any deviation (search-found upload, alternate cut)",
"order": "chronological by Discogs release date; year-only dates sort by year",
"generated_at": "2026-07-19",
"validation": {
"method": "YouTube Data API v3 videos.list (status)",
"validated_at": "2026-07-17",
"result": "117/117 public"
},
"items": [
{
"position": 1,
"video_id": "TxGXehOPe0I",
"youtube_url": "https://www.youtube.com/watch?v=TxGXehOPe0I",
"label": "1986 · Sleezy D. – I've Lost Control",
"artist": "Sleezy D.",
"track": "I've Lost Control",
"release_label": "Trax Records TX113",
"released": "1986",
"year": 1986,
"discogs_release_id": 2237,
"discogs_url": "https://www.discogs.com/release/2237-Sleezy-D-Ive-Lost-Control",
"video_title": "Sleezy D - I've Lost Control (House Side)",
"match": "exact",
"video_status": "public",
"duration_seconds": 748,
"rating": 5
},
{
"position": 2,
"video_id": "2TxGTktpdZ4",
"youtube_url": "https://www.youtube.com/watch?v=2TxGTktpdZ4",
"label": "1986 · Adonis – No Way Back (Vocal)",
"artist": "Adonis",
"track": "No Way Back (Vocal)",
"release_label": "Trax Records TX112",
"released": "1986",
"year": 1986,
"discogs_release_id": 27332,
"discogs_url": "https://www.discogs.com/release/27332-Adonis-No-Way-Back",
"video_title": "Adonis - No Way Back (Vocal)",
"match": "exact",
"video_status": "public",
"duration_seconds": 300,
"rating": 5
},
{
"position": 3,
"video_id": "VS5Q_nR0Pto",
"youtube_url": "https://www.youtube.com/watch?v=VS5Q_nR0Pto",
"label": "1986 · Mr. Fingers – Washing Machine",
"artist": "Mr. Fingers",
"track": "Washing Machine",
"release_label": "Trax Records TX127",
"released": "1986",
"year": 1986,
"discogs_release_id": 1948,
"discogs_url": "https://www.discogs.com/release/1948-Mr-Fingers-Washing-Machine-Can-You-Feel-It",
"video_title": "Mr. Fingers - Washing Machine [TX127]",
"match": "exact",
"video_status": "public",
"duration_seconds": 260,
"rating": 5
},
{
"position": 4,
"video_id": "xjJxoy6Dbck",
"youtube_url": "https://www.youtube.com/watch?v=xjJxoy6Dbck",
"label": "1987 · Phuture – Acid Tracks",
"artist": "Phuture",
"track": "Acid Tracks",
"release_label": "Trax Records TX142",
"released": "1987",
"year": 1987,
"discogs_release_id": 1949,
"discogs_url": "https://www.discogs.com/release/1949-Phuture-Acid-Tracks",
"video_title": "Phuture - Acid Tracks [TX142]",
"match": "exact",
"video_status": "public",
"duration_seconds": 746,
"rating": 5
},
{
"position": 5,
"video_id": "aRvo6Xa4a8Q",
"youtube_url": "https://www.youtube.com/watch?v=aRvo6Xa4a8Q",
"label": "1987 · Tyree – Acid Over (Tyree's Mix)",
"artist": "Tyree",
"track": "Acid Over (Tyree's Mix)",
"release_label": "Underground UN 116",
"released": "1987",
"year": 1987,
"discogs_release_id": 61941,
"discogs_url": "https://www.discogs.com/release/61941-Tyree-Acid-Over",
"video_title": "Tyree - Acid Over (Tyree's Mix) (HQ High Quality)",
"match": "exact",
"video_status": "public",
"duration_seconds": 272,
"rating": 5
},
{
"position": 6,
"video_id": "bPGzhpaYTR4",
"youtube_url": "https://www.youtube.com/watch?v=bPGzhpaYTR4",
"label": "1987 · Armando – Land Of Confusion (Confusion Mix)",
"artist": "Armando",
"track": "Land Of Confusion (Confusion Mix)",
"release_label": "Westbrook Records AG-WB 4",
"released": "1987",
"year": 1987,
"discogs_release_id": 4657,
"discogs_url": "https://www.discogs.com/release/4657-Armando-Land-Of-Confusion",
"video_title": "Armando – Land Of Confusion (Confusion Mix) 1987",
"match": "exact",
"video_status": "public",
"duration_seconds": 452,
"rating": 5
},
{
"position": 7,
"video_id": "pOOiZ7ysshQ",
"youtube_url": "https://www.youtube.com/watch?v=pOOiZ7ysshQ",
"label": "1988 · Maurice – This Is Acid (A New Dance Craze) (S&T Mix)",
"artist": "Maurice",
"track": "This Is Acid (A New Dance Craze) (S&T Mix)",
"release_label": "Vendetta Records VE 7016",
"released": "1988",
"year": 1988,
"discogs_release_id": 63710,
"discogs_url": "https://www.discogs.com/release/63710-Maurice-This-Is-Acid-A-New-Dance-Craze",
"video_title": "Maurice Joshua This Is Acid A New Dance Craze S&T Mix",
"match": "exact",
"video_status": "public",
"duration_seconds": 448,
"rating": 5
},
{
"position": 8,
"video_id": "sDyxyRcZWBA",
"youtube_url": "https://www.youtube.com/watch?v=sDyxyRcZWBA",
"label": "1988 · Bam Bam – Where's Your Child?",
"artist": "Bam Bam",
"track": "Where's Your Child?",
"release_label": "Desire Records WANTX 7",
"released": "1988-11",
"year": 1988,
"discogs_release_id": 43506,
"discogs_url": "https://www.discogs.com/release/43506-Bam-Bam-Wheres-Your-Child",
"video_title": "Bam Bam, Where's Your Child? - 1988",
"match": "exact",
"video_status": "public",
"duration_seconds": 338,
"rating": 5
},
{
"position": 9,
"video_id": "j7vxHOCeiQ4",
"youtube_url": "https://www.youtube.com/watch?v=j7vxHOCeiQ4",
"label": "1988 · A Guy Called Gerald – Voodoo Ray",
"artist": "A Guy Called Gerald",
"track": "Voodoo Ray",
"release_label": "Rham! RS8804",
"released": "1988-11-14",
"year": 1988,
"discogs_release_id": 64961,
"discogs_url": "https://www.discogs.com/release/64961-A-Guy-Called-Gerald-Voodoo-Ray",
"video_title": "A Guy Called Gerald - Voodoo Ray (OFFICIAL MUSIC VIDEO)",
"match": "exact",
"video_status": "public",
"duration_seconds": 268,
"rating": 5
},
{
"position": 10,
"video_id": "sbx9WuSqePc",
"youtube_url": "https://www.youtube.com/watch?v=sbx9WuSqePc",
"label": "1989 · Steve Poindexter – Computer Madness",
"artist": "Steve Poindexter",
"track": "Computer Madness",
"release_label": "Muzique Records MR-001",
"released": "1989",
"year": 1989,
"discogs_release_id": 2031,
"discogs_url": "https://www.discogs.com/release/2031-Steve-Poindexter-Work-That-Mutha-Fucker",
"video_title": "Steve Poindexter - Computer Madness [MR-001]",
"match": "exact",
"video_status": "public",
"duration_seconds": 258,
"rating": 5
},
{
"position": 11,
"video_id": "E0JM1gOWzpg",
"youtube_url": "https://www.youtube.com/watch?v=E0JM1gOWzpg",
"label": "1989 · The Gherkin Jerks – Meltdown",
"artist": "The Gherkin Jerks",
"track": "Meltdown",
"release_label": "Gherkin Records GKE1058",
"released": "1989",
"year": 1989,
"discogs_release_id": 37471,
"discogs_url": "https://www.discogs.com/release/37471-The-Gherkin-Jerks-1990",
"video_title": "Meltdown",
"match": "exact",
"video_status": "public",
"duration_seconds": 307,
"rating": 5
},
{
"position": 12,
"video_id": "uyef_dLNTsI",
"youtube_url": "https://www.youtube.com/watch?v=uyef_dLNTsI",
"label": "1989 · Victor Romeo & Leatrice Brown – Love Will Find A Way (Radio)",
"artist": "Victor Romeo & Leatrice Brown",
"track": "Love Will Find A Way (Radio)",
"release_label": "Dance Mania DM 018",
"released": "1989",
"year": 1989,
"discogs_release_id": 12144,
"discogs_url": "https://www.discogs.com/release/12144-Victor-Romeo-Presents-Leatrice-Brown-Love-Will-Find-A-Way",
"video_title": "Victor Romeo - Love Will Find A Way (Ray Hurley, Scott Garcia & Mark Yardley Full Vocal)",
"match": "close",
"video_status": "public",
"duration_seconds": 366,
"rating": 4
},
{
"position": 13,
"video_id": "AkGL-Roaipc",
"youtube_url": "https://www.youtube.com/watch?v=AkGL-Roaipc",
"label": "1990 · Bam-Bam – King Of The Underground (Bam Bam's Club Mix)",
"artist": "Bam-Bam",
"track": "King Of The Underground (Bam Bam's Club Mix)",
"release_label": "Westbrook Records WB-121",
"released": "1990",
"year": 1990,
"discogs_release_id": 2037,
"discogs_url": "https://www.discogs.com/release/2037-Bam-Bam-King-Of-The-Underground",
"video_title": "Bam-Bam – King Of The Underground (Bam Bam's Club Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 398,
"rating": 5
},
{
"position": 14,
"video_id": "Qy7vkMClcSo",
"youtube_url": "https://www.youtube.com/watch?v=Qy7vkMClcSo",
"label": "1990 · Armando & Robert Armani – Circus Bells (Armando's Mix)",
"artist": "Armando & Robert Armani",
"track": "Circus Bells (Armando's Mix)",
"release_label": "Dance Mania DM 035",
"released": "1990",
"year": 1990,
"discogs_release_id": 1517,
"discogs_url": "https://www.discogs.com/release/1517-Armando-Presents-Robert-Armani-Armani-Trax",
"video_title": "Robert Armani - Circus Bells (Armando Remix) [CRATX002]",
"match": "close",
"video_status": "public",
"duration_seconds": 520,
"rating": 4
},
{
"position": 15,
"video_id": "I6o_FDPdFBo",
"youtube_url": "https://www.youtube.com/watch?v=I6o_FDPdFBo",
"label": "1990 · A Guy Called Gerald – Automanikk (Bass Overload Mix)",
"artist": "A Guy Called Gerald",
"track": "Automanikk (Bass Overload Mix)",
"release_label": "Columbia CAS 2125",
"released": "1990",
"year": 1990,
"discogs_release_id": 68662,
"discogs_url": "https://www.discogs.com/release/68662-A-Guy-Called-Gerald-Automanikk",
"video_title": "A Guy Called Gerald - Automanikk (Bass Overload Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 386,
"rating": 5
},
{
"position": 16,
"video_id": "QwgIG6ecebg",
"youtube_url": "https://www.youtube.com/watch?v=QwgIG6ecebg",
"label": "1991 · D.J. Rush – Batman 6.02",
"artist": "D.J. Rush",
"track": "Batman 6.02",
"release_label": "Saber Records S 3003",
"released": "1991",
"year": 1991,
"discogs_release_id": 34011,
"discogs_url": "https://www.discogs.com/release/34011-DJ-Rush-Knee-Deep",
"video_title": "DJ Rush - Batman Saber records 1991",
"match": "search",
"video_status": "public",
"duration_seconds": 350,
"rating": 4
},
{
"position": 17,
"video_id": "RhLNawtC0bo",
"youtube_url": "https://www.youtube.com/watch?v=RhLNawtC0bo",
"label": "1991 · Underground Resistance – The Punisher",
"artist": "Underground Resistance",
"track": "The Punisher",
"release_label": "Underground Resistance UR-017",
"released": "1991",
"year": 1991,
"discogs_release_id": 2121,
"discogs_url": "https://www.discogs.com/release/2121-Underground-Resistance-Punisher",
"video_title": "Underground Resistance - Punisher",
"match": "exact",
"video_status": "public",
"duration_seconds": 337,
"rating": 5
},
{
"position": 18,
"video_id": "fXFCWxNE05g",
"youtube_url": "https://www.youtube.com/watch?v=fXFCWxNE05g",
"label": "1991 · Photon, Inc. & Paula Brion – Generate Power (Club Mix)",
"artist": "Photon, Inc. & Paula Brion",
"track": "Generate Power (Club Mix)",
"release_label": "Strictly Rhythm SR 1251",
"released": "1991",
"year": 1991,
"discogs_release_id": 70819,
"discogs_url": "https://www.discogs.com/release/70819-Photon-Inc-Featuring-Paula-Brion-Generate-Power",
"video_title": "Generate Power (Club Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 369,
"rating": 5
},
{
"position": 19,
"video_id": "rFu8QKe8Rb4",
"youtube_url": "https://www.youtube.com/watch?v=rFu8QKe8Rb4",
"label": "1992 · Underground Resistance – The Rain",
"artist": "Underground Resistance",
"track": "The Rain",
"release_label": "Shockwave Records SW1008",
"released": "1992",
"year": 1992,
"discogs_release_id": 12770,
"discogs_url": "https://www.discogs.com/release/12770-Underground-Resistance-Acid-Rain-EP",
"video_title": "Underground Resistance - The Rain [SW1008]",
"match": "exact",
"video_status": "public",
"duration_seconds": 150,
"rating": 5
},
{
"position": 20,
"video_id": "xLKYpcWismk",
"youtube_url": "https://www.youtube.com/watch?v=xLKYpcWismk",
"label": "1992 · K-Alexi – Drugtest",
"artist": "K-Alexi",
"track": "Drugtest",
"release_label": "Djax-Up-Beats DJAX-UP-158",
"released": "1992",
"year": 1992,
"discogs_release_id": 8596,
"discogs_url": "https://www.discogs.com/release/8596-K-Alexi-3-Men-And-A-Loft",
"video_title": "Drugtest",
"match": "exact",
"video_status": "public",
"duration_seconds": 310,
"rating": 5,
"rating_notes": "upgraded by rescrape: video now matches the Discogs page (search -> exact)"
},
{
"position": 21,
"video_id": "grmW6cgRW9w",
"youtube_url": "https://www.youtube.com/watch?v=grmW6cgRW9w",
"label": "1992 · Armando – 100% Of Disin' U (100% Pure Adrenalin)",
"artist": "Armando",
"track": "100% Of Disin' U (100% Pure Adrenalin)",
"release_label": "Warehouse Records W-5000",
"released": "1992-01",
"year": 1992,
"discogs_release_id": 1871,
"discogs_url": "https://www.discogs.com/release/1871-Armando-100-Of-Disin-U-Remix-No-II",
"video_title": "100% Of Disin U (100% Pure Adrenalin) - Armando",
"match": "exact",
"video_status": "public",
"duration_seconds": 301,
"rating": 5
},
{
"position": 22,
"video_id": "nQVNadB-8kk",
"youtube_url": "https://www.youtube.com/watch?v=nQVNadB-8kk",
"label": "1993 · UR – Acid Fog (The Mystery)",
"artist": "UR",
"track": "Acid Fog (The Mystery)",
"release_label": "Underground Resistance UR-024",
"released": "1993",
"year": 1993,
"discogs_release_id": 2125,
"discogs_url": "https://www.discogs.com/release/2125-UR-The-Return-Of-Acid-Rain-The-Storm-Continues",
"video_title": "UR - Acid Fog (The Mystery) [UR-024]",
"match": "exact",
"video_status": "public",
"duration_seconds": 259,
"rating": 5
},
{
"position": 23,
"video_id": "6jeZljYfL0c",
"youtube_url": "https://www.youtube.com/watch?v=6jeZljYfL0c",
"label": "1993 · Armando – Forgotten (Acid Mix)",
"artist": "Armando",
"track": "Forgotten (Acid Mix)",
"release_label": "Trax Records TRAX 5016",
"released": "1993",
"year": 1993,
"discogs_release_id": 62012,
"discogs_url": "https://www.discogs.com/release/62012-Armando-The-New-World-Order",
"video_title": "Armando - Forgotten (acid mix) Trax records 1993",
"match": "exact",
"video_status": "public",
"duration_seconds": 325,
"rating": 5
},
{
"position": 24,
"video_id": "436VvYyCR9g",
"youtube_url": "https://www.youtube.com/watch?v=436VvYyCR9g",
"label": "1993 · Aphrohead & Felix Da Housecat – In The Dark We Live (Lockout Thee Lite!)",
"artist": "Aphrohead & Felix Da Housecat",
"track": "In The Dark We Live (Lockout Thee Lite!)",
"release_label": "Bush Bush 1011",
"released": "1993-11",
"year": 1993,
"discogs_release_id": 2133,
"discogs_url": "https://www.discogs.com/release/2133-Aphrohead-AKA-Felix-Da-Housecat-In-The-Dark-We-Live-Thee-Lite",
"video_title": "Aphrohead – In The Dark We Live ( Lockout Thee Lite! ) (1993 US)",
"match": "exact",
"video_status": "public",
"duration_seconds": 561,
"rating": 5
},
{
"position": 25,
"video_id": "xxTfwWZTsTg",
"youtube_url": "https://www.youtube.com/watch?v=xxTfwWZTsTg",
"label": "1994 · UR – Meteor Showers",
"artist": "UR",
"track": "Meteor Showers",
"release_label": "Underground Resistance UR-028",
"released": "1994",
"year": 1994,
"discogs_release_id": 18482,
"discogs_url": "https://www.discogs.com/release/18482-UR-Acid-Rain-III-Meteor-Shower",
"video_title": "UR - Meteor Showers [UR-028]",
"match": "exact",
"video_status": "public",
"duration_seconds": 210,
"rating": 5
},
{
"position": 26,
"video_id": "Cb3mGgt27lc",
"youtube_url": "https://www.youtube.com/watch?v=Cb3mGgt27lc",
"label": "1994 · DJ Skull – Nuclear Fall Out",
"artist": "DJ Skull",
"track": "Nuclear Fall Out",
"release_label": "Djax-Up-Beats DJAX-UP-214",
"released": "1994",
"year": 1994,
"discogs_release_id": 16799,
"discogs_url": "https://www.discogs.com/release/16799-DJ-Skull-Nuclear-Fall-Out",
"video_title": "DJ Skull -A1- Nuclear Fall Out",
"match": "exact",
"video_status": "public",
"duration_seconds": 441,
"rating": 5
},
{
"position": 27,
"video_id": "MAYTThCP6Ec",
"youtube_url": "https://www.youtube.com/watch?v=MAYTThCP6Ec",
"label": "1994 · K Hand – Global Warning (Underground Mix)",
"artist": "K Hand",
"track": "Global Warning (Underground Mix)",
"release_label": "Warp Records WAP 55",
"released": "1994-10-17",
"year": 1994,
"discogs_release_id": 3215,
"discogs_url": "https://www.discogs.com/release/3215-K-Hand-Global-Warning",
"video_title": "K Hand – Global Warning (Underground Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 342,
"rating": 5
},
{
"position": 28,
"video_id": "q9QJ956Uv4A",
"youtube_url": "https://www.youtube.com/watch?v=q9QJ956Uv4A",
"label": "1995 · Green Velvet – Flash (Green Velvet Mix)",
"artist": "Green Velvet",
"track": "Flash (Green Velvet Mix)",
"release_label": "Relief Records RR 750",
"released": "1995",
"year": 1995,
"discogs_release_id": 19981,
"discogs_url": "https://www.discogs.com/release/19981-Green-Velvet-Flash-Remixes",
"video_title": "Green Velvet - Flash (Green Velvet Mix) (1995)",
"match": "exact",
"video_status": "public",
"duration_seconds": 363,
"rating": 5
},
{
"position": 29,
"video_id": "rKm8qU-P6YA",
"youtube_url": "https://www.youtube.com/watch?v=rKm8qU-P6YA",
"label": "1995 · Armando – Transaxual (Original Mix)",
"artist": "Armando",
"track": "Transaxual (Original Mix)",
"release_label": "Radikal Fear FEAR 022WHITE",
"released": "1995",
"year": 1995,
"discogs_release_id": 61759,
"discogs_url": "https://www.discogs.com/release/61759-Armando-Transaxual",
"video_title": "Transaxual (Original Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 334,
"rating": 5
},
{
"position": 30,
"video_id": "HrKqfombQ5c",
"youtube_url": "https://www.youtube.com/watch?v=HrKqfombQ5c",
"label": "1995 · Akilah Bryant – Black Widow",
"artist": "Akilah Bryant",
"track": "Black Widow",
"release_label": "Djax-Up-Beats DJAX-UP-225",
"released": "1995",
"year": 1995,
"discogs_release_id": 16805,
"discogs_url": "https://www.discogs.com/release/16805-Akilah-Bryant-Black-Widow-EP",
"video_title": "B2 Akilah Bryant Black Widow Original Mix",
"match": "exact",
"video_status": "public",
"duration_seconds": 416,
"rating": 5
},
{
"position": 31,
"video_id": "st7VsvADesY",
"youtube_url": "https://www.youtube.com/watch?v=st7VsvADesY",
"label": "1996 · Phuture303 – Alpha & Omega",
"artist": "Phuture303",
"track": "Alpha & Omega",
"release_label": "Perspective SDS per-104",
"released": "1996",
"year": 1996,
"discogs_release_id": 56354,
"discogs_url": "https://www.discogs.com/release/56354-Phuture303-Alpha-Omega",
"video_title": "Phuture 303 - Alpha & Omega (Original) (1998)",
"match": "exact",
"video_status": "public",
"duration_seconds": 467,
"rating": 5
},
{
"position": 32,
"video_id": "MlIh6om0SgU",
"youtube_url": "https://www.youtube.com/watch?v=MlIh6om0SgU",
"label": "1996 · DJ Jana Rush – Terminal Velocity",
"artist": "DJ Jana Rush",
"track": "Terminal Velocity",
"release_label": "Dance Mania DM 151",
"released": "1996",
"year": 1996,
"discogs_release_id": 166037,
"discogs_url": "https://www.discogs.com/release/166037-DJ-Deeon-Presents-The-Youngest-Female-DJ-DJ-Jana-Rush-DJ-Deeon-The-Armagedon-1996",
"video_title": "DJ Jana Rush - Terminal Velocity",
"match": "exact",
"video_status": "public",
"duration_seconds": 277,
"rating": 5
},
{
"position": 33,
"video_id": "vbYxnvKE4_g",
"youtube_url": "https://www.youtube.com/watch?v=vbYxnvKE4_g",
"label": "1996 · DJ Rush – Doing It To Death",
"artist": "DJ Rush",
"track": "Doing It To Death",
"release_label": "Force Inc. Music Works FIM 111",
"released": "1996",
"year": 1996,
"discogs_release_id": 29920,
"discogs_url": "https://www.discogs.com/release/29920-DJ-Rush-Doing-It-To-Death-Letn-Da-Kids-Have-It",
"video_title": "Dj Rush - Snares fall down",
"match": "alternate",
"video_status": "public",
"duration_seconds": 344,
"rating": 3
},
{
"position": 34,
"video_id": "mjW1SgRVAXc",
"youtube_url": "https://www.youtube.com/watch?v=mjW1SgRVAXc",
"label": "1997 · Phuture 303 – Acid Soul (Acid Soul Mix)",
"artist": "Phuture 303",
"track": "Acid Soul (Acid Soul Mix)",
"release_label": "Djax-Up-Beats DJAX-UP-280",
"released": "1997",
"year": 1997,
"discogs_release_id": 10587,
"discogs_url": "https://www.discogs.com/release/10587-Phuture-303-Acid-Soul",
"video_title": "Phuture 303 - Acid Soul (Acid Soul Mix) (1997)",
"match": "exact",
"video_status": "public",
"duration_seconds": 525,
"rating": 5
},
{
"position": 35,
"video_id": "MUQEV0WrPx8",
"youtube_url": "https://www.youtube.com/watch?v=MUQEV0WrPx8",
"label": "1997 · DJ Pierre & Doomsday – Atom Bomb (Classic Doomsday Mix / Atomic Beats)",
"artist": "DJ Pierre & Doomsday",
"track": "Atom Bomb (Classic Doomsday Mix / Atomic Beats)",
"release_label": "Twisted America Records TWDM-55352",
"released": "1997",
"year": 1997,
"discogs_release_id": 32206,
"discogs_url": "https://www.discogs.com/release/32206-DJ-Pierre-presents-Doomsday-Atom-Bomb",
"video_title": "Doomsday - Atom Bomb - Classic Doomsday Mix / Atomic Beats. 1997. (HD).",
"match": "exact",
"video_status": "public",
"duration_seconds": 533,
"rating": 5
},
{
"position": 36,
"video_id": "5glwsMR96Aw",
"youtube_url": "https://www.youtube.com/watch?v=5glwsMR96Aw",
"label": "1997 · Green Velvet – Answering Machine (Chicago Connection Mix)",
"artist": "Green Velvet",
"track": "Answering Machine (Chicago Connection Mix)",
"release_label": "Cajual Records CAJ 273",
"released": "1997",
"year": 1997,
"discogs_release_id": 19980,
"discogs_url": "https://www.discogs.com/release/19980-Green-Velvet-Answering-Machine-Remixes",
"video_title": "Green Velvet – Answering Machine (Remixes) A1 (Chicago Connection Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 427,
"rating": 5
},
{
"position": 37,
"video_id": "qDoSUgzhcwA",
"youtube_url": "https://www.youtube.com/watch?v=qDoSUgzhcwA",
"label": "1998 · Robert Armani – 151 Remix",
"artist": "Robert Armani",
"track": "151 Remix",
"release_label": "Dance Mania DM 267",
"released": "1998",
"year": 1998,
"discogs_release_id": 2782619,
"discogs_url": "https://www.discogs.com/release/2782619-Robert-Armani-98",
"video_title": "Robert Armani - 151 Remix",
"match": "exact",
"video_status": "public",
"duration_seconds": 370,
"rating": 5
},
{
"position": 38,
"video_id": "FeAEPJ29GoI",
"youtube_url": "https://www.youtube.com/watch?v=FeAEPJ29GoI",
"label": "1998 · DJ Funk – Distorted Acid",
"artist": "DJ Funk",
"track": "Distorted Acid",
"release_label": "International House Records IHR9023-1",
"released": "1998",
"year": 1998,
"discogs_release_id": 36390,
"discogs_url": "https://www.discogs.com/release/36390-DJ-Funk-Funkgasim",
"video_title": "dj funk distorted acid",
"match": "exact",
"video_status": "public",
"duration_seconds": 316,
"rating": 5
},
{
"position": 39,
"video_id": "FCbzQTx1Ffw",
"youtube_url": "https://www.youtube.com/watch?v=FCbzQTx1Ffw",
"label": "1998 · DJ Rush – Marathon Man",
"artist": "DJ Rush",
"track": "Marathon Man",
"release_label": "Djax-Up-Beats DJAX-UP-296",
"released": "1998",
"year": 1998,
"discogs_release_id": 34377910,
"discogs_url": "https://www.discogs.com/release/34377910-DJ-Rush-Marathon-Man",
"video_title": "Marathon Man",
"match": "exact",
"video_status": "public",
"duration_seconds": 332,
"rating": 5
},
{
"position": 40,
"video_id": "qLV0kpHxi5s",
"youtube_url": "https://www.youtube.com/watch?v=qLV0kpHxi5s",
"label": "1999 · DJ Rush – One Two Zero",
"artist": "DJ Rush",
"track": "One Two Zero",
"release_label": "Pro-Jex PROXPRO",
"released": "1999",
"year": 1999,
"discogs_release_id": 129321,
"discogs_url": "https://www.discogs.com/release/129321-DJ-Rush-One-Two-Zero",
"video_title": "DJ Rush One Two Zero",
"match": "exact",
"video_status": "public",
"duration_seconds": 249,
"rating": 5
},
{
"position": 41,
"video_id": "lzZPMBjj4YA",
"youtube_url": "https://www.youtube.com/watch?v=lzZPMBjj4YA",
"label": "1999 · DJ Skull – Ascending",
"artist": "DJ Skull",
"track": "Ascending",
"release_label": "Djax-Up-Beats DJAX-UP-316",
"released": "1999",
"year": 1999,
"discogs_release_id": 17275,
"discogs_url": "https://www.discogs.com/release/17275-DJ-Skull-The-Internet-Server-211",
"video_title": "Ascending",
"match": "exact",
"video_status": "public",
"duration_seconds": 629,
"rating": 5
},
{
"position": 42,
"video_id": "Nph1D87GNGE",
"youtube_url": "https://www.youtube.com/watch?v=Nph1D87GNGE",
"label": "1999 · DJ Rush – Freaks On Hubbard (DJ Rush Mix)",
"artist": "DJ Rush",
"track": "Freaks On Hubbard (DJ Rush Mix)",
"release_label": "Pro-Jex PROX010",
"released": "1999",
"year": 1999,
"discogs_release_id": 28946,
"discogs_url": "https://www.discogs.com/release/28946-DJ-Rush-Freaks-On-Hubbard-Remixes",
"video_title": "DJ Rush - Freaks On Hubbard ( DJ Rush Mix )",
"match": "exact",
"video_status": "public",
"duration_seconds": 404,
"rating": 5
},
{
"position": 43,
"video_id": "tV3X2ydGBQE",
"youtube_url": "https://www.youtube.com/watch?v=tV3X2ydGBQE",
"label": "2000 · Phuture 303 – Spank-Spank",
"artist": "Phuture 303",
"track": "Spank-Spank",
"release_label": "Creators Of Deepness PH003",
"released": "2000",
"year": 2000,
"discogs_release_id": 46960,
"discogs_url": "https://www.discogs.com/release/46960-Phuture-303-Soulgers-Of-Tekno",
"video_title": "Phuture 303 - Spank-Spank (Creators Of Deepness, 2000)",
"match": "exact",
"video_status": "public",
"duration_seconds": 601,
"rating": 5
},
{
"position": 44,
"video_id": "0_0PaJuzlWU",
"youtube_url": "https://www.youtube.com/watch?v=0_0PaJuzlWU",
"label": "2000 · DJ Skull – Reduce By Fusion",
"artist": "DJ Skull",
"track": "Reduce By Fusion",
"release_label": "Djax-Up-Beats DJAX-UP-332",
"released": "2000",
"year": 2000,
"discogs_release_id": 1675,
"discogs_url": "https://www.discogs.com/release/1675-DJ-Skull-Chronicle-Synopsis",
"video_title": "DJ Skull - Reduce By Fusion (2000)",
"match": "exact",
"video_status": "public",
"duration_seconds": 364,
"rating": 5
},
{
"position": 45,
"video_id": "nbWLb0ZW2lw",
"youtube_url": "https://www.youtube.com/watch?v=nbWLb0ZW2lw",
"label": "2000 · DJ Rush – Look & See (Killa Bite Remix)",
"artist": "DJ Rush",
"track": "Look & See (Killa Bite Remix)",
"release_label": "Pro-Jex PROX022",
"released": "2000-06",
"year": 2000,
"discogs_release_id": 1194534,
"discogs_url": "https://www.discogs.com/release/1194534-DJ-Rush-Look-See-Remixes",
"video_title": "Dj Rush - Look & See (Killa Bite Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 428,
"rating": 5
},
{
"position": 46,
"video_id": "GFwIO0zmtLE",
"youtube_url": "https://www.youtube.com/watch?v=GFwIO0zmtLE",
"label": "2001 · Green Velvet – La La Land (12\" Version)",
"artist": "Green Velvet",
"track": "La La Land (12\" Version)",
"release_label": "Relief Records RR2004-1",
"released": "2001",
"year": 2001,
"discogs_release_id": 19878,
"discogs_url": "https://www.discogs.com/release/19878-Green-Velvet-La-La-Land",
"video_title": "GREEN VELVET \"La La Land (12\" Version)\"",
"match": "exact",
"video_status": "public",
"duration_seconds": 316,
"rating": 5
},
{
"position": 47,
"video_id": "wgleFnpn0RM",
"youtube_url": "https://www.youtube.com/watch?v=wgleFnpn0RM",
"label": "2001 · DJ Rush – Motherfucking Bass (Original)",
"artist": "DJ Rush",
"track": "Motherfucking Bass (Original)",
"release_label": "Leaded leaded #016",
"released": "2001",
"year": 2001,
"discogs_release_id": 6895,
"discogs_url": "https://www.discogs.com/release/6895-DJ-Rush-Motherfucking-Bass",
"video_title": "Dj Rush - Motherfucking Bass (Original Mix)",
"match": "exact",
"video_status": "public",
"duration_seconds": 481,
"rating": 5
},
{
"position": 48,
"video_id": "LzLeX84pP9k",
"youtube_url": "https://www.youtube.com/watch?v=LzLeX84pP9k",
"label": "2001 · Felix Da Housecat – Silver Screen Shower Scene (Original)",
"artist": "Felix Da Housecat",
"track": "Silver Screen Shower Scene (Original)",
"release_label": "City Rockers ROCKERS1",
"released": "2001-06-18",
"year": 2001,
"discogs_release_id": 7862,
"discogs_url": "https://www.discogs.com/release/7862-Felix-Da-Housecat-Silver-Screen-Shower-Scene",
"video_title": "Felix Da Housecat - Silver Screen Shower Scene (Original)",
"match": "exact",
"video_status": "public",
"duration_seconds": 292,
"rating": 5
},
{
"position": 49,
"video_id": "972xgveAX3E",
"youtube_url": "https://www.youtube.com/watch?v=972xgveAX3E",
"label": "2002 · Adonis & Hieroglyphic Being – If",
"artist": "Adonis & Hieroglyphic Being",
"track": "If",
"release_label": "Mathematics Recordings Mathematics-003",
"released": "2002",
"year": 2002,
"discogs_release_id": 65053,
"discogs_url": "https://www.discogs.com/release/65053-Adonis-Presents-Hieroglyphic-Being-If",
"video_title": "Adonis Presents Hieroglyphic Being - If [Mathematics-003]",
"match": "exact",
"video_status": "public",
"previous_video_id": "4oRiAxBKa7g",
"duration_seconds": 388,
"rating": 5,
"rating_notes": "video replaced by rescrape"
},
{
"position": 50,
"video_id": "eQJD3eDldPU",
"youtube_url": "https://www.youtube.com/watch?v=eQJD3eDldPU",
"label": "2002 · DJ Rush – Get On Up (Original)",
"artist": "DJ Rush",
"track": "Get On Up (Original)",
"release_label": "Pro-Jex 37",
"released": "2002",
"year": 2002,
"discogs_release_id": 28978000,
"discogs_url": "https://www.discogs.com/release/28978000-DJ-Rush-Get-On-Up-Rmxs",
"video_title": "PROX-037 DJ RUSH GET ON UP REMIXES EP /// ORIGINAL",
"match": "exact",
"video_status": "public",
"duration_seconds": 347,
"rating": 5
},
{
"position": 51,
"video_id": "dbru5jQWltI",
"youtube_url": "https://www.youtube.com/watch?v=dbru5jQWltI",
"label": "2002 · Technasia – Acid Wiss L",
"artist": "Technasia",
"track": "Acid Wiss L",
"release_label": "Sino SINO 05",
"released": "2002-06",
"year": 2002,
"discogs_release_id": 43814,
"discogs_url": "https://www.discogs.com/release/43814-Technasia-DJ-Skull-Passages-Vol-1",
"video_title": "[SINO05] DJ Skull - Acid Wiss L (2002)",
"match": "exact",
"video_status": "public",
"duration_seconds": 617,
"rating": 5
},
{
"position": 52,
"video_id": "-Rv8X8Dwl0M",
"youtube_url": "https://www.youtube.com/watch?v=-Rv8X8Dwl0M",
"label": "2003 · I B M – My Life As A Skinny Puppy",
"artist": "I B M",
"track": "My Life As A Skinny Puppy",
"release_label": "Mathematics Recordings Mathematics -004",
"released": "2003",
"year": 2003,
"discogs_release_id": 135686,
"discogs_url": "https://www.discogs.com/release/135686-I-B-M-My-Life-As-A-Skinny-Puppy",
"video_title": "I.B.M. - My Life As A Skinny Puppy [Mathematics -004]",
"match": "exact",
"video_status": "public",
"duration_seconds": 416,
"rating": 5
},
{
"position": 53,
"video_id": "PNOsnzQMryc",
"youtube_url": "https://www.youtube.com/watch?v=PNOsnzQMryc",
"label": "2003 · Africanswithmainframes – Save The Robots",
"artist": "Africanswithmainframes",
"track": "Save The Robots",
"release_label": "Mathematics Recordings Mathematics -005",
"released": "2003",
"year": 2003,
"discogs_release_id": 217911,
"discogs_url": "https://www.discogs.com/release/217911-Africanswithmainframes-Save-The-Robots-EP",
"video_title": "Africans With Mainframes - Save The Robots",
"match": "exact",
"video_status": "public",
"duration_seconds": 338,
"rating": 5
},
{
"position": 54,
"video_id": "HOOBgjEgkjk",
"youtube_url": "https://www.youtube.com/watch?v=HOOBgjEgkjk",
"label": "2003 · DJ Rush – The Family (Claude Young & Ian Elgey Remix)",
"artist": "DJ Rush",
"track": "The Family (Claude Young & Ian Elgey Remix)",
"release_label": "Djax-Up-Beats DJAX-UP-359",
"released": "2003",
"year": 2003,
"discogs_release_id": 205724,
"discogs_url": "https://www.discogs.com/release/205724-DJ-Rush-The-Family-Remixes",
"video_title": "DJ Rush - The Family (Claude Young & Ian Elgey Remix) (B2)",
"match": "exact",
"video_status": "public",
"duration_seconds": 356,
"rating": 5
},
{
"position": 55,
"video_id": "oEQiAlZpqXM",
"youtube_url": "https://www.youtube.com/watch?v=oEQiAlZpqXM",
"label": "2004 · DJ Rush – Funk U Up (DJ Rush Berlin Mix)",
"artist": "DJ Rush",
"track": "Funk U Up (DJ Rush Berlin Mix)",