- published: 27 Nov 2013
- views: 70127982
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Lewis Allan "Lou" Reed (March 2, 1942 – October 27, 2013) was an American musician, singer, and songwriter. He was the guitarist, vocalist, and principal songwriter of the Velvet Underground, and his solo career spanned five decades.
The Velvet Underground was a commercial failure in the late 1960s, but the group gained a considerable cult following in the years since its demise and has gone on to become one of the most widely cited and influential bands of the era.Brian Eno famously stated that, while the Velvet Underground's debut album sold only 30,000 copies, "everyone who bought one of those 30,000 copies started a band."
Reed began a solo career in 1972. He had a hit the following year with "Walk on the Wild Side", but this level of mainstream commercial success was not repeated. Reed was known for his distinctive deadpan voice and poetic lyrics, and for pioneering and coining the term ostrich guitar tuning.
Rolling Stone magazine voted Reed's 1989 New York album the 19th best of the 1980s. In 2003, Rolling Stone magazine's list of The 500 Greatest Albums of All Time included two albums by Reed as a solo artist: Transformer and Berlin.
Lou Reed (born 10 September 1987) is a Wales international rugby union footballer. He currently plays as a lock for the Cardiff Blues in the Pro12 league.
Reed signed for the Scarlets on a professional development contract in March 2006, but only made five appearances in the 2006–07 season. In order to gain some experience of first-team rugby, Reed was loaned to Rotherham for a month in December 2007.
In May 2012 the press announced that Reed would join Cardiff Blues, and the move was confirmed on 8 June.
In June 2011 he was named the Wales national rugby union team 45 man training squad for the 2011 Rugby World Cup. Reed made his full international debut for Wales versus Scotland on 12 February 2012 as a second-half replacement.
Lou Reed is the debut solo album by musician Lou Reed, released in 1972 by RCA Records two years after he left The Velvet Underground. The album comprises eight new recordings of then-unreleased Velvet Underground songs, plus two new songs, "Going Down" and "Berlin" (the latter was re-recorded by Reed as the title track for his 1973 album Berlin). Reed was backed by London session musicians, two of whom, Rick Wakeman and Steve Howe, were from the progressive rock band Yes.
With increasing interest in the Velvet Underground, Reed's debut album was highly anticipated, but the result was a commercial and relative critical disappointment, peaking at only number 189 on the Billboard 200.
All tracks written by Lou Reed except where noted.
A Retrospective is another European Lou Reed compilation.
A Retrospective is a discography CD of screamo band Saetia released October 1, 2001 by Level Plane, including all recorded songs and five live tracks from a basement show in Minneapolis. The entire CD was re-mastered by Alan Douches.
A Retrospective: 1995–2000 is a compilation album of past works by Son Volt.
A retrospective looks back at events that have taken place. The term may also refer to:
A Retrospective may refer to:
Official Audio for ”Walk on the Wild Side” by Lou Reed Listen to Lou Reed: https://loureed.lnk.to/listenYD Watch more videos by Lou Reed: https://loureed.lnk.to/listenYD/youtube Check out his merchandise! https://loureed.lnk.to/followMr Subscribe to the official Lou Reed VEVO channel: https://loureed.lnk.to/subscribeYD Follow Lou Reed Facebook: https://loureed.lnk.to/followFI Instagram: https://loureed.lnk.to/followII Twitter: https://loureed.lnk.to/followTI Website: https://loureed.lnk.to/followWI Spotify: https://loureed.lnk.to/followSI YouTube: https://loureed.lnk.to/subscribeYD Archive: https://loureed.lnk.to/followWE Ask your voice device to play Lou Reed! Lyrics: She says, "Hey babe, take a walk on the wild side" Said, "Hey honey, take a walk on the wild side" #LouReed #Wa...
Official Audio for ”Perfect Day” by Lou Reed Listen to Lou Reed: https://loureed.lnk.to/listenYD Watch more videos by Lou Reed: https://loureed.lnk.to/listenYD/youtube Check out his merchandise! https://loureed.lnk.to/followMr Subscribe to the official Lou Reed VEVO channel: https://loureed.lnk.to/subscribeYD Follow Lou Reed Facebook: https://loureed.lnk.to/followFI Instagram: https://loureed.lnk.to/followII Twitter: https://loureed.lnk.to/followTI Website: https://loureed.lnk.to/followWI Spotify: https://loureed.lnk.to/followSI YouTube: https://loureed.lnk.to/subscribeYD Archive: https://loureed.lnk.to/followWE Ask your voice device to play Lou Reed! Chorus: Oh, it's such a perfect day I'm glad I spent it with you Oh, such a perfect day You just keep me hanging on You just keep ...
...
Lou Reed - Walk On The Wild Side Lyrics Holly came from Miami F.L.A. Hitch-hiked her way across the U.S.A. Plucked her eyebrows on the way Shaved her legs and then he was a she She said, hey babe, take a walk on the wild side, Said, hey honey, take a walk on the wild side. Candy came from out on the island, In the backroom she was everybody's darling, But she never lost her head Even when she was giving head She said, hey baby, take a walk on the wild side She said, hey babe, take a walk on the wild side And the coloured girls go, Doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo doo do...
Lou Reed - Full Concert Recorded Live: 9/25/1984 - Capitol Theatre (Passaic, NJ) More Lou Reed at Music Vault: http://www.musicvault.com Subscribe to Music Vault: http://goo.gl/DUzpUF Setlist: 0:00:00 - Sweet Jane 0:04:05 - I'm Waiting For My Man 0:08:15 - Martial Law 0:12:57 - Down At The Arcade 0:17:22 - Legendary Hearts 0:20:48 - There She Goes Again 0:24:48 - Turn Out the Light 0:29:58 - My Red Joystick 0:35:19 - Average Guy 0:38:50 - Street Hassle 0:44:24 - Sally Can't Dance 0:50:10 - Walk On The Wild Side 0:56:09 - Satellite Of Love 1:03:21 - New Sensation 1:11:08 - A Gift 1:14:56 - Doin' The Things That We Want To 1:19:12 - Waves Of Fear 1:22:27 - I Love You Suzanne 1:25:35 - White Light / White Heat 1:29:54 - Turn To Me 1:34:40 - Kill Your Sons 1:40:19 - Coney Island Baby 1:45:4...
It’s no secret that Lou Reed was an obstinately cantankerous contrarian, and there was little he enjoyed more than sticking in the craw of his peers. Accounts of Reed’s personality varied wildly depending on who was asked. The pattern was no enigma; if Reed liked someone, he would sing their praises and likely get on well with them, but if he wasn’t fond of you or your art, you’d better hope he wasn’t asked about you in an interview. 00:00 - Intro 01:06 - Roxy Music 01:31 - Frank Zappa 02:39 - The Doors 03:32 - The Beatles 04:24 - The Who
2000 Montreux Sounds Montreux Sounds: https://www.montreuxsounds.com LIVE AT MONTREUX – MONTREUX JAZZ ARCHIVES This performance is part of the unique Claude Nobs Foundation audio-visual collection, included since 2013 in the UNESCO Memory of the World Register. From Aretha Franklin or Miles Davis to David Bowie or Prince, more than 5’000 concerts have been recorded LIVE both in audio and video since the creation of the Montreux Jazz Festival in 1967 by Claude Nobs. MONTREUX JAZZ FESTIVAL WHERE LEGENDS ARE BORN The Montreux Jazz Festival takes place for two weeks every summer in Switzerland, drawing 250,000 music lovers to the shores of Lake Geneva. Since 1967, the Festival has celebrated all genres of music and generated countless legendary performances. Artists who have graced the st...
On September 28, 2024, Suzanne Vega performed a cover of the Lou Reed song, "Take a Walk on the Wild Side" at the South Orange Performing Arts Center (SOPAC) in South Orange, New Jersey. ------------------- Information about Suzanne Vega, including touring information can be found on her official website here: https://www.suzannevega.com/ -------------------- The setlist for the show on September 28, 2024 can be found here: https://www.setlist.fm/setlist/suzanne-vega/2024/south-orange-performing-arts-center-south-orange-nj-1b53051c.html
Just a perfect day Drink sangria in a park And then later When it gets dark we go home Just a perfect day Feed animals in the zoo And then later a movie, too And then home Oh it's such a perfect day I'm glad I spend it with you Oh such a perfect dayyou just keep me hangin on You just keep me hangin on Just a perfect day Problems are left to know Weekenders all night long It's such fun Just a perfect day You make me forget myself I thought I was someone else Someone good Written by Lou Reed Please, please, please subscribe to Songs With Lyrics channel and help us grow. If you also Hit the 🔔, you will hear it ring each time we add new Lyric Video. And we upload new songs frequently. #lyrics #lyricvideo #lyricsvideo
side one: Vicious 0:00 Andy’s Chest 2:59 Perfect Day 6:20 Hangin’ ‘Round 10:07 Walk On the Wild Side 13:43 side two: Make Up 18:02 Satellite of Love 21:03 Wagon Wheel 24:46 New York Telephone Conversation 28:07 I’m So Free 29:41 Goodnight Ladies 32:51 All rights belong to SME and Lou Reed (RIP). Enjoy.
side one: 1. Crazy Feeling 0:00 2. Charley's Girl 2:52 3. She's My Best Friend 5:29 4. Kicks 11:26 side two: 1. A Gift 17:27 2. Ooohhh Baby 21:11 3. Nobody's Business 24:55 4. Coney Island Baby 28:42 All rights belong to SME and Lou Reed (RIP). Enjoy.
Lou Reed Greatest Hits || Lou Reed Greatest Hits Full Album Lou Reed Greatest Hits || Lou Reed Greatest Hits Full Album Lou Reed Greatest Hits || Lou Reed Greatest Hits Full Album
side one: 1. I Can't Stand It 0:00 2. Going Down 2:39 3. Walk and Talk It 5:38 4. Lisa Says 9:21 5. Berlin 14:57 side two: 1. I Love You 20:16 2. Wild Child 22:34 3. Love Makes You Feel 27:19 4. Ride Into the Sun 30:33 5. Ocean 33:52 All rights belong to SME and Lou Reed (RIP). Enjoy.
1 Dorita • The Spirit (1:07) 0:00 2 What's Good • The Thesis (3:22) 1:07 3 Power And Glory • The Situation (4:24) 4:29 4 Magician • Internally (6:23) 8:53 5 Sword Of Damocles • Externally (3:42) 15:16 6 Goodby Mass • In A Chapel Bodily Termination (4:26) 18:58 7 Cremation • Ashes To Ashes (2:54) 23:24 8 Dreamin' • Escape (5:10) 26:18 9 No Chance • Regret (3:15) 31:28 10 Warrior King • Revenge (4:27) 34:43 11 Harry's Circumcision • Reverie Gone Astray (5:29) 39:10 12 Gassed And Stoked • Loss (4:19) 44:39 13 Power And Glory, Part II • Magic • Transformation (2:57) 48:58 14 Magic And Loss • The Summation (6:39) 51:55 I do not own the rights of this album. Lou Reed - vocals, electric and acoustic guitar Mike Rathke - electric, acoustic and Casio guitar Rob Wasserman - electric upright bass M...
King of New York embracing the 80s? Artist: Lou Reed Album: New Sensations Label: RCA Year: 1984 Tracklist: 0:00 I Love You, Suzanne 3:19 Endlessly Jealous 7:16 My Red Joystick 10:53 Turn to Me 15:15 New Sensations 20:57 Doin' the Things That We Want To 24:52 What Becomes a Legend Most 28:29 Fly into The Sun 31:34 My Friend George 35:25 High in the City 38:52 Down at the Arcade Personnel: Lou Reed - vocals, guitar Peter Wood - piano, synth, accordion Fernando Saunders - rhythm guitar, bass Fred Maher - drums L. Shankar - electric violin Written by Lou Reed Produced by John Jansen and Lou Reed http://www.loureed.org/ Support the artist if you like the music. I do not own any of the songs.
1 My House (5:25) 0:00 2 Women (4:58) 5:25 3 Underneath The Bottle (2:33) 10:23 4 The Gun (3:42) 12:56 5 The Blue Mask (5:06) 16:38 6 Average Guy (3:13) 21:44 7 The Heroine (3:06) 24:57 8 Waves Of Fear (4:11) 28:03 9 The Day John Kennedy Died (4:09) 32:14 10 Heavenly Arms (4:48) 36:23 I do not own the rights of this album. Lou Reed - Guitar, vocals Robert Quine - Guitar Fernando Saunders - Bass, backing vocals Doane Perry - Drums All songs written by Lou Reed.
In a historic collaboration, London´s Glam Rock icons, David Bowie and Mick Ronson joined New York City Proto-Punk Lou Reed to create the album that turned him into a controversial star! All the rights to the original owner! 01 Vicious 02 Andy's Chest 03 Perfect Day 04 Hangin' Round 05 Walk On The Wild Side 06 Make Up 07 Satellite Of Love 08 Wagon Wheel 09 New York Telephone Conversation 10 I'm So Free 11 Goodnight Ladies Bonus Tracks 12 Hanging´Round (Acoustic Demo- Previously unreleased) 13 Perfect Day (Acoustic Demo- Previously unreleased)
Lewis Allan "Lou" Reed (March 2, 1942 – October 27, 2013) was an American musician, singer, and songwriter. He was the guitarist, vocalist, and principal songwriter of the Velvet Underground, and his solo career spanned five decades.
The Velvet Underground was a commercial failure in the late 1960s, but the group gained a considerable cult following in the years since its demise and has gone on to become one of the most widely cited and influential bands of the era.Brian Eno famously stated that, while the Velvet Underground's debut album sold only 30,000 copies, "everyone who bought one of those 30,000 copies started a band."
Reed began a solo career in 1972. He had a hit the following year with "Walk on the Wild Side", but this level of mainstream commercial success was not repeated. Reed was known for his distinctive deadpan voice and poetic lyrics, and for pioneering and coining the term ostrich guitar tuning.
Rolling Stone magazine voted Reed's 1989 New York album the 19th best of the 1980s. In 2003, Rolling Stone magazine's list of The 500 Greatest Albums of All Time included two albums by Reed as a solo artist: Transformer and Berlin.