Is (album)
Is is a 1969 Solid State Records studio album by Chick Corea. In 2002, Blue Note Records re-released all tracks from this album, together with all tracks from 1969's Sundance and alternate takes from both albums as The Complete "Is" Sessions.
Is | ||||
---|---|---|---|---|
![]() | ||||
Studio album by | ||||
Released | June 30, 1969 [1] | |||
Recorded | May 11–13, 1969 | |||
Studio | Bell Sound Studios, New York | |||
Genre | Free jazz | |||
Length | 51:46 | |||
Label | Solid State | |||
Producer | Sonny Lester | |||
Chick Corea chronology | ||||
|
Review scores | |
---|---|
Source | Rating |
AllMusic | ![]() ![]() ![]() ![]() ![]() |
Track listing
Side one
- "Is" – 28:54
Side two
- "Jamala" – 14:04
- "This" – 8:18
- "It" – 0:30
Personnel
- Chick Corea – piano, electric piano
- Woody Shaw – trumpet
- Bennie Maupin – tenor saxophone
- Hubert Laws – flute, piccolo flute
- Dave Holland – double bass
- Jack DeJohnette – drums
- Horace Arnold – drums
gollark: If it had a list of "visible entities" the rendering would be much faster. There isn't one.
gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
References
- Yanow, Scott. "Chick Corea - Is (1969) album review | AllMusic". allmusic.com. Retrieved 3 October 2011.
External links
- Chick Corea - Is (1969) album at JazzDisco.org
- Chick Corea - Is (1969) album review by Scott Yanow, credits & releases at AllMusic
- Chick Corea - Is (1969) album releases & credits at Discogs
- Chick Corea - The Complete "Is" Sessions (rec. 1969, rel. 2002) album releases & credits at Discogs
- Chick Corea - The Complete "Is" Sessions (rec. 1969, rel. 2002) album to be listened as stream on Spotify
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.