-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaylist_items.json
More file actions
3604 lines (3604 loc) · 128 KB
/
Copy pathplaylist_items.json
File metadata and controls
3604 lines (3604 loc) · 128 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": "Jersey Sound (1982-2026) — A 67-Year Lineage (including proto-era, 1960-1982)",
"description": "The Jersey Sound, centered on Tony Humphries — Club Zanzibar resident, KISS-FM Mastermix — traced from soul/gospel/disco roots (1960) to today. 3 tracks per year, Discogs-verified; his mix credits thread the decades. Built with the discogs-playlist skill (see https://github.com/dnk8n/awesome-vibe-coded-playlists/tree/main/playlists/jersey-sound).",
"privacy": "public",
"playlist_id": "PLWrSMxL0SS2E",
"url": "https://www.youtube.com/playlist?list=PLWrSMxL0SS2E"
},
"source_of_truth": "discogs.com release pages (videos[]); per-item match notes deviations",
"order": "chronological by verified Discogs release year",
"generated_at": "2026-07-19",
"validation": {
"method": "YouTube Data API v3 videos.list",
"validated_at": "2026-07-19",
"result": "177 items with live public video"
},
"items": [
{
"position": 1,
"video_id": "AaILLULDreg",
"youtube_url": "https://www.youtube.com/watch?v=AaILLULDreg",
"label": "1960 · The Shirelles – Will You Love Me Tomorrow",
"artist": "The Shirelles",
"track": "Will You Love Me Tomorrow",
"release": "Will You Love Me Tomorrow",
"release_label": "Scepter Records 1211",
"released": "1960",
"year": 1960,
"discogs_release_id": 1263041,
"discogs_url": "https://www.discogs.com/release/1263041-The-Shirelles-Will-You-Love-Me-Tomorrow",
"video_title": "The Shirelles Will You Still Love Me Tomorrow",
"match": "exact",
"rating": 5,
"duration_seconds": 165
},
{
"position": 2,
"video_id": "hnPSzNdo55o",
"youtube_url": "https://www.youtube.com/watch?v=hnPSzNdo55o",
"label": "1960 · James Cleveland – Just Like He Said He Would",
"artist": "James Cleveland",
"track": "Just Like He Said He Would",
"release": "Just Like He Said He Would / He's Allright With Me",
"release_label": "Savoy Records 4141",
"released": "1960",
"year": 1960,
"discogs_release_id": 12430188,
"discogs_url": "https://www.discogs.com/release/12430188-James-Cleveland-Just-Like-He-Said-He-Would-Hes-Allright-With-Me",
"video_title": "Rev. James Cleveland-Just Like He Said He Would",
"match": "exact",
"rating": 5,
"duration_seconds": 178
},
{
"position": 3,
"video_id": "Ul041CSNJto",
"youtube_url": "https://www.youtube.com/watch?v=Ul041CSNJto",
"label": "1960 · The Drifters – This Magic Moment",
"artist": "The Drifters",
"track": "This Magic Moment",
"release": "This Magic Moment / Baltimore",
"release_label": "Atlantic 45-2050",
"released": "1960-01-28",
"year": 1960,
"discogs_release_id": 15008163,
"discogs_url": "https://www.discogs.com/release/15008163-The-Drifters-This-Magic-Moment-Baltimore",
"video_title": "The Drifters \"This Magic Moment\"",
"match": "exact",
"rating": 5,
"duration_seconds": 147
},
{
"position": 4,
"video_id": "Sdjei-WPA5o",
"youtube_url": "https://www.youtube.com/watch?v=Sdjei-WPA5o",
"label": "1961 · Ben E. King – Stand By Me",
"artist": "Ben E. King",
"track": "Stand By Me",
"release": "On The Horizon",
"release_label": "Atlantic 112039",
"released": "1961",
"year": 1961,
"discogs_release_id": 10175098,
"discogs_url": "https://www.discogs.com/release/10175098-Ben-E-King-On-The-Horizon",
"video_title": "Stand By Me - Ben E. King",
"match": "exact",
"rating": 5,
"duration_seconds": 181
},
{
"position": 5,
"video_id": "2vpwWlMKWzA",
"youtube_url": "https://www.youtube.com/watch?v=2vpwWlMKWzA",
"label": "1961 · The Pips & Gladys Knight – Every Beat Of My Heart",
"artist": "The Pips & Gladys Knight",
"track": "Every Beat Of My Heart",
"release": "Every Beat Of My Heart / Room In Your Heart",
"release_label": "Zirkon Records 1059",
"released": "1961",
"year": 1961,
"discogs_release_id": 7498324,
"discogs_url": "https://www.discogs.com/release/7498324-The-Pips-Gladys-Knight-Every-Beat-Of-My-Heart-Room-In-Your-Heart",
"video_title": "GLADYS KNIGHT & THE PIPS - Every Beat Of My Heart",
"match": "exact",
"rating": 5,
"duration_seconds": 125
},
{
"position": 6,
"video_id": "2AVCRoLYxpU",
"youtube_url": "https://www.youtube.com/watch?v=2AVCRoLYxpU",
"label": "1961 · Solomon Burke – Just Out Of Reach (Of My Two Open Arms)",
"artist": "Solomon Burke",
"track": "Just Out Of Reach (Of My Two Open Arms)",
"release": "Just Out Of Reach (Of My Two Open Arms)",
"release_label": "Atlantic 45-2114",
"released": "1961",
"year": 1961,
"discogs_release_id": 25931101,
"discogs_url": "https://www.discogs.com/release/25931101-Solomon-Burke-Just-Out-Of-Reach-Of-My-Two-Open-Arms",
"video_title": "Solomon Burke \"Just Out Of Reach (Of My Two Open Arms)\" from 1961 on ATLANTIC #45-2114",
"match": "exact",
"rating": 5,
"duration_seconds": 165
},
{
"position": 7,
"video_id": "dDblF-J6qvY",
"youtube_url": "https://www.youtube.com/watch?v=dDblF-J6qvY",
"label": "1962 · Dionne Warwick – Don't Make Me Over",
"artist": "Dionne Warwick",
"track": "Don't Make Me Over",
"release": "I Smiled Yesterday / Don't Make Me Over",
"release_label": "Scepter Records 1239",
"released": "1962",
"year": 1962,
"discogs_release_id": 2932438,
"discogs_url": "https://www.discogs.com/release/2932438-Dionne-Warwick-I-Smiled-Yesterday-Dont-Make-Me-Over",
"video_title": "Dionne Warwick - Don't Make Me Over - Live 1963",
"match": "exact",
"rating": 5,
"duration_seconds": 168
},
{
"position": 8,
"video_id": "wKGv6kAylj0",
"youtube_url": "https://www.youtube.com/watch?v=wKGv6kAylj0",
"label": "1962 · The Isley Brothers – Twist And Shout",
"artist": "The Isley Brothers",
"track": "Twist And Shout",
"release": "Twist And Shout ",
"release_label": "Wand 124",
"released": "1962",
"year": 1962,
"discogs_release_id": 7974893,
"discogs_url": "https://www.discogs.com/release/7974893-The-Isley-Brothers-Twist-And-Shout-",
"video_title": "Twist And Shout- The Isley Brothers-'1962- 45-Wand 124.wmv",
"match": "exact",
"rating": 5,
"duration_seconds": 155
},
{
"position": 9,
"video_id": "zqCQe5FwqaU",
"youtube_url": "https://www.youtube.com/watch?v=zqCQe5FwqaU",
"label": "1962 · Booker T. And The MG's – Green Onions",
"artist": "Booker T. And The MG's",
"track": "Green Onions",
"release": "Green Onions / Behave Yourself",
"release_label": "Atlantic JET-1172",
"released": "1962",
"year": 1962,
"discogs_release_id": 20785558,
"discogs_url": "https://www.discogs.com/release/20785558-Booker-T-And-The-MGs-Green-Onions-Behave-Yourself",
"video_title": "Booker T. And The MG's - Green Onions 1964 Atlantic (Stereo)",
"match": "exact",
"rating": 5,
"duration_seconds": 156
},
{
"position": 10,
"video_id": "pgjiSPdvi3Q",
"youtube_url": "https://www.youtube.com/watch?v=pgjiSPdvi3Q",
"label": "1963 · Garnet Mimms & The Enchanters – Cry Baby",
"artist": "Garnet Mimms & The Enchanters",
"track": "Cry Baby",
"release": "Cry Baby",
"release_label": "United Artists Records UA 629",
"released": "1963",
"year": 1963,
"discogs_release_id": 15085204,
"discogs_url": "https://www.discogs.com/release/15085204-Garnet-Mimms-The-Enchanters-Cry-Baby",
"video_title": "Cry Baby - Garnet Mimms and The Enchanters - HQ",
"match": "exact",
"rating": 5,
"duration_seconds": 205
},
{
"position": 11,
"video_id": "uRB7RYwpHp4",
"youtube_url": "https://www.youtube.com/watch?v=uRB7RYwpHp4",
"label": "1963 · Doris Troy – Just One Look",
"artist": "Doris Troy",
"track": "Just One Look",
"release": "Just One Look",
"release_label": "Atlantic AK-398",
"released": "1963",
"year": 1963,
"discogs_release_id": 12293438,
"discogs_url": "https://www.discogs.com/release/12293438-Doris-Troy-Just-One-Look",
"video_title": "Just One Look",
"match": "exact",
"rating": 5,
"duration_seconds": 151
},
{
"position": 12,
"video_id": "5k0GDQrK2jo",
"youtube_url": "https://www.youtube.com/watch?v=5k0GDQrK2jo",
"label": "1963 · Martha And The Vandellas – Heat Wave",
"artist": "Martha And The Vandellas",
"track": "Heat Wave",
"release": "Heat Wave ",
"release_label": "His Master's Voice EA-4589",
"released": "1963",
"year": 1963,
"discogs_release_id": 8426084,
"discogs_url": "https://www.discogs.com/release/8426084-Martha-And-The-Vandellas-Heat-Wave-",
"video_title": "Martha Reeves & The Vandellas - Heat Wave (HQ)",
"match": "exact",
"rating": 5,
"duration_seconds": 163
},
{
"position": 13,
"video_id": null,
"youtube_url": null,
"label": "1964 · Sam Cooke – A Change Is Gonna Come",
"artist": "Sam Cooke",
"track": "A Change Is Gonna Come",
"release": "Bamboleo / A Change Is Gonna Come",
"release_label": "RCA Victor 31a-0638",
"released": "1964",
"year": 1964,
"discogs_release_id": 13383431,
"discogs_url": "https://www.discogs.com/release/13383431-Sam-Cooke-Bamboleo-A-Change-Is-Gonna-Come",
"video_title": null,
"match": "none",
"rating": 1,
"duration_seconds": null
},
{
"position": 14,
"video_id": "M4p9qXIWN2Q",
"youtube_url": "https://www.youtube.com/watch?v=M4p9qXIWN2Q",
"label": "1964 · Martha & The Vandellas – Dancing In The Street",
"artist": "Martha & The Vandellas",
"track": "Dancing In The Street",
"release": "Dancing In The Street / There He Is",
"release_label": "CBS 1621",
"released": "1964",
"year": 1964,
"discogs_release_id": 8650326,
"discogs_url": "https://www.discogs.com/release/8650326-Martha-The-Vandellas-Dancing-In-The-Street-There-He-Is",
"video_title": "Martha Reeves & The Vandellas - Dancing In The Street (Official Music Video)",
"match": "exact",
"rating": 5,
"duration_seconds": 157
},
{
"position": 15,
"video_id": "beW9AH1Goxg",
"youtube_url": "https://www.youtube.com/watch?v=beW9AH1Goxg",
"label": "1964 · Marvin Gaye – How Sweet It Is To Be Loved By You",
"artist": "Marvin Gaye",
"track": "How Sweet It Is To Be Loved By You",
"release": "How Sweet It Is To Be Loved By You / Forever",
"release_label": "Tamla T-54107",
"released": "1964-11-04",
"year": 1964,
"discogs_release_id": 6773229,
"discogs_url": "https://www.discogs.com/release/6773229-Marvin-Gaye-How-Sweet-It-Is-To-Be-Loved-By-You-Forever",
"video_title": "How Sweet It Is (To Be Loved By You) - Marvin Gaye (1964)",
"match": "exact",
"rating": 5,
"duration_seconds": 179
},
{
"position": 16,
"video_id": "p9Il19GaLEw",
"youtube_url": "https://www.youtube.com/watch?v=p9Il19GaLEw",
"label": "1965 · The Manhattans – I Wanna Be (Your Everything)",
"artist": "The Manhattans",
"track": "I Wanna Be (Your Everything)",
"release": "I Wanna Be (Your Everything) / What's It Gonna Be",
"release_label": "Carnival Records 507",
"released": "1965",
"year": 1965,
"discogs_release_id": 1885966,
"discogs_url": "https://www.discogs.com/release/1885966-The-Manhattans-I-Wanna-Be-Your-Everything-Whats-It-Gonna-Be",
"video_title": "The Manhattans - I Wanna Be",
"match": "close",
"rating": 4,
"duration_seconds": 161
},
{
"position": 17,
"video_id": "l04yM7-BWbg",
"youtube_url": "https://www.youtube.com/watch?v=l04yM7-BWbg",
"label": "1965 · The Impressions – People Get Ready",
"artist": "The Impressions",
"track": "People Get Ready",
"release": "People Get Ready / I've Been Trying",
"release_label": "Ampar MK-900",
"released": "1965",
"year": 1965,
"discogs_release_id": 5399582,
"discogs_url": "https://www.discogs.com/release/5399582-The-Impressions-People-Get-Ready-Ive-Been-Trying",
"video_title": "\"People Get Ready\" The Impressions",
"match": "exact",
"rating": 5,
"duration_seconds": 159
},
{
"position": 18,
"video_id": "x7BeGDZewHs",
"youtube_url": "https://www.youtube.com/watch?v=x7BeGDZewHs",
"label": "1965 · Fontella Bass – Rescue Me",
"artist": "Fontella Bass",
"track": "Rescue Me",
"release": "Rescue Me",
"release_label": "Checker 1120",
"released": "1965",
"year": 1965,
"discogs_release_id": 10218042,
"discogs_url": "https://www.discogs.com/release/10218042-Fontella-Bass-Rescue-Me",
"video_title": "Rescue Me - Fontella Bass (1965) (HD Quality)",
"match": "exact",
"rating": 5,
"duration_seconds": 172
},
{
"position": 19,
"video_id": "iHAOF8nucMw",
"youtube_url": "https://www.youtube.com/watch?v=iHAOF8nucMw",
"label": "1966 · Darrell Banks – Open The Door To Your Heart",
"artist": "Darrell Banks",
"track": "Open The Door To Your Heart",
"release": "Our Love / Open The Door To Your Heart",
"release_label": "Revilot Records RV 201",
"released": "1966",
"year": 1966,
"discogs_release_id": 11743663,
"discogs_url": "https://www.discogs.com/release/11743663-Darrell-Banks-Our-Love-Open-The-Door-To-Your-Heart",
"video_title": "DARRELL BANKS - Open The Door To Your Heart",
"match": "exact",
"rating": 5,
"duration_seconds": 157
},
{
"position": 20,
"video_id": "27PydomerjM",
"youtube_url": "https://www.youtube.com/watch?v=27PydomerjM",
"label": "1966 · The Capitols – Cool Jerk",
"artist": "The Capitols",
"track": "Cool Jerk",
"release": "Cool Jerk",
"release_label": "Karen Records 1524",
"released": "1966",
"year": 1966,
"discogs_release_id": 2904329,
"discogs_url": "https://www.discogs.com/release/2904329-The-Capitols-Cool-Jerk",
"video_title": "The Capitols - Cool Jerk",
"match": "exact",
"rating": 5,
"duration_seconds": 159
},
{
"position": 21,
"video_id": "PGFUDD9dN8c",
"youtube_url": "https://www.youtube.com/watch?v=PGFUDD9dN8c",
"label": "1966 · Eddie Floyd – Knock On Wood",
"artist": "Eddie Floyd",
"track": "Knock On Wood",
"release": "Knock On Wood / Got To Make A Comeback",
"release_label": "Stax S-194",
"released": "1966-07-25",
"year": 1966,
"discogs_release_id": 3992572,
"discogs_url": "https://www.discogs.com/release/3992572-Eddie-Floyd-Knock-On-Wood-Got-To-Make-A-Comeback",
"video_title": "Eddie Floyd - Knock On Wood",
"match": "exact",
"rating": 5,
"duration_seconds": 178
},
{
"position": 22,
"video_id": null,
"youtube_url": null,
"label": "1967 · Aretha Franklin – Respect",
"artist": "Aretha Franklin",
"track": "Respect",
"release": "Respect / Save Me",
"release_label": "Atlantic 650056",
"released": "1967",
"year": 1967,
"discogs_release_id": 13406237,
"discogs_url": "https://www.discogs.com/release/13406237-Aretha-Franklin-Respect-Save-Me",
"video_title": null,
"match": "none",
"rating": 1,
"duration_seconds": null
},
{
"position": 23,
"video_id": "9UTqdGZt2_4",
"youtube_url": "https://www.youtube.com/watch?v=9UTqdGZt2_4",
"label": "1967 · Linda Jones – Hypnotized",
"artist": "Linda Jones",
"track": "Hypnotized",
"release": "Hypnotized / I Can't Stop Lovin' My Baby",
"release_label": "Loma 2070",
"released": "1967-03",
"year": 1967,
"discogs_release_id": 18535990,
"discogs_url": "https://www.discogs.com/release/18535990-Linda-Jones-Hypnotized-I-Cant-Stop-Lovin-My-Baby",
"video_title": "Linda Jones - Hypnotized",
"match": "exact",
"rating": 5,
"duration_seconds": 163
},
{
"position": 24,
"video_id": "vEIS9BlQopE",
"youtube_url": "https://www.youtube.com/watch?v=vEIS9BlQopE",
"label": "1967 · The Parliaments – (I Wanna) Testify",
"artist": "The Parliaments",
"track": "(I Wanna) Testify",
"release": "(I Wanna) Testify / I Can Feel The Ice Melting",
"release_label": "Revilot Records RV 207",
"released": "1967-06",
"year": 1967,
"discogs_release_id": 13059503,
"discogs_url": "https://www.discogs.com/release/13059503-The-Parliaments-I-Wanna-Testify-I-Can-Feel-The-Ice-Melting",
"video_title": "The Parliaments - I Wanna Testify (7\" Vinyl HQ)",
"match": "exact",
"rating": 5,
"duration_seconds": 186
},
{
"position": 25,
"video_id": "AGf4BIhUfqk",
"youtube_url": "https://www.youtube.com/watch?v=AGf4BIhUfqk",
"label": "1968 · Jerry Butler – Only The Strong Survive",
"artist": "Jerry Butler",
"track": "Only The Strong Survive",
"release": "The Ice Man Cometh",
"release_label": "Mercury SR 61198",
"released": "1968",
"year": 1968,
"discogs_release_id": 26508797,
"discogs_url": "https://www.discogs.com/release/26508797-Jerry-Butler-The-Ice-Man-Cometh",
"video_title": "Jerry Butler - Only the Strong Survive",
"match": "exact",
"rating": 5,
"duration_seconds": 157
},
{
"position": 26,
"video_id": "tw4n1SJ8RTY",
"youtube_url": "https://www.youtube.com/watch?v=tw4n1SJ8RTY",
"label": "1968 · Archie Bell & The Drells – Tighten Up",
"artist": "Archie Bell & The Drells",
"track": "Tighten Up",
"release": "Tighten Up",
"release_label": "Atlantic ACS 205.006",
"released": "1968",
"year": 1968,
"discogs_release_id": 11374065,
"discogs_url": "https://www.discogs.com/release/11374065-Archie-Bell-The-Drells-Tighten-Up",
"video_title": "Tighten Up (Remastered)",
"match": "exact",
"rating": 5,
"duration_seconds": 191
},
{
"position": 27,
"video_id": "uQPqe8oKlvk",
"youtube_url": "https://www.youtube.com/watch?v=uQPqe8oKlvk",
"label": "1968 · Sly & The Family Stone – Dance To The Music",
"artist": "Sly & The Family Stone",
"track": "Dance To The Music",
"release": "Dance To The Music",
"release_label": "Epic BN 26371",
"released": "1968-04",
"year": 1968,
"discogs_release_id": 27345972,
"discogs_url": "https://www.discogs.com/release/27345972-Sly-The-Family-Stone-Dance-To-The-Music",
"video_title": "Dance to the Music",
"match": "exact",
"rating": 5,
"duration_seconds": 178
},
{
"position": 28,
"video_id": "WHzEYd0CxmA",
"youtube_url": "https://www.youtube.com/watch?v=WHzEYd0CxmA",
"label": "1969 · Sly & The Family Stone – I Want To Take You Higher",
"artist": "Sly & The Family Stone",
"track": "I Want To Take You Higher",
"release": "Stand! / I Want To Take You Higher",
"release_label": "Epic 5-10450",
"released": "1969",
"year": 1969,
"discogs_release_id": 13986637,
"discogs_url": "https://www.discogs.com/release/13986637-Sly-The-Family-Stone-Stand-I-Want-To-Take-You-Higher",
"video_title": "I Want to Take You Higher",
"match": "exact",
"rating": 5,
"duration_seconds": 181
},
{
"position": 29,
"video_id": "Tqc_EhmL8-E",
"youtube_url": "https://www.youtube.com/watch?v=Tqc_EhmL8-E",
"label": "1969 · The Isley Brothers – It's Your Thing",
"artist": "The Isley Brothers",
"track": "It's Your Thing",
"release": "It's Your Thing / Don't Give It Away",
"release_label": "T-Neck TN 901",
"released": "1969-03",
"year": 1969,
"discogs_release_id": 10489585,
"discogs_url": "https://www.discogs.com/release/10489585-The-Isley-Brothers-Its-Your-Thing-Dont-Give-It-Away",
"video_title": "The Isley Brothers - It's Your Thing (Audio)",
"match": "exact",
"rating": 5,
"duration_seconds": 170
},
{
"position": 30,
"video_id": "OrioXq_zZjI",
"youtube_url": "https://www.youtube.com/watch?v=OrioXq_zZjI",
"label": "1969 · The Temptations – I Can't Get Next To You",
"artist": "The Temptations",
"track": "I Can't Get Next To You",
"release": "I Can't Get Next To You",
"release_label": "Gordy G-7093",
"released": "1969-07-30",
"year": 1969,
"discogs_release_id": 959938,
"discogs_url": "https://www.discogs.com/release/959938-The-Temptations-I-Cant-Get-Next-To-You",
"video_title": "1969 Temptations - I Can’t Get Next To You (a #1 record--mono)",
"match": "exact",
"rating": 5,
"duration_seconds": 174
},
{
"position": 31,
"video_id": null,
"youtube_url": null,
"label": "1970 · James Brown – Get Up I Feel Like Being Like A Sex Machine (Part 1 & Part 2)",
"artist": "James Brown",
"track": "Get Up I Feel Like Being Like A Sex Machine (Part 1 & Part 2)",
"release": "Get Up I Feel Like Being Like A Sex Machine",
"release_label": "King Records 45-6318",
"released": "1970",
"year": 1970,
"discogs_release_id": 5993922,
"discogs_url": "https://www.discogs.com/release/5993922-James-Brown-Get-Up-I-Feel-Like-Being-Like-A-Sex-Machine",
"video_title": null,
"match": "none",
"rating": 1,
"duration_seconds": null
},
{
"position": 32,
"video_id": "BJNMw_Zstj0",
"youtube_url": "https://www.youtube.com/watch?v=BJNMw_Zstj0",
"label": "1970 · The Moments – Love On A Two-Way Street",
"artist": "The Moments",
"track": "Love On A Two-Way Street",
"release": "Love On A Two-Way Street",
"release_label": "Stang Records ST 5012",
"released": "1970-03",
"year": 1970,
"discogs_release_id": 24140603,
"discogs_url": "https://www.discogs.com/release/24140603-The-Moments-Love-On-A-Two-Way-Street",
"video_title": "MOMENTS Love on a Two-Way Street",
"match": "exact",
"rating": 5,
"duration_seconds": 205
},
{
"position": 33,
"video_id": "iN3KsbnQZxU",
"youtube_url": "https://www.youtube.com/watch?v=iN3KsbnQZxU",
"label": "1970 · Curtis Mayfield – Move On Up",
"artist": "Curtis Mayfield",
"track": "Move On Up",
"release": "Curtis",
"release_label": "Curtom CRS 8005",
"released": "1970-09",
"year": 1970,
"discogs_release_id": 2491398,
"discogs_url": "https://www.discogs.com/release/2491398-Curtis-Mayfield-Curtis",
"video_title": "Move on Up (Extended Version)",
"match": "exact",
"rating": 5,
"duration_seconds": 536
},
{
"position": 34,
"video_id": "LbKf0N7IwYU",
"youtube_url": "https://www.youtube.com/watch?v=LbKf0N7IwYU",
"label": "1971 · Kool & The Gang – Who's Gonna Take The Weight",
"artist": "Kool & The Gang",
"track": "Who's Gonna Take The Weight",
"release": "The Best Of Kool And The Gang",
"release_label": "De-Lite Records DE-2009",
"released": "1971",
"year": 1971,
"discogs_release_id": 919610,
"discogs_url": "https://www.discogs.com/release/919610-Kool-The-Gang-The-Best-Of-Kool-And-The-Gang",
"video_title": "Kool & The Gang Pneumonia",
"match": "alternate",
"rating": 3,
"duration_seconds": 183
},
{
"position": 35,
"video_id": null,
"youtube_url": null,
"label": "1971 · Marvin Gaye – What’s Going On",
"artist": "Marvin Gaye",
"track": "What’s Going On",
"release": "What’s Going On / That’s The Way Love Is",
"release_label": "Tamla Motown 1C 152-50 367/68",
"released": "1971",
"year": 1971,
"discogs_release_id": 2564858,
"discogs_url": "https://www.discogs.com/release/2564858-Marvin-Gaye-Whats-Going-On-Thats-The-Way-Love-Is",
"video_title": null,
"match": "none",
"rating": 1,
"duration_seconds": null
},
{
"position": 36,
"video_id": "_YMwICDV5mo",
"youtube_url": "https://www.youtube.com/watch?v=_YMwICDV5mo",
"label": "1971 · The Undisputed Truth – Smiling Faces Sometimes",
"artist": "The Undisputed Truth",
"track": "Smiling Faces Sometimes",
"release": "Smiling Faces Sometimes",
"release_label": "Gordy G 7108",
"released": "1971",
"year": 1971,
"discogs_release_id": 10367623,
"discogs_url": "https://www.discogs.com/release/10367623-The-Undisputed-Truth-Smiling-Faces-Sometimes",
"video_title": "The Undisputed Truth Smiling Faces Sometimes MQ",
"match": "exact",
"rating": 5,
"duration_seconds": 207
},
{
"position": 37,
"video_id": "36RAB8sKeY4",
"youtube_url": "https://www.youtube.com/watch?v=36RAB8sKeY4",
"label": "1972 · Eddie Kendricks – Girl You Need A Change Of Mind",
"artist": "Eddie Kendricks",
"track": "Girl You Need A Change Of Mind",
"release": "People...Hold On",
"release_label": "Tamla T315L",
"released": "1972",
"year": 1972,
"discogs_release_id": 5055281,
"discogs_url": "https://www.discogs.com/release/5055281-Eddie-Kendricks-PeopleHold-On",
"video_title": "Eddie Kendricks - Girl You Need A Change Of Mind - [1972]",
"match": "exact",
"rating": 5,
"duration_seconds": 468
},
{
"position": 38,
"video_id": "JRRINBV22sg",
"youtube_url": "https://www.youtube.com/watch?v=JRRINBV22sg",
"label": "1972 · Manu Dibango – Soul Makossa",
"artist": "Manu Dibango",
"track": "Soul Makossa",
"release": "Soul Makossa / Lily",
"release_label": "Fiesta 51.199",
"released": "1972",
"year": 1972,
"discogs_release_id": 10766310,
"discogs_url": "https://www.discogs.com/release/10766310-Manu-Dibango-Soul-Makossa-Lily",
"video_title": "Manu Dibango – Soul Makossa (Afro Funk)",
"match": "exact",
"rating": 5,
"duration_seconds": 267
},
{
"position": 39,
"video_id": "LXlsJKP_FWI",
"youtube_url": "https://www.youtube.com/watch?v=LXlsJKP_FWI",
"label": "1972 · The O'Jays – Love Train",
"artist": "The O'Jays",
"track": "Love Train",
"release": "Love Train",
"release_label": "Philadelphia International Records ZS7 3524",
"released": "1972-12-20",
"year": 1972,
"discogs_release_id": 6938191,
"discogs_url": "https://www.discogs.com/release/6938191-The-OJays-Love-Train",
"video_title": "The O'Jays - Love Train (Original video)",
"match": "exact",
"rating": 5,
"duration_seconds": 162
},
{
"position": 40,
"video_id": "NA2X1040_gY",
"youtube_url": "https://www.youtube.com/watch?v=NA2X1040_gY",
"label": "1973 · Sylvia – Pillow Talk",
"artist": "Sylvia",
"track": "Pillow Talk",
"release": "Pillow Talk",
"release_label": "Vibration VI-521",
"released": "1973",
"year": 1973,
"discogs_release_id": 8759999,
"discogs_url": "https://www.discogs.com/release/8759999-Sylvia-Pillow-Talk",
"video_title": "Sylvia - Pillow Talk",
"match": "exact",
"rating": 5,
"duration_seconds": 250
},
{
"position": 41,
"video_id": "-D9PdjuuwNM",
"youtube_url": "https://www.youtube.com/watch?v=-D9PdjuuwNM",
"label": "1973 · First Choice – Armed And Extremely Dangerous (Stereo)",
"artist": "First Choice",
"track": "Armed And Extremely Dangerous (Stereo)",
"release": "Armed And Extremely Dangerous",
"release_label": "Philly Groove Records Incorporated PG 175",
"released": "1973",
"year": 1973,
"discogs_release_id": 23633159,
"discogs_url": "https://www.discogs.com/release/23633159-First-Choice-Armed-And-Extremely-Dangerous",
"video_title": "First Choice - Armed And Extremely Dangerous",
"match": "close",
"rating": 4,
"duration_seconds": 163
},
{
"position": 42,
"video_id": null,
"youtube_url": null,
"label": "1973 · The Temptations – Law Of The Land",
"artist": "The Temptations",
"track": "Law Of The Land",
"release": "Ma / Law Of The Land",
"release_label": "Tamla Motown TSM-NP 64151",
"released": "1973",
"year": 1973,
"discogs_release_id": 4688891,
"discogs_url": "https://www.discogs.com/release/4688891-The-Temptations-Ma-Law-Of-The-Land",
"video_title": null,
"match": "none",
"rating": 1,
"duration_seconds": null
},
{
"position": 43,
"video_id": "CCSvNZWpXaM",
"youtube_url": "https://www.youtube.com/watch?v=CCSvNZWpXaM",
"label": "1974 · Gloria Gaynor – Never Can Say Goodbye (Stereo)",
"artist": "Gloria Gaynor",
"track": "Never Can Say Goodbye (Stereo)",
"release": "Never Can Say Goodbye",
"release_label": "MGM Records M 14748",
"released": "1974",
"year": 1974,
"discogs_release_id": 1454141,
"discogs_url": "https://www.discogs.com/release/1454141-Gloria-Gaynor-Never-Can-Say-Goodbye",
"video_title": "Gloria Gaynor - Never can say goodbye",
"match": "close",
"rating": 4,
"duration_seconds": 215
},
{
"position": 44,
"video_id": "M3wpG6Rw-tE",
"youtube_url": "https://www.youtube.com/watch?v=M3wpG6Rw-tE",
"label": "1974 · MFSB – Love Is The Message",
"artist": "MFSB",
"track": "Love Is The Message",
"release": "Love Is The Message",
"release_label": "Philadelphia International Records ZQ 32707",
"released": "1974",
"year": 1974,
"discogs_release_id": 374248,
"discogs_url": "https://www.discogs.com/release/374248-MFSB-Love-Is-The-Message",
"video_title": "MFSB - Love Is the Message (Official Audio) ft. The Three Degrees",
"match": "exact",
"rating": 5,
"duration_seconds": 398
},
{
"position": 45,
"video_id": "90QXhl95qP8",
"youtube_url": "https://www.youtube.com/watch?v=90QXhl95qP8",
"label": "1974 · B. T. Express – Do It ('Til You're Satisfied)",
"artist": "B. T. Express",
"track": "Do It ('Til You're Satisfied)",
"release": "Do It ('Til You're Satisfied)",
"release_label": "Scepter Records SCE-12395",
"released": "1974",
"year": 1974,
"discogs_release_id": 2612717,
"discogs_url": "https://www.discogs.com/release/2612717-B-T-Express-Do-It-Til-Youre-Satisfied",
"video_title": "B.T. Express - DO IT (Til' You're Satisfied)",
"match": "exact",
"rating": 5,
"duration_seconds": 194
},
{
"position": 46,
"video_id": "9Q028GAVPDQ",
"youtube_url": "https://www.youtube.com/watch?v=9Q028GAVPDQ",
"label": "1975 · Salsoul Orchestra – Salsoul Hustle",
"artist": "Salsoul Orchestra",
"track": "Salsoul Hustle",
"release": "Salsoul Hustle",
"release_label": "Salsoul Records SZ 2002",
"released": "1975",
"year": 1975,
"discogs_release_id": 27810153,
"discogs_url": "https://www.discogs.com/release/27810153-Salsoul-Orchestra-Salsoul-Hustle",
"video_title": "Salsoul Hustle - Salsoul Orchestra",
"match": "exact",
"rating": 5,
"duration_seconds": 213
},
{
"position": 47,
"video_id": "ZbzUKjfYPS4",
"youtube_url": "https://www.youtube.com/watch?v=ZbzUKjfYPS4",
"label": "1975 · South Shore Commission – Free Man",
"artist": "South Shore Commission",
"track": "Free Man",
"release": "Free Man",
"release_label": "Wand WND 11287",
"released": "1975",
"year": 1975,
"discogs_release_id": 15267035,
"discogs_url": "https://www.discogs.com/release/15267035-South-Shore-Commission-Free-Man",
"video_title": "South Shore Commission - Free Man (from vinyl 45) (1975)",
"match": "exact",
"rating": 5,
"duration_seconds": 194
},
{
"position": 48,
"video_id": "DRCuu55e6YA",
"youtube_url": "https://www.youtube.com/watch?v=DRCuu55e6YA",
"label": "1975 · Gwen McCrae – Rockin' Chair",
"artist": "Gwen McCrae",
"track": "Rockin' Chair",
"release": "Rockin' Chair",
"release_label": "Cat 1996",
"released": "1975-12-02",
"year": 1975,
"discogs_release_id": 30173804,
"discogs_url": "https://www.discogs.com/release/30173804-Gwen-McCrae-Rockin-Chair",
"video_title": "Gwen McCrae * Rockin' Chair (Clarence Reid)",
"match": "exact",
"rating": 5,
"duration_seconds": 196
},
{
"position": 49,
"video_id": "r4PJhHqZC7U",
"youtube_url": "https://www.youtube.com/watch?v=r4PJhHqZC7U",
"label": "1976 · Ecstasy Passion Pain – Touch And Go",
"artist": "Ecstasy Passion Pain",
"track": "Touch And Go",
"release": "Touch And Go",
"release_label": "Roulette R-7182",
"released": "1976",
"year": 1976,
"discogs_release_id": 14594415,
"discogs_url": "https://www.discogs.com/release/14594415-Ecstasy-Passion-Pain-Touch-And-Go",
"video_title": "Touch and Go",
"match": "exact",
"rating": 5,
"duration_seconds": 260
},
{
"position": 50,
"video_id": "sgvQ9df5MPw",
"youtube_url": "https://www.youtube.com/watch?v=sgvQ9df5MPw",
"label": "1976 · The Trammps – That's Where The Happy People Go",
"artist": "The Trammps",
"track": "That's Where The Happy People Go",
"release": "Where The Happy People Go",
"release_label": "Atlantic SD 18172",
"released": "1976-04-15",
"year": 1976,
"discogs_release_id": 120514,
"discogs_url": "https://www.discogs.com/release/120514-The-Trammps-Where-The-Happy-People-Go",
"video_title": "That's Where the Happy People Go",
"match": "exact",
"rating": 5,
"duration_seconds": 475
},
{
"position": 51,
"video_id": "nLQjENXZlZs",
"youtube_url": "https://www.youtube.com/watch?v=nLQjENXZlZs",
"label": "1976 · Double Exposure – Ten Percent",
"artist": "Double Exposure",
"track": "Ten Percent",
"release": "Ten Percent",
"release_label": "Salsoul Records 45S-1002",
"released": "1976-11-25",
"year": 1976,
"discogs_release_id": 1943741,
"discogs_url": "https://www.discogs.com/release/1943741-Double-Exposure-Ten-Percent",
"video_title": "Double Exposure - Ten Percent",
"match": "exact",
"rating": 5,
"duration_seconds": 178
},
{
"position": 52,
"video_id": "fr5q6eGlpZY",
"youtube_url": "https://www.youtube.com/watch?v=fr5q6eGlpZY",
"label": "1977 · First Choice – Doctor Love",
"artist": "First Choice",
"track": "Doctor Love",
"release": "Doctor Love",
"release_label": "Gold Mind Records 12G-4004",
"released": "1977",
"year": 1977,
"discogs_release_id": 1929769,
"discogs_url": "https://www.discogs.com/release/1929769-First-Choice-Doctor-Love",
"video_title": "First Choice - Doctor Love • TopPop",
"match": "exact",
"rating": 5,
"duration_seconds": 172
},
{
"position": 53,
"video_id": "f0h8Pjf4vNM",
"youtube_url": "https://www.youtube.com/watch?v=f0h8Pjf4vNM",
"label": "1977 · Donna Summer – I Feel Love",
"artist": "Donna Summer",
"track": "I Feel Love",
"release": "I Feel Love",
"release_label": "Casablanca NB 884 DJ",
"released": "1977",
"year": 1977,
"discogs_release_id": 13281830,
"discogs_url": "https://www.discogs.com/release/13281830-Donna-Summer-I-Feel-Love",
"video_title": "Donna Summer - I Feel Love (Live)",
"match": "exact",
"rating": 5,
"duration_seconds": 228
},
{
"position": 54,
"video_id": "MBAz1A30jvU",
"youtube_url": "https://www.youtube.com/watch?v=MBAz1A30jvU",
"label": "1977 · Loleatta Holloway – Hit And Run",
"artist": "Loleatta Holloway",
"track": "Hit And Run",
"release": "Hit And Run",
"release_label": "Gold Mind Records GM-4001",
"released": "1977-03-04",
"year": 1977,
"discogs_release_id": 1699470,
"discogs_url": "https://www.discogs.com/release/1699470-Loleatta-Holloway-Hit-And-Run",
"video_title": "Loleatta Holloway - Hit And Run (1977)",
"match": "exact",
"rating": 5,
"duration_seconds": 207
},
{
"position": 55,
"video_id": "c3vtOEiO6TY",
"youtube_url": "https://www.youtube.com/watch?v=c3vtOEiO6TY",
"label": "1978 · Sylvester – You Make Me Feel (Mighty Real) ",
"artist": "Sylvester",
"track": "You Make Me Feel (Mighty Real) ",
"release": "You Make Me Feel (Mighty Real)",
"release_label": "Fantasy F-846",
"released": "1978",