- published: 07 Jun 2019
- views: 26619824
'+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; })); }); -->
Sir Michael Philip "Mick" Jagger Kt (born 26 July 1943) is an English singer, songwriter and actor, best known as the lead vocalist and a co-founder of The Rolling Stones.
Jagger's career has spanned over 50 years, and he has been described as "one of the most popular and influential frontmen in the history of rock & roll". His distinctive voice and performance, along with Keith Richards' guitar style, have been the trademark of the Rolling Stones throughout the career of the band. Jagger gained press notoriety for his admitted drug use and romantic involvements, and was often portrayed as a countercultural figure. In the late 1960s Jagger began acting in films (starting with Performance and Ned Kelly), to mixed reception. In 1985 Jagger released his first solo album, She's the Boss. In early 2009 he joined the electric supergroup SuperHeavy.
In 1989 Jagger was inducted into the Rock and Roll Hall of Fame, and in 2004 into the UK Music Hall of Fame with the Rolling Stones. In 2003 he was knighted for his services to popular music.
Use Me may refer to:
"Use Me" is the third single by Kid Courageous, taken from their debut album Dear Diary. The single was released as The Use Me EP on 31 October 2005.
"Use Me" is a song, composed and originally recorded by Bill Withers, which was included on his 1972 album Still Bill. It was his second-biggest hit in the United States, released in September 1972, and later reaching No. 2 on the Billboard Hot 100 chart. "Use Me" also peaked at No. 2 on the soul chart for two weeks. Withers performed the song on Soul Train on November 4, 1972.Billboard ranked it as the No. 78 song for 1972. The song was certified Gold by the RIAA. The song is noted for its repeated bass figure which is heard alongside a complex rhythm in the percussion.
The song was included by Grace Jones, on her 1981 album Nightclubbing and was subsequently released by her as a single.
The singer complains about the advice of friends, who seem to have made it "their appointed duty" to talk the singer out of a romantic relationship that they see as one-sided, and where the singer is "used". But the singer has no doubt in wanting things to continue as they are, and implies that it is pleasurable enough to be "used" in that fashion that being "used up" completely would be welcome.
Please allow me to reintroduce myself...Forty Licks is back! Released on CD over 20 years ago, the definitive greatest hits collection is out officially on vinyl for the first time as a limited edition 4LP. Also available digitally and in Dolby Atmos, with three tracks new to streaming. Buy/listen now: https://therollingstones.lnk.to/40Licks #TheRollingStones #YouCantAlwaysGetWhatYouWant #RockAndRollCircus Music video by The Rolling Stones performing You Can't Always Get What You Want. © 2019 ABKCO Music & Records
The Rolling Stones have been talking about their big name collaborations on their new album. Guitarist Ronnie Wood said Lady Gaga and Stevie Wonder were both involved in Hackney Diamonds - although Gaga seemed a bit shy about once taking part in the studio. Full story: https://news.sky.com/story/the-rolling-stones-confirm-details-of-new-album-hackney-diamonds-12955496 #rollingstones #ladygaga #mickjagger SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itune...
Taylor Swift and Mick Jagger of The Rolling Stones performing '(I Can't Get No) Satisfaction' • Tour : The 1989 World Tour (2015) • Date : September 26, 2015 • City : Nashville, Tennessee • Venue : Bridgestone Arena 0:00 Taylor talks about the guest 1:03 Taylor introduces Mick Jagger 1:12 Song starts 4:19 Paul Sidoti's guitar solo 5:04 Song resumes 6:42 Song ends 6:59 Taylor's "mic drop" Original videos (all credits to the ones who filmed this performance) : - https://youtu.be/-RVXXqeS4OU - https://youtu.be/38OD81kvNrw - https://youtu.be/aXw4do5d7aI - https://youtu.be/OfNay3XSp9g - https://youtu.be/KJhE1JJYi0Y - https://youtu.be/MZbRrFoeMNc - https://youtu.be/aLi-IMEhOPw - https://www.instagram.com/p/8Uf9X3D3I6/?utm_medium=copy_link - https://www.instagram.com/p/BFfkyH8D3Pz/?utm_medium=c...
UK release: Sept 5th - Pre-order the new album “Hands All Over” including ‘Moves Like Jagger’ on iTunes now: http://bit.ly/oravTV Sign up for updates: http://smarturl.it/Maroon5.News Music video by Maroon 5 performing Moves Like Jagger. (C) 2011 A&M/Octone Records #VEVOCertified on April 16, 2012. http://www.vevo.com/certified http://www.youtube.com/vevocertified
© 2007 WMG Just Another Night Subscribe for more: http://smarturl.it/MickJaggerYouTube http://www.mickjagger.com/ https://twitter.com/MickJagger https://www.facebook.com/mickjaggerofficial http://mickjagger.shop.bravadousa.com/Default.aspx http://instagram.com/mickjagger Give me just another night, just another night with you Give me just another kiss, just before the dawn breaks through 'Cause I'm homesick, feel a little down and blue And I'm hurting, hurting baby just like you I was lonely 'til I saw you at the station And I never thought you'd keep our rendezvous Baby it's true. Give me just another night, just another night with you Give me just another kiss, just before the dawn breaks through 'Cause I'm hungry, hungry for your loving baby And I'm thirsty, thirsty for your lo...
From "David Bowie - Parkinson Interview ("Life on Mars", 2002)" here: https://www.youtube.com/watch?v=bnLgqeFxkW0 The dialogue between Mick Jagger and the person in the audience: Guy yells out: "Get your hair cut!!". Mick says: "What! ...and look like YOU!?" (Thanks to Chris Wilder)
Mick Jagger Is Now Over 80 How He Lives Is So Sad. What Mick Jagger's reputation is built upon. Leading The Rolling Stones, his journey through time is adorned with myriad relationships, from fleeting encounters to enduring bonds spanning decades. In addition, he is also so rebellious that it's hard to imagine all that was done by just one man. However, even though he broke all of his family's expectations, he stood on his own path and struggled with many tragedies on his own. Mick Jagger's life must be very interesting, so what are you waiting for, let's start the video.
- A brand new studio album from The Rolling Stones… Hackney Diamonds 💥 Out October 20th & available to pre-order now: https://therollingstones.lnk.to/Hackn... Watch the band introduce the album LIVE in conversation with Jimmy Fallon: https://therollingstones.lnk.to/Hackn... // New album, new music, new era // Listen to first single ANGRY: https://therollingstones.lnk.to/AngryYT Shop exclusive & limited Hackney Diamonds products on Stones Official Store: https://therollingstones.lnk.to/Hackn... Join Stones world // YouTube: https://RollingStones.lnk.to/YouTube Instagram: https://RollingStones.lnk.to/Instagram Tik Tok: https://RollingStones.lnk.to/TikTok_ Twitter/X: https://RollingStones.lnk.to/Twitter Facebook: https://RollingStones.lnk.to/Facebook Join Stones mailing list for e...
Hola gente, hoy les traigo una canción de los "stones", entre muchas comillas, ya que no cuenta con la participación de Keith Richards ni Brian Jones (miembros oficiales en aquella epoca), pero si con el resto de la muchachada de aquella época (Mick Jagger, Charlie Watts y Bill Wyman). Este es un cover de una canción de Blues del año 1940, siendo versionada por varios artistas. Fue grabada por la muchachada antes mencionada junto con Ry Cooder (guitarra) y Nicky Hopkins (teclados y piano), junto con las demás canciones del disco "Jamming With Edwars!". El disco fue grabado en la sesiones de Let It Bleed, cuando esperaban que Keith Richards volviese para seguir con las grabaciones del disco antes mencionado. Todo porque se enojo con Jimmy Miller por traer a Cooder para reforzar las guitarr...
The Rolling Stones frontman delivers a list for the ages. (Air date: 12/11/2012) #MickJagger #RollingStones #Letterman Subscribe to Letterman: https://bit.ly/3GeOIAg Follow Letterman on Social: Facebook: https://www.facebook.com/DavidLetterman Instagram: https://www.instagram.com/letterman/ Twitter: https://twitter.com/Letterman Welcome to the Letterman YouTube Channel, home to all your favorite clips from Late Night and Late Show - as well as conversations with the writers, producers and performers who helped make it all happen. These highlights have been artisanly-produced, carefully-curated, and chosen completely at random by an old computer that used to pick numbers for the New York Lotto back in the 90’s.
Shaggy - Use Me Official Music Video
"Hndrxx" Available at iTunes: http://smarturl.it/HNDRXX Apple Music: http://smarturl.it/HNDRXX.AM Spotify: http://smarturl.it/HNDRXX.Sptfy Google Play: http://smarturl.it/HNDRXX.GP Amazon Digital: http://smarturl.it/HNDRXX.Dig Deezer: http://smarturl.it/HNDRXX.Dzr Soundcloud: http://smarturl.it/HNDRXX.SC Tidal: http://smarturl.it/HNDRXX.Tidal Directed by: Nick Walker and Daniel Pappas https://www.futurefreebandz.com https://www.facebook.com/futureofficial https://www.twitter.com/1future https://www.instagram.com/future https://www.youtube.com/officialfuturevideos https://www.soundcloud.com/futureisnow (C) 2017 Epic Records, a division of Sony Music Entertainment
classic soul
Watch the official Lyric video for Shaggy "Use Me" Stream "Use Me" Now: https://ffm.to/useme Follow Shaggy: Facebook: https://www.facebook.com/Shaggy/ Twitter: https://twitter.com/DiRealShaggy Instagram: https://www.instagram.com/direalshaggy/ Store: https://raetown.com/
Watch the Official Video here: https://www.youtube.com/watch?v=GA9JvTWUXF4 Subscribe to Shaggy: https://www.youtube.com/channel/UCBtln7sL3FYAY6ePguz9sNg Stream "Use Me" Now: https://ffm.to/useme Follow and support Shaggy on: Facebook: https://www.facebook.com/Shaggy/ Twitter: https://twitter.com/DiRealShaggy Instagram: https://www.instagram.com/direalshaggy/ Store: https://raetown.com/ ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖ Use Me - Shaggy Lyrics: Yea You know you want a better man in your life Use me , baby Ha ha ha Shaggy ! Can ' t put no money ina your bank Can ' t put no gas ina your tank Can ' t satisfy you with the length Nothing what him a do not make sense Then how him come a pose like him ah boss Every minute that you 're with him is a loss If all you get is stress and the abuse Let me b...
Nightcore: Alec Benjamin - Use me “Use Me” is a song written by Alec Benjamin. He sings about a person, possibly a girl, that is using him. However, he is addicted to her, so he gets used to being used. He does not want her to use someone else, so doesn’t tell her that he knows her little secret. 🎵 - Listen to Best Nightcore in this Playlist: https://youtube.com/playlist?list=PLGb-QRliHh7QiGq9krOS1cTpUUAcgwdCQ 😈 - SUBSCRIBE to join team Eiden XII https://www.youtube.com/EidenXII?sub_confirmation=1 💬 - This is our Discord server if you're interested in joining: https://discord.gg/NWdKD2z 🐦 - Follow me on Twitter for the latest updates: https://twitter.com/EidenXII Alec benjamin! https://facebook.com/AlecBenjaminMusic https://twitter.com/alecbenjamin https://instagram.com/alecbenjamin ==...
Proud to announce my first headline shows in NYC & LA ... tickets are on-sale now: 8/14 - Baby's All Right (Brooklyn): http://bit.ly/AB_NY_1 8/23 - The Echo (Los Angeles): http://bit.ly/AB_LA_1 Responding to insta messages today if ya wanna send me a DM @alecbenjamin. Sign up for my email list for tour updates .. https://www.tinyurl.com/abmailing Special thanks to my good friend Greg Holden who write this song w/ me :) He's the best ! Here are some links to Greg's music ! please check it out . He is amazing ! https://open.spotify.com/artist/7Bcr2Bs6phLymt6kdqNNez https://www.youtube.com/user/gdholden Follow Alec Benjamin http://alecbenjamin.com https://www.facebook.com/AlecBenjaminMusic https://twitter.com/alecbenjamin https://www.instagram.com/alecbenjamin https://soundcloud.com/a...
Provided to YouTube by Legacy Recordings Use Me · Bill Withers Lean on Me: The Best of Bill Withers ℗ 1972 Columbia Records, a division of Sony Music Entertainment Released on: 1994-08-09 Producer: Ray Jackson Producer: James Gadson Producer: Melvin Dunlap Producer: Benorce Blackman Producer: John Snyder Auto-generated by YouTube.
Sir Michael Philip "Mick" Jagger Kt (born 26 July 1943) is an English singer, songwriter and actor, best known as the lead vocalist and a co-founder of The Rolling Stones.
Jagger's career has spanned over 50 years, and he has been described as "one of the most popular and influential frontmen in the history of rock & roll". His distinctive voice and performance, along with Keith Richards' guitar style, have been the trademark of the Rolling Stones throughout the career of the band. Jagger gained press notoriety for his admitted drug use and romantic involvements, and was often portrayed as a countercultural figure. In the late 1960s Jagger began acting in films (starting with Performance and Ned Kelly), to mixed reception. In 1985 Jagger released his first solo album, She's the Boss. In early 2009 he joined the electric supergroup SuperHeavy.
In 1989 Jagger was inducted into the Rock and Roll Hall of Fame, and in 2004 into the UK Music Hall of Fame with the Rolling Stones. In 2003 he was knighted for his services to popular music.
Yeah!
I'm livin' a charmed life
Whoo!
Yeah! I'm livin' a charmed life
When I walk out of my front door
I'm livin' a charmed life
Put my foot down in the fast lane... huh
And I'm livin' a charmed life
I move to the left
I move to the right
Watch out for the husband
Stay close to the wife
Yeah!
I'm livin' a charmed life (Charmed life)
Whoo! Yeah!
On edge of a nerve
When I step out on the dance floor
Charmed life (Charmed life)
I move to the left
I move to the right
Ahhhh
When I'm walkin' on the North edge
I'm livin' a charmed life
Yeah
Hangin' by a left-up tiny thread
Be a sacrifice
Look out...
Yeah!
I'm livin' a charmed life (Charmed life)
Whoo! Yeah!
I'm livin' a charmed life (Charmed life)
Whoo!
[18 sec. harmonica solo]
Mmmm... I like to keep my head way down in this town
Someday I like to stand up
I hope my body'll prowl-l-l
Come on. Charmed life. (Charmed life)
Go on, come on!
I'm livin' a charmed life. (Charmed life)
Yeah... yeah! Livin' a charmed life. (Charmed life)
Whooo! Yeah! Livin' a charmed life. (Charmed life)
Whoo! Yeah! Livin' a charmed life.
Whoo! Yeah! Livin' a charmed life.