-
Notifications
You must be signed in to change notification settings - Fork 0
/
albums.js
5314 lines (5314 loc) · 359 KB
/
albums.js
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
[
{
"Id": 1,
"ArtistId": 1,
"Title": "Ace of Spades (SQLite)",
"Description": "Motörhead are the founding fathers of speed and thrash metal. Without this band, there would be no Slayer or Sepultura, so you've at least got to give Lemmy and Co. props for being so influential. And \"Aces of Spades\" is an essential, legendary speed metal classic. It's full of fast, meaty riffs, great solos, toe-tapping drums, and catchy, gruff vocals. Almost every song on here (especially the title track, \"Love Me Like a Reptile,\" and \"We Are The Road Crew\") is very catchy. And the album opening title track, which has a speedy, groove-y main riff, is world renowned. Other highlights include the wah-wah solo and shout-along refrain on \"Fire, Fire,\" \"Jailbait,\" \"Dance\" (which has a pair of tasty guitar solos), the X-rated \"The Chase Is Better Than The Catch,\" and the famous, rhythmic, nearly dance-able \"Please Don't Touch.\" All in all, if you're looking for great, groove-y, contagious and exciting speed metal, Motorhead \"aces\" it.",
"Year": 1978,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/618Zuqc4J5L._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B00005NHO2/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00005NHO2&linkCode=as2&tag=westwindtechn-20",
"SpotifyUrl": "https://play.spotify.com/album/2La9yFPh8VZ1VsaVXtHazI",
"Artist": {
"Id": 1,
"ArtistName": "Motörhead (Sql)",
"Description": "Motörhead have never JUST been the best rock'n'roll band in the world. They've never JUST been the loudest. Or the hardest. Or the toughest. Or the bad-ass-est. No...Motörhead are also a lifestyle.",
"ImageUrl": "https://www.thewrap.com/wp-content/uploads/2015/11/motorhead-phil-taylor.jpg",
"AmazonUrl": "5/1/2017 11:59:47 PM"
},
"Tracks": [
{
"Id": 1,
"AlbumId": 1,
"SongName": "Jailbait",
"Length": "3:12",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 2,
"AlbumId": 1,
"SongName": "Ace of Spades (Sql)",
"Length": "2:49",
"Bytes": 0,
"UnitPrice": 1.29
},
{
"Id": 3,
"AlbumId": 1,
"SongName": "Love me like a Reptile",
"Length": "2:23",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 4,
"AlbumId": 1,
"SongName": "Shoot you in back",
"Length": "2:39",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 5,
"AlbumId": 1,
"SongName": "We are the Road Crew",
"Length": "3:12",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 6,
"AlbumId": 1,
"SongName": "The Chase is better than the Catch",
"Length": "4:18",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 2,
"ArtistId": 2,
"Title": "Act III",
"Description": "Act III is the third studio album by the thrash metal band Death Angel, released in 1990 on Geffen Records. Regarded by many critics and fans as the band's finest effort, the album was produced by famed metal producer Max Norman (Ozzy Osbourne, Megadeth, Loudness), and marked the first (and only) major label release by Death Angel. The album spawned the singles \"Seemingly Endless Time\" and \"A Room with a View\", with both songs receiving music videos and airplay on MTV's Headbangers Ball. Songs like \"Discontinued\" incorporate elements of funk.\n\n@icon-warning On tour in support of Act III in 1991, the band suffered a serious tour **bus crash** in which drummer Andy Galeon was critically injured. During his yearlong recovery, singer Mark Osegueda left the band, effectively ending Death Angel. In 2001, the band reunited for Testament singer Chuck Billy's Thrash of the Titans benefit concert (minus Gus Pepa) and went on to release The Art of Dying in 2004, followed by three more albums.",
"Year": 1990,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/51xWXhuTiZL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B0085LGSD4/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B0085LGSD4&linkCode=as2&tag=westwindtechn-20&linkId=FFHUXDGAYHSQRISL",
"SpotifyUrl": "https://play.spotify.com/album/1Dj4ZFmEwdSTLHxFMRWYx4",
"Artist": {
"Id": 2,
"ArtistName": "Death Angel",
"Description": "Death Angel is a thrash metal band from Concord, California, initially active from 1982 to 1991 and again since 2001. Death Angel has released seven studio albums, two demo tapes, one box set and two live albums.\r\n\r\nTwo independent releases, The Ultra-Violence (1987) and Frolic Through the Park (1988), attracted the attention of Geffen Records, which signed the quintet in 1989 and released their next album, Act III, one year later. While Death Angel was touring in support of Act III, drummer Andy Galeon was injured in a tour bus accident and needed more than a year to fully recover. This resulted in the band's break up in 1991. However, Death Angel reformed in 2001 (without original guitarist Gus Pepa) at the Thrash of the Titans benefit concert for Testament singer Chuck Billy. The band continues to record and perform today.",
"ImageUrl": "https://1.bp.blogspot.com/_uiTrE4Nd4kg/S2XPYowzYjI/AAAAAAAAK0M/qnu-CmKEnHA/s400/f_7m_3758f17.jpg",
"AmazonUrl": null
},
"Tracks": [
{
"Id": 7,
"AlbumId": 2,
"SongName": "Seemingly Endless Time",
"Length": "3:50",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 8,
"AlbumId": 2,
"SongName": "Stop",
"Length": "5:10",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 9,
"AlbumId": 2,
"SongName": "The Orgization",
"Length": "4:16",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 10,
"AlbumId": 2,
"SongName": "A Room with a View",
"Length": "4:41",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 3,
"ArtistId": 3,
"Title": "Aenema",
"Description": "With its heavy-duty distortion, weighty rhythms, and cynical lyrics, Tool is a heavy metal band for the '90s. Rather like Metallica circa ...And Justice for All, the sound is focused heavily on texture, with vocals and guitars layered one atop the other, and heart-pounding drums underlying everything. There's not a whole lot of variety on Tool's second full-length album--most of the songs start off fairly low-key, kicking into high gear for the chorus, and repeat--but Maynard James Keenan's distinctive voice, the prog-rock stylings over a heavy metal base, and a supremely unhealthy dose of vitriol make this the perfect album to bang your head to.",
"Year": 1996,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/51RpKf9APDL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B00000099Y/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00000099Y&linkCode=as2&tag=westwindtechn-20&linkId=333T3S6PUBB3SSZH",
"SpotifyUrl": "",
"Artist": {
"Id": 3,
"ArtistName": "Tool",
"Description": "Tool's greatest breakthrough was to meld dark underground metal with the ambition of art rock. Although Metallica wrote their multi-sectioned, layered songs as if they were composers, they kept their musical attack ferociously at street level. Tool didn't. They embraced the artsy, bohemian preoccupations of Jane's Addiction while they simultaneously paid musical homage to the relentlessly bleak visions of grindcore, death metal, and thrash. Even with their post-punk influences, they executed their music with the aesthetic of prog rock, alternating between long, detailed instrumental interludes and lyrical rants in their songs.\r\n\r\nUndertowTool had a knack for conveying the strangled, oppressive angst that the alternative nation of the early '90s claimed as its own. So, Tool were able to slip into the definition of alternative rock during the post-Nirvana era, landing a slot on the third Lollapalooza tour in 1993, which helped their first full-length debut album, Undertow, rocket to platinum status. By the time the band delivered its belated follow-up, Ænima, in 1996, alternative rock had lost its grip on the mainstream of America, and Tool's audience had shaped up as essentially metal-oriented, which meant that the group and the record didn't capture as big an audience as their first album, despite debuting at number two on the charts. After a co-headlining slot with Korn on Lollapalooza '97 wrapped up, Tool remained on the road, supporting Ænima until well into the next year.",
"ImageUrl": "https://cps-static.rovicorp.com/3/JPG_400/MI0003/371/MI0003371431.jpg?partner=allrovi.com",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 11,
"AlbumId": 3,
"SongName": "Stinkfirstr",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 12,
"AlbumId": 3,
"SongName": "Eulogy",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 13,
"AlbumId": 3,
"SongName": "H.",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 14,
"AlbumId": 3,
"SongName": "Useful Idiot",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 15,
"AlbumId": 3,
"SongName": "Forty size and 2",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 4,
"ArtistId": 4,
"Title": "Alchemy index, Vols. 3-4",
"Description": "Post-hardcore foursome Thrice seems to revel in pushing boundaries and overturning expectations. The second two-disc installment of THE ALCHEMY INDEX answers VOLS. 1 & 2 (FIRE & WATER) from the first set with VOLS. 3 & 4 (EARTH & AIR). There’s little evidence of the ferocious screamo aesthetic that characterized releases like THE ILLUSION OF SAFETY; instead AIR & EARTH ventures into mostly acoustic, highly melodic territory. The tight, technically complex instrumental prowess of the band is still on display, but the mood is much more atmospheric. The songs veer from ethereal and psychedelic to a more conventional folk or singer-songwriter vein (this is especially true of the tracks on the EARTH disc), but the whole adds up to an impressive, original showing from one of the genre’s innovators.",
"Year": 2008,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/61AY91dfLAL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B0015FS8QC/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B0015FS8QC&linkCode=as2&tag=westwindtechn-20&linkId=2JW432WUQFTHXXBH",
"SpotifyUrl": "https://play.spotify.com/album/2FNlKycIizpYWMID16RMzO",
"Artist": {
"Id": 4,
"ArtistName": "Thrice",
"Description": "Thrice is an American rock band from Irvine, California, formed in 1998. The group was founded by guitarist/vocalist Dustin Kensrue and guitarist Teppei Teranishi while they were in high school.[1]\r\n\r\nEarly in their career, the band was known for fast, hard music based in heavily distorted guitars, prominent lead guitar lines, and frequent changes in complex time signatures.[2] This style is exemplified on their second album, The Illusion of Safety (2002) and their third album The Artist in the Ambulance (2003). Their fourth album Vheissu (2005) made significant changes by incorporating electronic beats, keyboards, and more experimental and nuanced songwriting.[3][4] Their fifth effort was a double album entitled The Alchemy Index (2007/2008), released as two sets of two CDs that together make a 4-part, 24-song cycle. Each of the four 6-song EPs of the Alchemy Index features significantly different styles, based on different aspects of the band's musical aesthetic which reflect the elemental themes of fire, water, air and earth, both lyrically and musically.[5] The band's sixth album, entitled Beggars, was released on August 11, 2009, and their seventh, Major/Minor on September 20, 2011. The most recent albums feature a refined combination of the band's different experiments and explorations.",
"ImageUrl": "https://www.bucketlistmusicreviews.com/wp-content/uploads/2017/12/DSC8383-Thrice-678x381.jpg",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 16,
"AlbumId": 4,
"SongName": "Broken Lungs",
"Length": "4:14",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 17,
"AlbumId": 4,
"SongName": "The Sky is falling",
"Length": "4:21",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 18,
"AlbumId": 4,
"SongName": "Moving Mountains",
"Length": "2:55",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 5,
"ArtistId": 5,
"Title": "American Paranoia",
"Description": "Screaming '86-era political hardcore/metal crossover from Attitude Adjustment of the East Bay of Northern California, quite possibly the best of its genre. Fast, musically tight, well-produced, this rare piece of Pusmort vinyl CD re-issue is a must-own.",
"Year": 1986,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/61iaOB91X6L._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B000024VGR/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B000024VGR&linkCode=as2&tag=westwindtechn-20&linkId=BIWHDZDBGW7Z5M5R",
"SpotifyUrl": "https://open.spotify.com/album/6YMK8hmqzbpbm01syXcjXv",
"Artist": {
"Id": 5,
"ArtistName": "Attitude Adjustment",
"Description": "Attitude Adjustment is a crossover thrash band originally formed in the early 1980s in the San Francisco Bay Area.\r\n\r\nThe band was formed by Chris Kontos, Eric Smith and Rick Strahl in early 1985, with Nick Koljian briefly on vocals. The lineup was changed with the addition of Kevin Reed on vocals. This lineup played a number of initial shows at Ruthies Inn, the New Method, the Mabuhay Gardens and other Bay Area venues. Several months later, Kevin Reed was replaced by Andy Andersen on vocals and Chris Scapparo joined as a second guitarist. They shortly went into the studio to record the \"Dead Serious Demo\" in 1985. The demo was recorded at Peter Miller Studios and engineered by Eric Kauschen.\r\n\r\nIn 1986 and 1987, Attitude Adjustment played frequent gigs throughout California. They played alongside bands like Forbidden (Known as Forbidden Evil at that time), Vio-Lence, Sacrilege, Possessed, Hirax, Death Angel, R.K.L., Dr. Know, Suicidal Tendencies, Corrosion of Conformity, D.R.I., Discharge, UK Subs, Neurosis, The Exploited and Operation Ivy, among others. The band finally released their debut album, American Paranoia released by Pusmort Records. This album is considered to be a \"crossover\" between hardcore and thrash metal and was one of the first in this genre.\r\n\r\nAt the end of 1987, Andy Andersen, Chris Scaparro and Rick Strahl joined up with former Condemned to Death guitarist Keith Chatham, to form Condemned Attitude, which would later be renamed Attitude.\r\n\r\nAttitude released an LP and an EP, taking a more thrash metal-like style, with Andy Andersen returning to his initial style of singing. Rick Strahl and Chris Scaparro became the new guitarists with Eric Brecht (formerly of DRI) on drums during this time.\r\n\r\nChris Kontos, Eric Smith and Kevin Reed continued on with Attitude Adjustment and in 1988, this new lineup released the EP No More Mr. Nice Guy, again on Pusmort Records, which is very different from American Paranoia.\r\n\r\nBy 1990, former members Andy Anderson, Chris Scaparro, and Rick Strahl formed a new band with a more hard rock direction. The band was called Two Bit Thief and they kept it alive until 1995.\r\n\r\nKontos and Reed returned to the name \"Attitude Adjustment\" in 1991, but with another new lineup to record their last studio album, Out Of Hand, again mixing hardcore with thrash metal. In 1993, the American Paranoia LP and the No More Mr. Nice Guy EP were re-issued on CD. The LP version includes the \"Dead Serious\" demo.\r\n\r\nChris Kontos joined Robb Flynn (who left Vio-Lence) in 1993 to form the post thrash band Machine Head.",
"ImageUrl": "https://west-wind.com/rick/photoalbum/band/newmethod.jpg",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 19,
"AlbumId": 5,
"SongName": "Grey World",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 20,
"AlbumId": 5,
"SongName": "Bombs",
"Length": "0:0)",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 21,
"AlbumId": 5,
"SongName": "Hunger and Poverty",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 22,
"AlbumId": 5,
"SongName": "Fuck Chuck",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 23,
"AlbumId": 5,
"SongName": "Dead Serious",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 24,
"AlbumId": 5,
"SongName": "American Paranoia",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 25,
"AlbumId": 5,
"SongName": "9 to 5 Religion",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 6,
"ArtistId": 6,
"Title": "Among the Living",
"Description": "Most speed metal fans were initiated by way of either Metallica or Megadeth. Anthrax was my introduction. Albums like this speak to the fifteen year-old in us that gets tired of turning on the radio and hearing only prefabricated crap. 13 years after first hearing this album, and owning it both as cassette and CD, I'm proud to say I still enjoy it.\r\n\r\nWhat isn't to like about it? Out of The Big Four ( Anthrax, Magadeth, Metallica, and Slayer), Anthrax possibly had the best singer. Joey Belladonna, silly hairdo and all, had a tremendous voice. The guitar team of Scott Ian and Dan Spitz was bulletproof. Spitz was possibly the most underrated lead guitarist in all of heavy metal. He sounded like nobody else. Ian deserves a place in the pantheon of great rhythm guitarists. The uncle-nephew rhythm section of Charlie Benante and Frank Bello is unforgettable. Benante had to have been hiding two or three extra arms somewhere. And last but not least, Bello played without a pick like all real bassists. Plus he played FAST.\r\nAnd finally, Anthrax showed the greatest imagination and diversity with their lyrics on this album. \"I Am the Law\" is about Judge Dredd. \"Among the Living\" and \"A Skeleton in the Closet\" are based on Stephen King's work. \"N.F.L.\" is about a fallen comedian, either Lenny Bruce or John Belushi I think. The arms race, particularly under Reagan, was attacked in \"One World\". And who can forget the anti-racism classic \"Indians\"? The lyrics were written by juveniles on ATL. Smart juveniles.",
"Year": 1988,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/51gh0LPePJL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B000W0B0KM/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B000W0B0KM&linkCode=as2&tag=westwindtechn-20&linkId=TNLABEIZTAU2JKGF",
"SpotifyUrl": "https://play.spotify.com/album/4Y2jEzU70sLpTCMCl6JE0t",
"Artist": {
"Id": 6,
"ArtistName": "Anthrax",
"Description": "Anthrax is an American thrash metal band from New York, formed in 1981 by guitarist Scott Ian and bassist Dan Lilker. The group was considered one of the leaders of the thrash metal scene during the 1980s. When the genre's popularity increased, Anthrax was one of its \"big four\" with Metallica, Megadeth and Slayer. As of 2014 the band has released ten studio albums, a number of singles and an EP with American hip hop group Public Enemy. According to Nielsen SoundScan Anthrax sold 2.5 million records in the United States from 1991 to 2004, with worldwide sales of over 15 million.",
"ImageUrl": "https://static01.nyt.com/images/2016/09/19/arts/19ANTHRAX1/19ANTHRAX1-articleLarge.jpg?quality=75&auto=webp&disable=upscale",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 26,
"AlbumId": 6,
"SongName": "Among the Living",
"Length": "5:16",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 27,
"AlbumId": 6,
"SongName": "Caught in a Mosh",
"Length": "5:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 28,
"AlbumId": 6,
"SongName": "I am the Law",
"Length": "5:54",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 29,
"AlbumId": 6,
"SongName": "Indians",
"Length": "5:41",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 30,
"AlbumId": 6,
"SongName": "One World",
"Length": "5:55",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 7,
"ArtistId": 7,
"Title": "Angelwitch",
"Description": "This NOWBHM classic is widely regarded amongst fans as the band s finest hour. This 30th Anniversary Deluxe Expanded Edition of the band s 1980 album includes the entire recorded output from this era ; BBC Friday Rock Show session tracks along with a complete second disc of rare demo s, alternative versions and 12 single mixes, makes this the definitive Angel Witch Anniversary collection. 30 tracks.",
"Year": 1979,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/41QzUbIXJUL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B003IBFP3K/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B003IBFP3K&linkCode=as2&tag=westwindtechn-20&linkId=ZPUTZUBTN5EVWPV6",
"SpotifyUrl": "",
"Artist": {
"Id": 7,
"ArtistName": "Angelwitch",
"Description": "Angel Witch are a British heavy metal band which formed in London, England in 1977 as part of the New Wave of British Heavy Metal movement. Despite critical acclaim in the music press, their only UK chart action consisted of a single week at No.75 (the lowest position in the charts) in 1980.",
"ImageUrl": "https://www.spirit-of-metal.com/les%20goupes/A/Angel%20Witch/pics/638f_1.jpg",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 31,
"AlbumId": 7,
"SongName": "Angelwitch",
"Length": "4:33",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 8,
"ArtistId": 8,
"Title": "Animosity",
"Description": "One of the best punk metal cross-over albums ever made and maybe *the* album that defined the genre.\r\n\r\nCorrosion of Conformity was one of the first bands to fully embrace both their punk rock roots as well as much heavier tones and rhythms of new school metal bands, combining both the social messaging and furious speed of punk, with the heavy guitars and drums of the metal world. \r\n\r\nAnimosity is a testament to the best of those two worlds colliding, which resulted in a masterpiece of energy, angst and furor that has not been matched very often ever since.",
"Year": 0,
"ImageUrl": "https://img.discogs.com/v1wmL0dgduloeySennfDd0eQakc=/fit-in/600x595/filters:strip_icc():format(jpeg):mode_rgb():quality(90)/discogs-images/R-1417235-1440619115-8669.jpeg.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B000001C88/ref=as_li_ss_tl?ie=UTF8&tag=westwindtechn-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B000001C88",
"SpotifyUrl": "https://play.spotify.com/album/0rAGxy0IjEIU7bWK9khdLT",
"Artist": {
"Id": 8,
"ArtistName": "Corrosion of Conformity",
"Description": "One of the first punk-metal fusion bands, Corrosion of Conformity were formed in North Carolina by guitarist Woody Weatherman during the early '80s. In their early years, C.O.C. became known for their aggressive sound, intelligent political lyrics, and willingness to break away from both hardcore and metal conventions. In the '90s, their shift to a more stripped-down, deliberate sound -- sort of Black Sabbath filtered through the Deep South -- brought them enough in line with the alt metal Zeitgeist to bring them a measure of mainstream popularity. Then recently they turned back to their hardcore roots with ther 2012 and 2014 releases that mixes the raw",
"ImageUrl": "https://theobelisk.net/obelisk/wp-content/uploads/2012/01/coc.jpg",
"AmazonUrl": "http://theobelisk.net/obelisk/wp-content/uploads/2012/01/coc.jpg"
},
"Tracks": [
{
"Id": 32,
"AlbumId": 8,
"SongName": "Loss for Words",
"Length": "4:03",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 33,
"AlbumId": 8,
"SongName": "Mad World",
"Length": "1:53",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 34,
"AlbumId": 8,
"SongName": "Consumed",
"Length": "2:52",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 35,
"AlbumId": 8,
"SongName": "Holier",
"Length": "2:25",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 36,
"AlbumId": 8,
"SongName": "Positive Outlook",
"Length": "3:01",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 9,
"ArtistId": 9,
"Title": "Another Sad Story in the Big City",
"Description": "Two-Bit Thief embraced more conventional hard rock on Another Sad Story In the Big City. Though the obscure band isn't terribly original, most of the songs are gritty, catchy and honest.",
"Year": 1990,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/51XxSF5k7EL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B000008LTK/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B000008LTK&linkCode=as2&tag=westwindtechn-20&linkId=PIM3OH7KV24TC7TI",
"SpotifyUrl": "",
"Artist": {
"Id": 9,
"ArtistName": "Two Bit Thief",
"Description": "Two Bit Thief is a San Fransisco Bay Area band that originated from the base of a number of Bay Area Punk and Metal bands. Although the band has hard-core roots, this incarnation of members from Attitude Adjustment, Attitude, DRI and Condemned played more straight forward rock with a hard edge and stinging social street lyrics. The band had a unique style that wasn't terribly original, but in its own way provided likable and authentic rock music. Two Bit's shows were always entertaining as the band continued its frentic stage shows from the punk rock days.\r\n\r\nThe band produced 3 albums with varying line ups the first of which was Another Sad Story in the big city which is the most polished of the bunch. It's mostly a straight forward rock affair that is a fun listen. Gangster Rebel Bop turns to a lighter more playful style that also is more bluesy and show-cases some fine song writing and guitar riffs for genuinely memorable songs. Unforutnately for the band the line-up changes and lack of label support resulted in this deserving band not getting much attention and sinking into obscurity.",
"ImageUrl": "https://s3.amazonaws.com//rdimagelg/48a2cb57261ef.jpg",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 37,
"AlbumId": 9,
"SongName": "Another Sad Story",
"Length": "3:23",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 38,
"AlbumId": 9,
"SongName": "City Boys",
"Length": "3:20",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 39,
"AlbumId": 9,
"SongName": "Industry",
"Length": "4:01",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 40,
"AlbumId": 9,
"SongName": "Love/Hate",
"Length": "3:01",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 41,
"AlbumId": 9,
"SongName": "Hard Times",
"Length": "2:45",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 42,
"AlbumId": 9,
"SongName": "Broken Hearts",
"Length": "3:45",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 43,
"AlbumId": 9,
"SongName": "Folson Prison Blues",
"Length": "3:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 44,
"AlbumId": 9,
"SongName": "Desperado",
"Length": "3:32",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 10,
"ArtistId": 10,
"Title": "Audioslave",
"Description": "The debut of thundering supergroup Audioslave--featuring members of Rage Against the Machine post-Zack de la Rocha with ex-Soundgarden singer Chris Cornell--is as much curio as fascinating blend of visions.",
"Year": 2002,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/514RWTJvpHL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B00006RU5B/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00006RU5B&linkCode=as2&tag=westwindtechn-20&linkId=TNXHFSVZ62ELHI34",
"SpotifyUrl": "https://play.spotify.com/album/78guAsers0klWl6RwzgDLd",
"Artist": {
"Id": 10,
"ArtistName": "Audioslave",
"Description": "When Zack de la Rocha left Rage Against the Machine in October 2000, the band's future was put into question. Within months rumors flew that ex-Soundgarden frontman Chris Cornell would replace de la Rocha. And gossip fueled truth, for Cornell joined the rest of Rage in the studio in May 2001. The mix was great and a musical bond was in the making: Cornell, Tim Commerford, Brad Wilk, and Tom Morello spent the next year writing and recording. By spring 2002, the foursome were no longer going by the Rage Against the Machine name and signed on for Ozzfest. But before the summer tour even got underway, Cornell quit the new project. \r\nHe claimed it wasn't moving forward in the direction he'd hoped for. The breakdown didn't last, for Cornell rejoined by early fall. After tossing around the idea of being called Civilian, they settled on Audioslave. The single \"Cochise,\" named for the great American Indian chief who died free and unconquered, hit radio in September 2002, and Audioslave's Epic full-length debut was released that November. The self-titled album eventually went multi-platinum on the strength of \"Cochise\" and the moody rocker \"Like a Stone,\" and Audioslave supported it with gigs that included 2003 Lollapalooza dates. Cornell, Morello, Wilk, and Commerford returned in May 2005 with Out of Exile, which debuted at number one on Billboard. That same month they played an historic show in Havana, Cuba, that marked that country's first outdoor show by an American rock band (that fall releasing the whole shebang on the Live in Cuba DVD). Exile continued the band's platinum-selling ways -- singles like \"Be Yourself\" and \"Doesn't Remind Me\" went to the top of the charts -- and the guys wasted no time following up with album number three, Revelations, in early September 2006. Work on the album took only five weeks, since most of the songs had been fleshed out live over the previous year. In 2007, shortly after the members of Rage announced that they would reunite for that year's Coachella festival, Cornell left Audioslave, citing both personal and musical differences, and leaving the state of Audioslave uncertain.",
"ImageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSmQHF8XC3aoteCNFsD8de438XX6WVg0xoULNctz0Wj-fOJv-YR",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 45,
"AlbumId": 10,
"SongName": "Cochise",
"Length": "3:02",
"Bytes": 5339931,
"UnitPrice": 0.99
},
{
"Id": 46,
"AlbumId": 10,
"SongName": "Show Me How to Live",
"Length": "4:17",
"Bytes": 6672176,
"UnitPrice": 0.99
},
{
"Id": 47,
"AlbumId": 10,
"SongName": "Gasoline",
"Length": "4:19",
"Bytes": 6709793,
"UnitPrice": 0.99
},
{
"Id": 48,
"AlbumId": 10,
"SongName": "What You Are",
"Length": "4:09",
"Bytes": 5988186,
"UnitPrice": 0.99
},
{
"Id": 49,
"AlbumId": 10,
"SongName": "Like a Stone",
"Length": "4:14",
"Bytes": 7059624,
"UnitPrice": 0.99
},
{
"Id": 50,
"AlbumId": 10,
"SongName": "Set It Off",
"Length": "4:03",
"Bytes": 6321091,
"UnitPrice": 0.99
},
{
"Id": 51,
"AlbumId": 10,
"SongName": "Shadow on the Sun",
"Length": "5:03",
"Bytes": 8245793,
"UnitPrice": 0.99
},
{
"Id": 52,
"AlbumId": 10,
"SongName": "I am the Highway",
"Length": "5:14",
"Bytes": 8041411,
"UnitPrice": 0.99
},
{
"Id": 53,
"AlbumId": 10,
"SongName": "Exploder",
"Length": "3:06",
"Bytes": 4948095,
"UnitPrice": 0.99
},
{
"Id": 54,
"AlbumId": 10,
"SongName": "Hypnotize",
"Length": "3:06",
"Bytes": 4961887,
"UnitPrice": 0.99
},
{
"Id": 55,
"AlbumId": 10,
"SongName": "Bring'em Back Alive",
"Length": "5:09",
"Bytes": 7911634,
"UnitPrice": 0.99
},
{
"Id": 56,
"AlbumId": 10,
"SongName": "Light My Way",
"Length": "5:03",
"Bytes": 7289084,
"UnitPrice": 0.99
},
{
"Id": 57,
"AlbumId": 10,
"SongName": "Getaway Car",
"Length": "4:19",
"Bytes": 7193162,
"UnitPrice": 0.99
},
{
"Id": 58,
"AlbumId": 10,
"SongName": "The Last Remaining Light",
"Length": "5:17",
"Bytes": 7622615,
"UnitPrice": 0.99
}
]
},
{
"Id": 11,
"ArtistId": 11,
"Title": "Auswärtsspiel",
"Description": "It's very unusual for a punk-rock band to stay true to their music, their ideals and their fans after 20 years. This album shows that Die Toten Hosen is one of those unusual bands. This album will not disappoint you",
"Year": 2007,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/51rXT6j%2BwRL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B001MFOULW/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B001MFOULW&linkCode=as2&tag=westwindtechn-20&linkId=X5KW75PMFHGVYVGA",
"SpotifyUrl": "https://open.spotify.com/album/6hUnrgfcrI5loNPAvuf4gV",
"Artist": {
"Id": 11,
"ArtistName": "Die Toten Hosen",
"Description": "Noted for their irreverent style and tough but hooky tunes, German punk/metal band Die Toten Hosen are one of Germany's most successful rock bands, still commanding a large and loyal following at home and in Australia, South America, and Japan more than three decades after they began. Die Toten Hosen (the name literally translates as \"the Dead Trousers\") was formed in 1982 from the ashes of two Düsseldorf punk bands, ZK and KFC. Considering that three members of the Hosen were named Andreas, they took stage names to avoid confusion: vocalist Campino (b. Andreas Frege; June 22, 1962), guitarist Breiti (b. Andreas Breitkopf; Feb. 6, 1964), rhythm guitarist Kuddel (b. Andreas Von Holst; June 11, 1964), bassist Andi (b. Andreas Meurer; July 24, 1962), and drummer Trini (b. Klaus-Dieter Trimpop; June 10, 1951). Die Toten Hosen self-released their first album, Opel Gang, in 1983, and several months later, EMI signed the group and reissued the LP. EMI soon grew disenchanted with the band (particularly after they were sued by German pop icon Heino after they parodied him in concert), and Virgin released their next album, Unter Falscher Flagge, in 1984; the following year, Trini vacated the drum stool to become the group's manager, and Wölli (b. Wolfgang Rohde; Jan. 9, 1963) took over on percussion. In 1986, the band released Damenwahl, which fared well on the charts and gave them their first taste of corporate sponsorship -- Fromms, a major condom manufacturer, helped promote the Damenwahl tour and provided samples of their products to hand out to fans. A live album followed, 1987's Bis Zum Bitteren Ende, and the group finally moved from cult favorites to a real commercial force in Germany with 1988's Ein Kleines Bisschen Horrorschau, which rose to number seven on the German charts.",
"ImageUrl": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSMFuwb2Z8fw2_U3oulFlr9YgGUotbr7gd7yl8MfD_01iS38IFO",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 59,
"AlbumId": 11,
"SongName": "Was zaehlt",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 60,
"AlbumId": 11,
"SongName": "Tier",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 61,
"AlbumId": 11,
"SongName": "Kanzler Sein",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 62,
"AlbumId": 11,
"SongName": "Du lebst nur einmal",
"Length": "2:09",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 12,
"ArtistId": 12,
"Title": "Balls to the Wall",
"Description": "As cheesey as some of the titles and lyrics on this record are, the music is classic mid eighties metal, with heavy dual guitars and the troll like growling and features of Udo Dirkschneider. If you can look past the metal clichees this is an awesome record.",
"Year": 1983,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/519J0xGWgaL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B00005NNMJ/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00005NNMJ&linkCode=as2&tag=westwindtechn-20&linkId=MQIHT543FNE5PNZU",
"SpotifyUrl": "https://play.spotify.com/album/2twCPCDGJjVD90GWUjA8vN",
"Artist": {
"Id": 12,
"ArtistName": "Accept",
"Description": "With their brutal, simple riffs and aggressive, fast tempos, Accept were one of the top metal bands of the early '80s, and a major influence on the development of thrash. Led by the unique vocal stylings of screeching banshee Udo Dirkschneider, the band forged an instantly recognizable sound and was notorious as one of the decade's fiercest live acts. Despite recording two of the best heavy metal albums of the decade in Restless & Wild and Balls to the Wall, Accept remained too heavy and extreme for American audiences to embrace -- even when they tried to tone down their act with more melodic songs. Ultimately having conquered the rest of the world, but with their career stalled in the U.S., Accept fell apart, but reunited years later to confront a radically changed music marketplace.",
"ImageUrl": "https://cps-static.rovicorp.com/3/JPG_400/MI0001/389/MI0001389322.jpg?partner=allrovi.com",
"AmazonUrl": "http://www.amazon.com/Accept/e/B000APZ8S4/?_encoding=UTF8&camp=1789&creative=390957&linkCode=ur2&qid=1412245037&sr=8-3&tag=westwindtechn-20&linkId=KM4RZR3ECUXWBJ6E"
},
"Tracks": [
{
"Id": 63,
"AlbumId": 12,
"SongName": "Fight it back",
"Length": "3:57",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 64,
"AlbumId": 12,
"SongName": "London Leatherboys",
"Length": "3:12",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 65,
"AlbumId": 12,
"SongName": "Head over Heels",
"Length": "3:44",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 66,
"AlbumId": 12,
"SongName": "Losing more than you've ever had",
"Length": "4:22",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 67,
"AlbumId": 12,
"SongName": "Love Child",
"Length": "5:12",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 68,
"AlbumId": 12,
"SongName": "Balls to the Wall",
"Length": "5:02",
"Bytes": 5510424,
"UnitPrice": 0.99
}
]
},
{
"Id": 13,
"ArtistId": 13,
"Title": "Battle of Los Angeles",
"Description": "Rage Against The Machine, in only 3 albums, has achieved the balance they've needed. Previously, their heavy messages and their particularly heavy music have clashed, but not on this album.",
"Year": 1999,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/61zdg10yfSL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B00002MZ2C/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00002MZ2C&linkCode=as2&tag=westwindtechn-20&linkId=YMR7EZHD4FWTM2KO",
"SpotifyUrl": "https://play.spotify.com/album/2eia0myWFgoHuttJytCxgX",
"Artist": {
"Id": 13,
"ArtistName": "Rage Against the Machine",
"Description": "Rage Against the Machine, commonly abbreviated as RATM, is an American rap metal band from Los Angeles, California. Formed in 1991, the group consists of rapper/vocalist Zack de la Rocha, bassist and backing vocalist Tim Commerford, guitarist Tom Morello and drummer Brad Wilk. They draw inspiration from early heavy metal instrumentation, as well as hip hop acts such as Afrika Bambaataa,[1] Public Enemy, the Beastie Boys and Dutch crossover band Urban Dance Squad.[2] Rage Against the Machine is best known for its leftist political views, which are expressed in many of its songs. As of 2010, they have sold over 16 million records worldwide.[3]\r\n\r\nIn 1992, the band released its self-titled debut album, which became a commercial and critical success, leading to a slot in the 1993 Lollapalooza festival. In 2003, the album was ranked number 368 on Rolling Stone magazine's list of the 500 greatest albums of all time. The band did not release a follow-up record until 1996, with Evil Empire. The band's third album, The Battle of Los Angeles, followed in 1999, and in 2003, the album was ranked number 426 on the same list. During their initial nine-year run, they became one of the most popular and influential bands in music history, according to music journalist Colin Devenish.[4] They were also ranked No. 33 on VH1's 100 Greatest Artists of Hard Rock. The band had a large influence on the nu metal genre which emerged during the late 1990s.\r\n\r\nIn 2000, the band released the cover album, Renegades. The same year, growing tensions over the direction of the band prompted de la Rocha to quit, leading to the band's breakup. De la Rocha started a low-key solo career, while the rest of the band formed the rock supergroup Audioslave with Chris Cornell, then-former frontman of Soundgarden; Audioslave recorded three albums before disbanding in 2007. The same year, Rage Against the Machine announced a reunion and performed together for the first time in seven years at the Coachella Valley Music and Arts Festival in April 2007. Up until 2011, the band continued to perform at more live venues and festivals around the world. As of 2014, the group has no plans to record new material.[5]",
"ImageUrl": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Rage_Against_The_Machine.jpg/1280px-Rage_Against_The_Machine.jpg",
"AmazonUrl": "http://wac.450f.edgecastcdn.net/80450F/loudwire.com/files/2012/11/Rage-Against-the-Machine.jpg"
},
"Tracks": []
},
{
"Id": 14,
"ArtistId": 14,
"Title": "Blackout",
"Description": "Blackout was the Scorpions' first majorly successful album, due to its clever balance of pop/rock (the title track), power ballads (\"When the Smoke Is Going Down\"), and catchy heavy metal (\"Dynamite,\" \"No One Like You\"). Vocalist Klaus Meine had a throat operation prior to the record's release, and surprisingly, his voice sounds more melodic and lively than ever. The rest of the band sounds great as well, and the album is highlighted by the fast-paced performances of guitarists Rudolf Schenker and Matthias Jabs. Blackout has arguably been called the Scorpions' best record ever, and that statement is not unjust -- it has more energy than anything else they have ever released.",
"Year": 1982,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/517y8sLrdpL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B000001EUP/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B000001EUP&linkCode=as2&tag=westwindtechn-20&linkId=L6SGWNNUJVF2SQOY",
"SpotifyUrl": "https://play.spotify.com/album/6x75r5C54z1quun86Bbqbr",
"Artist": {
"Id": 14,
"ArtistName": "Scorpions",
"Description": "The Scorprions are good old fashioned German Hard Rock from the 80s and beyond.",
"ImageUrl": "https://media.gettyimages.com/photos/german-band-scorpions-on-stage-1982-picture-id467332921?s=612x612",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 69,
"AlbumId": 14,
"SongName": "Blackout",
"Length": "3:48",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 15,
"ArtistId": 8,
"Title": "Blind",
"Description": "To call this album a rock album would almost be an insult. Some people call it punk/hardcore, but to me it will always be metal. And now that I've pigeonholed this CD to death, I'll move on to the music. Corrosion Of Conformity serves up some unforgiving, politically motivated anger with Blind. The guitar tone has a punishing crunch that has been hard to parallel in my mind. With the bass pushing that crunch, this is one heavy listen... I love it! Nothing will guarantee you a speeding ticket quicker than 'Dance Of The Dead' or 'Mine Are The Eyes Of God'. 'Vote With A Bullet' spells out COC's political views very clearly, and also manages to wrap it up in one awesome tune! Even the slowest song on the CD, 'Echoes In The Well', manages to churn out some dark and brooding overtones. Every single song on here is heavy and uncompromising. The lyrics are very poignant and intelligent. Amidst so many bands who, lately like to pose as revolutionary, Corrosion Of Conformity take a shot at 'The Man' that is, without dispute, the most real and profound yet. A lot of bands have come and gone, taking some inspiration from Corrosion Of Conformity, yet these guys continue to go on (granted under a different style). This CD represents the high point of their songwriting and musical career.",
"Year": 1986,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/41rsmZTWh9L._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B0013D8FJG/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B0013D8FJG&linkCode=as2&tag=westwindtechn-20&linkId=Q6ECTNHUXDX45GG5",
"SpotifyUrl": "https://play.spotify.com/album/7kLqk3fireCdZxAZmCud3k",
"Artist": {
"Id": 8,
"ArtistName": "Corrosion of Conformity",
"Description": "One of the first punk-metal fusion bands, Corrosion of Conformity were formed in North Carolina by guitarist Woody Weatherman during the early '80s. In their early years, C.O.C. became known for their aggressive sound, intelligent political lyrics, and willingness to break away from both hardcore and metal conventions. In the '90s, their shift to a more stripped-down, deliberate sound -- sort of Black Sabbath filtered through the Deep South -- brought them enough in line with the alt metal Zeitgeist to bring them a measure of mainstream popularity. Then recently they turned back to their hardcore roots with ther 2012 and 2014 releases that mixes the raw",
"ImageUrl": "https://theobelisk.net/obelisk/wp-content/uploads/2012/01/coc.jpg",
"AmazonUrl": "http://theobelisk.net/obelisk/wp-content/uploads/2012/01/coc.jpg"
},
"Tracks": [
{
"Id": 70,
"AlbumId": 15,
"SongName": "The Shrouded Temples",
"Length": "2:36",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 71,
"AlbumId": 15,
"SongName": "Damned for all Time",
"Length": "2:36",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 72,
"AlbumId": 15,
"SongName": "Dance of the Dead",
"Length": "4:29",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 73,
"AlbumId": 15,
"SongName": "Buried",
"Length": "5:16",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 16,
"ArtistId": 15,
"Title": "Blues for the Red Sun",
"Description": "With Josh Homme's guitar tuned down two whole steps to C, and plugged into a bass amp for maximum distortion, stoner metal pioneers Kyuss achieve a major milestone in heavy music with their second album, 1992's Blues for the Red Sun. Producer Chris Goss masterfully captures the band's unique heavy/light formula, which becomes apparent as soon as the gentle but sinister intro melody gives way to the chugging main riff in the opener, \"Thumb.\" This segues immediately into the galloping \"Green Machine,\" which pummels forward inexorably and even features that rarest rock & roll moment: a bass solo. \"Thong Song\" alternates rumbling guitar explosions with almost complete silence, and \"Mondo Generator\" plays like an extended acid trip. The slow build of the epic \"Freedom Run\" and the driving \"Allen's Wrench\" are also highlights, and though the album is heavy on instrumentals, these actually provide a seamless transition from song to song.",
"Year": 1992,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/51rEIMI1dLL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/Blues-Red-Sun-Kyuss/dp/B000001A3H/ref=as_sl_pc_ss_til?tag=westwindtechn-20&linkCode=w01&linkId=NQC4553N5FEDBZUO&creativeASIN=B000001A3H",
"SpotifyUrl": "https://play.spotify.com/album/7wXj8GxTkGAUU99DXR7n2f",
"Artist": {
"Id": 15,
"ArtistName": "Kyuss",
"Description": "Kyuss was an American stoner rock band, formed in Palm Desert, California, in 1987 by Josh Homme, John Garcia, Brant Bjork and Chris Cockrell.",
"ImageUrl": "data:image/jpeg;base64,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",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 74,
"AlbumId": 16,
"SongName": "Thumb",
"Length": "4:41",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 75,
"AlbumId": 16,
"SongName": "Green Machine",
"Length": "3:38",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 17,
"ArtistId": 16,
"Title": "Bonded By Blood",
"Description": "There are very few albums out there that can match the intensity of this album from Bay Area thrash metal legends Exodus. Exodus are legends in the THRASH genre and this is where it all started.",
"Year": 1985,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/517FBEA6X9L._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B000003C4K/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B000003C4K&linkCode=as2&tag=westwindtechn-20&linkId=DBKRRNULEL4OIR5P",
"SpotifyUrl": "",
"Artist": {
"Id": 16,
"ArtistName": "Exodus",
"Description": "nce the kings of the Bay Area metal scene -- the birthplace of thrash -- Exodus were unceremoniously demoted from their post with the arrival of Los Angeles' Metallica in 1982. And while they proceeded to eke out a hit-and-miss career of their own over the next few decades, all the while influencing at least two separate generations of younger thrash bands, Exodus were ultimately fated to be the ultimate also-rans of the genre they helped spawn.\r\n\r\nFormed in 1981 by singer Paul Baloff, guitarists Gary Holt and Kirk Hammett, bassist Geoff Andrews, and drummer Tom Hunting, Exodus were heavily influenced by Motörhead and New Wave of British Heavy Metal bands like Iron Maiden and Raven, whose lessons they combined with the raw, D.I.Y. aesthetic of the prolific Bay Area punk scene to create thrash metal. Their handful of demos recorded between 1982-1984 became wildly popular on the all-important underground tape-trading circuit of the time, and solidified the band's standing as the Bay Area's first thrash champions. But they would soon lose their numero uno standing as well as their guitarist Hammett to the aforementioned Metallica, who then raced ahead of all competitors in their mission to bring thrash to the world. Wounded but undaunted, Exodus drafted guitarist Rick Hunolt and replaced bassist Andrews with Rob McKillop before signing with Torrid Records, for whom they recorded their Bonded by Blood debut in 1984. But the album languished unreleased for over a year due to business problems, and by the time it was finally unveiled by Combat Records in 1985, the would-be genre benchmark already sounded dated and its impact was severely dulled by the quick evolution of their peers.\r\n\r\nThese hardships also led to the ousting of vocalist Baloff, whose carefree, larger-than-life attitude (and often drunken behavior) made him an easy scapegoat for his more driven bandmates. His replacement was ex-Testament singer Steve \"Zetro\" Souza, who arrived in time for 1987's disappointing Pleasures of the Flesh -- an inconsistent album which did nothing to advance Exodus' cause. Incessant touring served to strengthen the band's new lineup, though, and 1989's meticulously conceived Fabulous Disaster was a critical triumph, bringing the group to their commercial peak. The successful world tour which followed brought another dramatic setback, however, when drummer Hunting was diagnosed with an irregular heartbeat which first sidelined, then forced him to quit the band at tour's end. Still, Exodus was on a roll, and their momentum led to a new contract with Capitol Records, which immediately rushed them back into the studio with former Anthrax drum tech John Tempesta manning the skins, to lay down tracks for 1990's Impact Is Imminent. But the absence of a competent producer and a carelessly assembled collection of songs resulted in a dull, forgettable album that was doomed to commercial failure from day one, squandering the group's recent accomplishments and pretty much closing their window to success. Longtime bassist McKillop left soon after (replaced by Mike Butler) and despite the renewed quality of 1992's Force of Habit (certainly their most diverse album ever), the members of Exodus decided to go their separate ways when the grunge revolution sidelined heavy metal bands of most any stripe.",
"ImageUrl": "http://pm1.narvii.com/7038/2853403b376eb1d8d0f19e6c35b0e6e764eecb00r1-682-350v2_00.jpg",
"AmazonUrl": ""
},
"Tracks": [
{
"Id": 76,
"AlbumId": 17,
"SongName": "Bonded By Blood",
"Length": "3:12",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 77,
"AlbumId": 17,
"SongName": "Exodus",
"Length": "4:10",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 78,
"AlbumId": 17,
"SongName": "Then there were none",
"Length": "4:22",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 79,
"AlbumId": 17,
"SongName": "A Lesson in Violence",
"Length": "3:45",
"Bytes": 0,
"UnitPrice": 0.00
}
]
},
{
"Id": 18,
"ArtistId": 17,
"Title": "Born a Lion",
"Description": "OK, let's be clear: You have to check your political correctness at the door when you listen to this one. But you'll be rewarded with some of rawest AC/DC style rock you'll ever hear. Rock on!",
"Year": 2002,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/41KRS0GYXJL._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B00006D28C/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00006D28C&linkCode=as2&tag=westwindtechn-20&linkId=ZIA7IKB3CQ7JMDKX",
"SpotifyUrl": "https://play.spotify.com/album/2R6eAFZlJvbX5YqIVQIiIZ",
"Artist": {
"Id": 17,
"ArtistName": "Danko Jones",
"Description": "Named after their bandleader, Danko Jones are a Canadian hard rock trio whose bluesy style is rooted in the tradition of Thin Lizzy and AC/DC and whose popularity in Western Europe compensates for their lack of recognition in the neighboring United States. Comprised of band namesake Danko Jones (vocals/guitar), John Calabrese (aka JC; bass guitar), and Dan Cornelius (drums), the band was founded in Toronto, Ontario, in 1996 and made its recording debut in 1998 with a five-track self-titled EP on Sonic Unyon. A follow-up EP on Sound King Records, My Love Is Bold (1999), garnered airplay on Canadian hard rock radio, setting the stage for I'm Alive and on Fire (2001), a 13-track compilation of the band's recording output from 1996 to 1999.",
"ImageUrl": "https://cps-static.rovicorp.com/3/JPG_400/MI0003/439/MI0003439735.jpg?partner=allrovi.com",
"AmazonUrl": ""
},
"Tracks": []
},
{
"Id": 19,
"ArtistId": 12,
"Title": "Breaker",
"Description": "This album is ACCEPT'S turning point album in my opinion, the album that defined their style ACCEPT'S BREAKER Album, which is ACCEPT'S 3rd album released in 1981 in the U.K. and Europe again, still no U.S. market yet\r\nACCEPT had more money this time for a better produced album and 10 excellent Hardrockin'/Heavymetal tracks to go with it . No rock ballads like their previous album 1980's I'M A REBEL which i've also typed a review about all Great Heavy metal riffs on this album.",
"Year": 1982,
"ImageUrl": "https://images-na.ssl-images-amazon.com/images/I/51fIOETov9L._SL250_.jpg",
"AmazonUrl": "https://www.amazon.com/gp/product/B0007ZBG1U/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B0007ZBG1U&linkCode=as2&tag=westwindtechn-20&linkId=ZPNI5HMO3ZTBZQJ3",
"SpotifyUrl": "https://play.spotify.com/album/70lhKu95Wy760ZAZeUaZje",
"Artist": {
"Id": 12,
"ArtistName": "Accept",
"Description": "With their brutal, simple riffs and aggressive, fast tempos, Accept were one of the top metal bands of the early '80s, and a major influence on the development of thrash. Led by the unique vocal stylings of screeching banshee Udo Dirkschneider, the band forged an instantly recognizable sound and was notorious as one of the decade's fiercest live acts. Despite recording two of the best heavy metal albums of the decade in Restless & Wild and Balls to the Wall, Accept remained too heavy and extreme for American audiences to embrace -- even when they tried to tone down their act with more melodic songs. Ultimately having conquered the rest of the world, but with their career stalled in the U.S., Accept fell apart, but reunited years later to confront a radically changed music marketplace.",
"ImageUrl": "https://cps-static.rovicorp.com/3/JPG_400/MI0001/389/MI0001389322.jpg?partner=allrovi.com",
"AmazonUrl": "http://www.amazon.com/Accept/e/B000APZ8S4/?_encoding=UTF8&camp=1789&creative=390957&linkCode=ur2&qid=1412245037&sr=8-3&tag=westwindtechn-20&linkId=KM4RZR3ECUXWBJ6E"
},
"Tracks": [
{
"Id": 80,
"AlbumId": 19,
"SongName": "Run if you Can",
"Length": "0:00",
"Bytes": 0,
"UnitPrice": 0.00
},
{
"Id": 81,