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 | ||||
Released | 1956 | |||
Recorded | November 25, 1955 Van Gelder Studio, Hackensack, New Jersey | |||
Genre | Jazz | |||
Length | 32:58 | |||
Label | Prestige PRLP 7018 | |||
Producer | Bob Weinstock | |||
Phil Woods chronology | ||||
|
Reception
Review scores | |
---|---|
Source | Rating |
AllMusic | ![]() ![]() ![]() ![]() ![]() |
The Rolling Stone Jazz Record Guide | ![]() ![]() ![]() ![]() ![]() |
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
- "Woodlore" - 5:23
- "Falling in Love All Over Again" (Neil Hefti) - 4:44
- "Be My Love" (Sammy Cahn, Nicholas Brodszky) - 5:38
- "Slow Boat to China" (Frank Loesser) - 5:04
- "Get Happy" (Harold Arlen, Ted Koehler) - 6:46
- "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
- Prestige Records discography accessed September 4, 2012
- Yanow, S. Allmusic Review accessed March 21, 2014
- 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.