The Art of Loss

The Art of Loss is the sixth studio album of Californian progressive metal band Redemption. This is the first album without guitarist and founding member Bernie Versailles, who is presently on an indefinite medical leave of absence from the band because he suffered an aneurysm in October 2014.[1] To replace Versailles in the recordings, the guitarist and DGM member Simone Mularoni and former Megadeth guitar players Chris Poland, Chris Broderick and Marty Friedman were invited. Vocalist John Bush from Armored Saint also was guest to sing Love, Reign o'er Me, a cover of The Who in duet with Ray Alder.[2]

The Art of Loss
Studio album by
ReleasedFebruary 26, 2016
Recorded2015
GenreProgressive metal
Length75:52
LabelMetal Blade Records
ProducerTommy Hansen
Redemption chronology
This Mortal Coil
(2011)
The Art of Loss
(2016)
Long Night's Journey Into Day
(2018)

The album was released on February 26, 2016 via Metal Blade Records and can be streamed in its entirety in the SoundCloud and Bandcamp pages of the band. A video was made for the title track, which features a guest appearance by guitarist Chris Poland. The video was directed by Brian Cox of Flarelight Films.[3]

Track listing

No.TitleLength
1."The Art of Loss"5:22
2."Slouching Towards Bethlehem"8:06
3."Damaged"4:56
4."Hope Dies Last"10:33
5."That Golden Light"4:54
6."Thirty Silver"6:25
7."The Center of the Fire"7:55
8."Love, Reign o'er Me" (The Who cover)5:08
9."Say Something" (A Great Big World cover, not present on the CD version)3:48
10."At Day's End"22:33
Total length:75:52

Band members

  • Ray Alder - Vocals
  • Nick van Dyk - Guitars, Keyboards
  • Sean Andrews - Bass
  • Chris Quirarte - Drums

Guest musicians

gollark: allegedly.
gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.