Rollin' Stone: The Golden Anniversary Collection

Rollin' Stone: The Golden Anniversary Collection is a compilation album collecting the first 50 master recordings of blues singer Muddy Waters for Chess Records. The collection spans Muddy's debut with then named Aristocrat Records circa 1947, and traces his evolution as a songwriter and musician up to September 17, 1952 on what became Chess Records after the company changed ownership. It is the first in a series of releases chronicling Muddy Waters' complete recording career at Chess. The second release in the series is Hoochie Coochie Man: The Complete Chess Masters, Volume 2, 1952–1958 (2004) and the third release in the series is You Shook Me: The Complete Chess Masters, Volume 3, 1958 to 1963 (2012).

Rollin' Stone: The Golden Anniversary Collection
Compilation album by
ReleasedJune 27, 2000
Recorded1947 – September 17, 1952, Chicago
GenreBlues
Length153:41
LabelMCA/Chess
ProducerLeonard & Phil Chess, Andy McKaie
CompilerAndy McKaie
Professional ratings
Review scores
SourceRating
Allmusic[1]

Track listing

All songs written by McKinley Morganfield, except as noted.

Disc one

  1. "Gypsy Woman" – 2:36
  2. "Little Anna Mae" – 2:34
  3. "Good Lookin' Woman" – 2:45
  4. "Mean Disposition" – 2:37
  5. "I Can't Be Satisfied" – 2:44
  6. "I Feel Like Going Home" – 3:12
  7. "Train Fare Home" – 2:48
  8. "Down South Blues" – 2:55
  9. "Kind Hearted Woman" – 2:38
  10. "Sittin' Here And Drinkin' (Whiskey Blues)" – 2:36
  11. "You're Gonna Miss Me" – 2:40
  12. "Mean Red Spider" – 2:19
  13. "Standin' Here Tremblin'" – 2:27
  14. "Streamline Woman" – 3:19
  15. "Hard Days" – 2:37
  16. "Muddy Jumps One" – 2:30
  17. "Little Geneva" – 2:49
  18. "Canary Bird" – 2:46
  19. "Burying Ground" – 2:37
  20. "You Gonna Need My Help" – 3:03
  21. "Screamin' And Cryin'" – 3:07
  22. "Where's My Woman Been" – 3:10
  23. "Last Time I Fool Around With You" – 2:38
  24. "Walkin' Blues" (Robert Johnson) – 2:59
  25. "Rollin' And Tumblin' Part 1" – 3:01
  26. "Rollin' And Tumblin' Part 2" – 2:32

Disc two

  1. "Rollin' Stone" – 3:09
  2. "Rollin' Stone (Alternate Take)" – 3:02
  3. "You're Gonna Need My Help I Said" – 3:08
  4. "Sad Letter Blues" – 3:03
  5. "Early Morning Blues" – 3:10
  6. "Appealing Blues (Hello Little Girl)" – 2:51
  7. "Louisiana Blues" – 2:55
  8. "Evan's Shuffle" – 2:14
  9. "Long Distance Call" – 2:42
  10. "Too Young To Know" – 3:14
  11. "Honey Bee" – 3:23
  12. "Howling Wolf" – 2:40
  13. "Country Boy" – 3:13
  14. "She Moves Me" – 2:58
  15. "My Fault" – 2:44
  16. "Still A Fool" – 3:19
  17. "They Call Me Muddy Waters" – 3:25
  18. "All Night Long" – 2:54
  19. "All Night Long (Alternate Take)" – 3:59
  20. "All Night Long (Alternate Take #2)" – 3:20
  21. "Stuff You Gotta Watch" – 2:51
  22. "Lonesome Day" – 3:31
  23. "Please Have Mercy" – 3:13
  24. "Who's Gonna Be Your Sweet Man" – 3:02

Personnel

Original recordings

Compilation

  • Andy McKaie – compilation producer
  • Mary Katherine Aldin – liner notes
  • Erick Labson – digital remastering
  • Beth Stempel – project coordination
  • Vartan – art direction
  • t42design – design
  • Geary Chansley – photo research
  • Jason Pastori – photo research
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.
gollark: https://pastebin.com/pDNfjk30Tired of communicating fast? Want to talk over a pair of redstone lines at 10 baud? Then this is definitely not perfect, but does work for that!Use `set rx_side [whatever]` and `set tx_side [whatever]` on each computer to set which side of the computer they should receive/transmit on.

References

  1. Horowitz, Hal. "Review: Rollin' Stone: The Golden Anniversary Collection". Allmusic. Retrieved 16 November 2009.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.