Jazz Suite on the Mass Texts

Jazz Suite on the Mass Texts is an album by Paul Horn which was composed and conducted by Lalo Schifrin and originally released on the RCA Victor label in 1965.[1][2][3]

Jazz Suite on the Mass Texts
Studio album by
Released1965
RecordedNovember 5 & 6, 1964
RCA Victor's Music Center of the World in Hollywood, California
GenreJazz
Length28:58
LabelRCA Victor LPM 3414
ProducerAl Schmitt
Paul Horn chronology
Impressions of Cleopatra
(1963)
Jazz Suite on the Mass Texts
(1965)
Cycle
(1965)
Lalo Schifrin chronology
Gone with the Wave
(1964)
Jazz Suite on the Mass Texts
(1964)
The Liquidator
(1965)

Reception

Professional ratings
Review scores
SourceRating
AllMusic[4]

AllMusic awarded the album 3 stars stating: "The music here is a reflection of the church, using a broader base of textures and colors in jazz. The dynamics are powerful in this performance, and the communication between Horn's quintet, the orchestra led by Lalo Schifrin, and the chorus is undeniably magical. Certainly much of the record can be found leading into the realm of experimental music, and the critical listener should not be so critical, but rather sit, enjoy, and open their mind and listening senses".[4]

Track listing

All compositions by Lalo Schifrin

  1. "Kyrie" - 4:13
  2. "Interludium" - 2:35
  3. "Gloria" - 6:03
  4. "Credo" - 3:02
  5. "Sanctus" - 2:41
  6. "Prayer" - 1:45
  7. "Offertory" - 4:35
  8. "Agnus Dei" - 4:04

Personnel

gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description='Compile a WHY program')parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: ^
gollark: 937 bytes.
gollark: The WHY compiler is *very* small.
gollark: I could add that to `WHY`, if I knew how to parse CLI args in python.

References

  1. Paul Horn Catalog, accessed July 17, 2015
  2. Paul Horn discography, accessed July 17, 2015
  3. Payne, D., Lalo Schifrin discography, accessed July 17, 2015
  4. Haney, Shawn M.. Jazz Suite on the Mass Texts – Review at AllMusic. Retrieved August 17, 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.