Woodlore (album)

Woodlore is a studio album by saxophonist Phil Woods' Quartet. It was recorded in 1955 and released on the Prestige Records.[1]

Woodlore
Studio album by
Phil Woods Quartet
Released1956
RecordedNovember 25, 1955
Van Gelder Studio, Hackensack, New Jersey
GenreJazz
Length32:58
LabelPrestige
PRLP 7018
ProducerBob Weinstock
Phil Woods chronology
Pot Pie
(1955)
Woodlore
(1956)
Pairing Off
(1956)

Reception

Professional ratings
Review scores
SourceRating
AllMusic[2]
The Rolling Stone Jazz Record Guide[3]

In his review for AllMusic, Scott Yanow stated "The altoist displays plenty of energy and a strong command of the bebop vocabulary, sounding quite enthusiastic".[2]

Track listing

All compositions by Phil Woods except as indicated

  1. "Woodlore" - 5:23
  2. "Falling in Love All Over Again" (Neil Hefti) - 4:44
  3. "Be My Love" (Sammy Cahn, Nicholas Brodszky) - 5:38
  4. "Slow Boat to China" (Frank Loesser) - 5:04
  5. "Get Happy" (Harold Arlen, Ted Koehler) - 6:46
  6. "Strollin' With Pam" - 5:20

Personnel

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()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
gollark: Any good static-file server will ALREADY probably support the `Range` header.

References

  1. Prestige Records discography accessed September 4, 2012
  2. Yanow, S. Allmusic Review accessed March 21, 2014
  3. Swenson, J., ed. (1985). The Rolling Stone Jazz Record Guide. USA: Random House/Rolling Stone. p. 210. ISBN 0-394-72643-X.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.