'+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; })); }); -->

Playing for Change

Playing for Change is a multimedia music project, created by the American producer and sound engineer Mark Johnson with his Timeless Media Group, that seeks to inspire, connect, and bring peace to the world through music. Playing For Change also created a separate non-profit organization called the Playing For Change Foundation, which builds music schools for children around the world.

Origin

Playing For Change was born in 2002 as a shared vision between co-founders, Mark Johnson, Raan Williams, and Whitney Kroenke, to hit the streets of America with a mobile recording studio and cameras in search of inspiration and the heartbeat of the people. Producers Johnson and Enzo Buono traveled around the world to places including New Orleans, Barcelona, South Africa, India, Nepal, the Middle East and Ireland. Using mobile recording equipment, the duo recorded local musicians performing the same song, interpreted in their own style. Among the artists participating or openly involved in the project are Vusi Mahlasela, Louis Mhlanga, Clarence Bekker, David Guido Pietroni, Tal Ben Ari (Tula), Bono, Keb' Mo', David Broza, Manu Chao, Grandpa Elliott, Keith Richards, Toots Hibbert from Toots & the Maytals, Taj Mahal and Stephen Marley. This resulted in the award-winning documentary A Cinematic Discovery of Street Musicians.

Podcasts:

  • Stand By Me | Playing For Change | Song Around The World

    🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ From the award-winning documentary, Playing For Change: Peace Through Music comes "Stand By Me," the first of many Songs Around The World produced by Playing For Change. This Ben E. King classic features musicians around the world recorded by the Playing For Change team during their travels. This song continues to remind us that music has the power to break down boundaries and overcome distances between people. DISCOVER OUR RECENT PRODUCTIONS: https://playingforchange.com/ DOWNLOAD OUR MUSIC: https://www.playingforchange.com/music GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change https://playingfor...

    published: 07 Nov 2008
  • The Weight | Featuring Ringo Starr and Robbie Robertson | Playing For Change | Song Around The World

    🎶🌍Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ “The Weight,” features Ringo Starr and The Band's original member Robbie Robertson, along with musicians across 5 continents. Great songs can travel everywhere bridging what divides us and inspiring us to see how easily we all get along when the music plays. Special thanks to our partner Cambria® for helping to make this possible and to Robbie Robertson, Ringo Starr and all the musicians for joining us in celebrating 50 years of this classic song. WATCH AD-FREE VIDEOS: https://www.playingforchange.com DOWNLOAD OR MUSIC FOR FREE: https://www.playingforchange.com/music Dedicated To "The Band": Rick Danko Levon Helm Garth Hudson Richard Manuel Robbie Robertson Playing For ...

    published: 18 Sep 2019
  • When The Levee Breaks feat. John Paul Jones | Playing For Change | Song Around The World

    🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ “When The Levee Breaks” is a powerful, thought-provoking and emotionally-charged classic by Led Zeppelin, from their Led Zeppelin IV album. The song is a rework of the 1929 original release by Kansas Joe Mccoy and Memphis Minnie about the Great Mississippi Flood of 1927; the most destructive river flooding in U.S. history. “It seems that little has changed since 1927, or even 2005 with Katrina. It’s still a really powerful track, both musically and lyrically.”- John Paul Jones Legendary multi-instrumentalist, John Paul Jones, is accompanied by Stephen Perkins of Jane's Addiction, Susan Tedeschi, Derek Trucks and over 20 musicians and dancers from seven different countries,...

    published: 18 Feb 2022
  • La Bamba (Los Lobos) feat. Andrés Calamaro | Playing For Change | Song Around The World

    🎶🌍Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ We started this recording on a back porch in East Los Angeles with members of Los Lobos, and then returned to the roots of the song in Veracruz, Mexico. As we traveled, musicians everywhere mixed the traditional and rock 'n' roll styles of "La Bamba" into a new Song Around The World. Join the movement and be a part of the Playing For Change family by subscribing to our channel for more incredible music collaborations that will touch your heart and uplift your spirit. Share this video with your friends and spread the message of harmony and love through music. JOIN THE MOVEMENT Subscribe to our newsletter: http://bit.ly/1x9CAfJ GET SOCIAL https://www.facebook.com/PlayingFo...

    published: 16 Jul 2014
  • "Peace Train" featuring Yusuf / Cat Stevens | Playing For Change | Song Around The World

    🎶🌍 Pre-order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ “Peace Train” – Yusuf / Cat Stevens’ timeless anthem of hope and unity – was originally released on the classic album 'Teaser and the Firecat' in 1971 and was Stevens’ first US Top 10 hit, reaching number 7 on the Billboard Hot 100 chart. This Song Around The World version features more than 25 musicians from 12 countries and unites Yusuf / Cat Stevens, singing and playing a beautiful white piano in a tranquil open air setting in Istanbul, Turkey, with musicians such as five time Grammy Award winning blues/americana artist Keb’ Mo’; Grammy nominated Senegalese artist Baaba Maal; Silkroad’s Rhiannon Giddens—also a Grammy Award winner; Ghassan Birumi playing the oud in R...

    published: 21 Sep 2021
  • Gimme Shelter (The Rolling Stones) feat. Taj Mahal | Playing For Change | Song Around The World

    🎶🌍 Pre-order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ "Gimme Shelter" is a track we have wanted to record for years. This song expresses the urgency we all face to unite together as a planet and offers us wisdom with the words, "War, children, it's just a shot away... Love, sister, it's just a kiss away". It really is that simple. We dedicate this song to all the lost, homeless and forgotten people in this world. It is in the shelter of each other that the people live. JOIN THE MOVEMENT Subscribe to our mailing list: www.bit.ly/1x9CAfJ GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change Playing For Change (PFC) is a movement created to inspire ...

    published: 26 May 2011
  • Everyday People feat. Jack Johnson, Jason Mraz, Keb' Mo' | Turnaround Arts | Playing For Change

    🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ We are proud and honored to share “Everyday People,” produced by Playing For Change in partnership with Turnaround Arts. Turnaround Arts infuses struggling schools with arts as a strategy for reform. The program was founded by President Obama's Committee on the Arts and Humanities and is now run by the John F. Kennedy Center for the Performing Arts. "Everyday People" features Turnaround Arts students alongside their Turnaround Artists including Jack Johnson, Jason Mraz, Paula Abdul, Misty Copeland, Elizabeth Banks, Keb' Mo, Forest Whitaker, and many more performing this timely song by Sly and the Family Stone. This video was created to inspire the idea that all childr...

    published: 27 May 2016
  • Redemption Song feat. Stephen Marley | Playing For Change | Song Around The World

    🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ This video is a version of "Redemption Song" performed around the world in honor of Bob Marley's birthday. We have reunited Bob with his son Stephen Marley and the support of the entire planet. In this song, there is a feeling of rising above the past and moving forward with love in our hearts and hope in our eyes. JOIN THE MOVEMENT Subscribe to our mailing list: www.bit.ly/1x9CAfJ GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change Playing For Change (PFC) is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down bound...

    published: 07 Feb 2011
  • One Love (Bob Marley) feat. Manu Chao | Playing For Change | Song Around The World

    🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ From the award-winning documentary, "Playing For Change: Peace Through Music", comes an incredible rendition of the legendary Bob Marley song "One Love" with Keb' Mo' and Manu Chao. This is the third video from the documentary and a follow up to the classic "Stand By Me" and the incredible "Don't Worry." Released in celebration of Bob Marley's birthday on February 6th, this tribute to the legend is performed by musicians around the world adding their part to the song as it traveled the globe. JOIN THE MOVEMENT Subscribe to our mailing list: http://bit.ly/1x9CAfJ Join us as a PFC Member: http://bit.ly/JoinAndSupportPFC GET SOCIAL https://www.facebook.com/PlayingForChange...

    published: 05 Feb 2009
  • ​I Still Haven’t Found What I’m Looking For | Song Around The World | ICRC + Playing For Change

    🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ We are proud to share our new Song Around The World, “I Still Haven't Found What I´m Looking For,” by U2, to send a message to the relatives of missing people in the world: you are not alone in the search of your loved ones. This is a joint project by the International Committee of the Red Cross (ICRC) and Playing For Change in honor of the International Day of the Disappeared. This video features over 40 extraordinary musicians from 13 countries who played several instruments and combined their magnificent voices. In the world, each day, dozens of people disappear for diverse causes related to armed conflicts, violence, natural disasters and on the migration route, among ...

    published: 30 Aug 2022
developed with YouTube
Stand By Me | Playing For Change | Song Around The World
5:28

Stand By Me | Playing For Change | Song Around The World

  • Order:
  • Duration: 5:28
  • Uploaded Date: 07 Nov 2008
  • views: 214101304
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ From the award-winning documentary, Playing For Change: Peace Through Music comes "Stand By Me," the first of many Songs Around The World produced by Playing For Change. This Ben E. King classic features musicians around the world recorded by the Playing For Change team during their travels. This song continues to remind us that music has the power to break down boundaries and overcome distances between people. DISCOVER OUR RECENT PRODUCTIONS: https://playingforchange.com/ DOWNLOAD OUR MUSIC: https://www.playingforchange.com/music GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change https://playingforchange.com Playing For Change (PFC) is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/Stand_By_Me_|_Playing_For_Change_|_Song_Around_The_World
The Weight | Featuring Ringo Starr and Robbie Robertson | Playing For Change | Song Around The World
5:47

The Weight | Featuring Ringo Starr and Robbie Robertson | Playing For Change | Song Around The World

  • Order:
  • Duration: 5:47
  • Uploaded Date: 18 Sep 2019
  • views: 42842632
🎶🌍Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ “The Weight,” features Ringo Starr and The Band's original member Robbie Robertson, along with musicians across 5 continents. Great songs can travel everywhere bridging what divides us and inspiring us to see how easily we all get along when the music plays. Special thanks to our partner Cambria® for helping to make this possible and to Robbie Robertson, Ringo Starr and all the musicians for joining us in celebrating 50 years of this classic song. WATCH AD-FREE VIDEOS: https://www.playingforchange.com DOWNLOAD OR MUSIC FOR FREE: https://www.playingforchange.com/music Dedicated To "The Band": Rick Danko Levon Helm Garth Hudson Richard Manuel Robbie Robertson Playing For Change is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. Our primary focus is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos we call Songs Around the World. Creating these videos motivated us to form the Playing For Change Band—a tangible, traveling representation of our mission, featuring musicians met along our journey; and establish the Playing For Change Foundation—a separate 501(c)(3) nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, we aim to create hope and inspiration for the future of our planet. Learn more: http://playingforchange.com #iPlayForChange #SongAroundTheWorld Facebook: https://www.facebook.com/PlayingForChange Instagram: https://www.instagram.com/playing4change Twitter: https://www.twitter.com/playing4change
https://wn.com/The_Weight_|_Featuring_Ringo_Starr_And_Robbie_Robertson_|_Playing_For_Change_|_Song_Around_The_World
When The Levee Breaks feat. John Paul Jones | Playing For Change | Song Around The World
6:04

When The Levee Breaks feat. John Paul Jones | Playing For Change | Song Around The World

  • Order:
  • Duration: 6:04
  • Uploaded Date: 18 Feb 2022
  • views: 15367089
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ “When The Levee Breaks” is a powerful, thought-provoking and emotionally-charged classic by Led Zeppelin, from their Led Zeppelin IV album. The song is a rework of the 1929 original release by Kansas Joe Mccoy and Memphis Minnie about the Great Mississippi Flood of 1927; the most destructive river flooding in U.S. history. “It seems that little has changed since 1927, or even 2005 with Katrina. It’s still a really powerful track, both musically and lyrically.”- John Paul Jones Legendary multi-instrumentalist, John Paul Jones, is accompanied by Stephen Perkins of Jane's Addiction, Susan Tedeschi, Derek Trucks and over 20 musicians and dancers from seven different countries, in this Song Around The World version featured in Peace Through Music: A Global Event for the Environment. Feel the impact of these compelling lyrics and let the music move your spirit! "When The Levee Breaks" was written by John Bonham, John Paul Jones, Kansas Joe Mccoy, Memphis Minnie, Jimmy Page and Robert Plant This Song Around The World was produced by Sebastian Robertson and Mark Johnson FEATURING: Alfredo Arce: Siku Flute Ben Lee: Harmonica Buffalo Nichols: Vocals, Guitar Davey Chegwidden: Dundun Drums Derek Trucks: Slide Guitar Drums of the Pacific: Dancing, Log Drums Elle Márjá Eira: Vocals Jason Tamba: Banjo John Paul Jones: Bass Keith Secola: Slide Guitar Mermans Mosengo: Harmonica Mihirangi: Vocals Nakeiltha Campbell: Dundun Drums Pete Sands: Acoustic Guitar Sebastian Robertson: Electric Guitar Sikiru Adepoju: Talking Drum Susan Tedeschi: Vocals Stephen Perkins: Drums Watch "Peace Through Music: A Global Event for the Environment." #PeaceThroughMusic2021 #EnvironmentalJustice Learn More About Our Impact Partners: https://www.americanrivers.org https://www.worldwildlife.org https://reverb.org https://www.conservation.org JOIN THE MOVEMENT Subscribe to our mailing list: http://bit.ly/1x9CAfJ Join us as a PFC Member: http://bit.ly/JoinAndSupportPFC GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change https://playingforchange.com SPECIAL THANKS TO OUR PARTNERS IN MAKING CHANGE: Corning® Gorilla® Glass launched in 2007. Since its inception, Gorilla Glass has become the glass of choice for mobile consumer electronics manufacturers around the globe. The patented, durable glass technology has been designed into more than 8 billion consumer electronic devices by more than 45 major OEMs. Formed through Corning’s proprietary fusion draw process and strengthened through an ion-exchange process, Corning Gorilla Glass continues to deliver industry-leading performance and durability with a thin, pristine surface that is ideal for the mobile consumer electronics industry as well as automotive applications. Audio-Technica—Audio pioneer in high-performance sound design Established in 1962, Audio-Technica is a worldwide group of companies devoted to the design, manufacture, marketing and distribution of problem-solving audio equipment. Initially known for state-of-the-art phonograph cartridges, A-T now creates high-performance microphones, headphones, wireless systems, mixers and electronic products for home and professional use. For more information visit: https://www.audio-technica.com Playing For Change (PFC) is a Certified B Corp (Social Purpose Organization) created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to supporting music programs for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more, visit https://playingforchange.com To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/When_The_Levee_Breaks_Feat._John_Paul_Jones_|_Playing_For_Change_|_Song_Around_The_World
La Bamba (Los Lobos) feat. Andrés Calamaro | Playing For Change | Song Around The World
3:53

La Bamba (Los Lobos) feat. Andrés Calamaro | Playing For Change | Song Around The World

  • Order:
  • Duration: 3:53
  • Uploaded Date: 16 Jul 2014
  • views: 52135441
🎶🌍Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ We started this recording on a back porch in East Los Angeles with members of Los Lobos, and then returned to the roots of the song in Veracruz, Mexico. As we traveled, musicians everywhere mixed the traditional and rock 'n' roll styles of "La Bamba" into a new Song Around The World. Join the movement and be a part of the Playing For Change family by subscribing to our channel for more incredible music collaborations that will touch your heart and uplift your spirit. Share this video with your friends and spread the message of harmony and love through music. JOIN THE MOVEMENT Subscribe to our newsletter: http://bit.ly/1x9CAfJ GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change Playing For Change (PFC) is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/La_Bamba_(Los_Lobos)_Feat._Andrés_Calamaro_|_Playing_For_Change_|_Song_Around_The_World
"Peace Train" featuring Yusuf / Cat Stevens | Playing For Change | Song Around The World
4:10

"Peace Train" featuring Yusuf / Cat Stevens | Playing For Change | Song Around The World

  • Order:
  • Duration: 4:10
  • Uploaded Date: 21 Sep 2021
  • views: 5503979
🎶🌍 Pre-order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ “Peace Train” – Yusuf / Cat Stevens’ timeless anthem of hope and unity – was originally released on the classic album 'Teaser and the Firecat' in 1971 and was Stevens’ first US Top 10 hit, reaching number 7 on the Billboard Hot 100 chart. This Song Around The World version features more than 25 musicians from 12 countries and unites Yusuf / Cat Stevens, singing and playing a beautiful white piano in a tranquil open air setting in Istanbul, Turkey, with musicians such as five time Grammy Award winning blues/americana artist Keb’ Mo’; Grammy nominated Senegalese artist Baaba Maal; Silkroad’s Rhiannon Giddens—also a Grammy Award winner; Ghassan Birumi playing the oud in Ramallah, Palestine; musicians from the Silkroad Ensemble in Rhinebeck, New York; Pat Simmons (The Doobie Brothers) and James “Hutch” Hutchinson (bass player with Bonnie Raitt) performing in Maui, Hawaii; and bringing together conflict regions with Tushar Lall playing the harmonium in Delhi, India, and Joshua Amjad playing the Kartaal in Karachi, Pakistan. "Everyone jump upon the Peace Train" and let's make this world a better place. Happy International Day of Peace. One Love!!! #InternationalDayofPeace #WorldPeaceDay MORE FROM YUSUF / CAT STEVENS https://www.youtube.com/c/YusufCatStevens https://www.facebook.com/YusufCatStevens/ https://catstevens.com/ https://twitter.com/yusufcatstevens https://www.instagram.com/YusufCatStevens/ JOIN THE MOVEMENT Subscribe to our mailing list: http://bit.ly/1x9CAfJ Join us as a PFC Member: http://bit.ly/JoinAndSupportPFC GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change https://playingforchange.com Playing For Change (PFC) is a Certified B Corp (Social Purpose Organization) created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to supporting music programs for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more, visit https://playingforchange.com To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/Peace_Train_Featuring_Yusuf_Cat_Stevens_|_Playing_For_Change_|_Song_Around_The_World
Gimme Shelter (The Rolling Stones) feat. Taj Mahal | Playing For Change | Song Around The World
4:04

Gimme Shelter (The Rolling Stones) feat. Taj Mahal | Playing For Change | Song Around The World

  • Order:
  • Duration: 4:04
  • Uploaded Date: 26 May 2011
  • views: 26155955
🎶🌍 Pre-order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ "Gimme Shelter" is a track we have wanted to record for years. This song expresses the urgency we all face to unite together as a planet and offers us wisdom with the words, "War, children, it's just a shot away... Love, sister, it's just a kiss away". It really is that simple. We dedicate this song to all the lost, homeless and forgotten people in this world. It is in the shelter of each other that the people live. JOIN THE MOVEMENT Subscribe to our mailing list: www.bit.ly/1x9CAfJ GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change Playing For Change (PFC) is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/Gimme_Shelter_(The_Rolling_Stones)_Feat._Taj_Mahal_|_Playing_For_Change_|_Song_Around_The_World
Everyday People feat. Jack Johnson, Jason Mraz, Keb' Mo' | Turnaround Arts | Playing For Change
3:19

Everyday People feat. Jack Johnson, Jason Mraz, Keb' Mo' | Turnaround Arts | Playing For Change

  • Order:
  • Duration: 3:19
  • Uploaded Date: 27 May 2016
  • views: 6702054
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ We are proud and honored to share “Everyday People,” produced by Playing For Change in partnership with Turnaround Arts. Turnaround Arts infuses struggling schools with arts as a strategy for reform. The program was founded by President Obama's Committee on the Arts and Humanities and is now run by the John F. Kennedy Center for the Performing Arts. "Everyday People" features Turnaround Arts students alongside their Turnaround Artists including Jack Johnson, Jason Mraz, Paula Abdul, Misty Copeland, Elizabeth Banks, Keb' Mo, Forest Whitaker, and many more performing this timely song by Sly and the Family Stone. This video was created to inspire the idea that all children deserve access to the arts in school and that the arts have the power to create change. Learn more about Turnaround Arts at http://turnaroundarts.kennedy-center.org Twitter: @TurnaroundArts Facebook: @TurnaroundArts Instagram: @turnaroundartsnational Playing For Change is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. Our primary focus is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos we call Songs Around The World. Creating these videos motivated us to form the Playing For Change Band—a tangible, traveling representation of our mission, featuring musicians met along our journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, we aim to create hope and inspiration for the future of our planet. Learn more: http://playingforchange.com Twitter: @playing4change Facebook: @PlayingForChange Instagram: @playing4change “Everyday People” Written by Sly Stewart © Mijac Music. Administered by Sony/ATV Music Publishing
https://wn.com/Everyday_People_Feat._Jack_Johnson,_Jason_Mraz,_Keb'_Mo'_|_Turnaround_Arts_|_Playing_For_Change
Redemption Song feat. Stephen Marley | Playing For Change | Song Around The World
4:17

Redemption Song feat. Stephen Marley | Playing For Change | Song Around The World

  • Order:
  • Duration: 4:17
  • Uploaded Date: 07 Feb 2011
  • views: 66757991
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ This video is a version of "Redemption Song" performed around the world in honor of Bob Marley's birthday. We have reunited Bob with his son Stephen Marley and the support of the entire planet. In this song, there is a feeling of rising above the past and moving forward with love in our hearts and hope in our eyes. JOIN THE MOVEMENT Subscribe to our mailing list: www.bit.ly/1x9CAfJ GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change Playing For Change (PFC) is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/Redemption_Song_Feat._Stephen_Marley_|_Playing_For_Change_|_Song_Around_The_World
One Love (Bob Marley) feat. Manu Chao | Playing For Change | Song Around The World
5:08

One Love (Bob Marley) feat. Manu Chao | Playing For Change | Song Around The World

  • Order:
  • Duration: 5:08
  • Uploaded Date: 05 Feb 2009
  • views: 69844062
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ From the award-winning documentary, "Playing For Change: Peace Through Music", comes an incredible rendition of the legendary Bob Marley song "One Love" with Keb' Mo' and Manu Chao. This is the third video from the documentary and a follow up to the classic "Stand By Me" and the incredible "Don't Worry." Released in celebration of Bob Marley's birthday on February 6th, this tribute to the legend is performed by musicians around the world adding their part to the song as it traveled the globe. JOIN THE MOVEMENT Subscribe to our mailing list: http://bit.ly/1x9CAfJ Join us as a PFC Member: http://bit.ly/JoinAndSupportPFC GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change https://playingforchange.com Playing For Change (PFC) is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/One_Love_(Bob_Marley)_Feat._Manu_Chao_|_Playing_For_Change_|_Song_Around_The_World
​I Still Haven’t Found What I’m Looking For | Song Around The World | ICRC + Playing For Change
5:36

​I Still Haven’t Found What I’m Looking For | Song Around The World | ICRC + Playing For Change

  • Order:
  • Duration: 5:36
  • Uploaded Date: 30 Aug 2022
  • views: 6868013
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ We are proud to share our new Song Around The World, “I Still Haven't Found What I´m Looking For,” by U2, to send a message to the relatives of missing people in the world: you are not alone in the search of your loved ones. This is a joint project by the International Committee of the Red Cross (ICRC) and Playing For Change in honor of the International Day of the Disappeared. This video features over 40 extraordinary musicians from 13 countries who played several instruments and combined their magnificent voices. In the world, each day, dozens of people disappear for diverse causes related to armed conflicts, violence, natural disasters and on the migration route, among others. Some of their families have had no news of their missing loved ones for more than 20 years. Together, and through music, we would like to express our solidarity to those who are facing the profound and universal feeling of losing a loved one. The families of missing people will not stop searching, nor will we stop helping them. We would like to thank all of the amazing musicians for their contribution and sharing their enormous talent with this project. #TheSearchDoesntStop #InternationalDayOfTheDisappeared www.icrc.org/missing2022 Written By Larry Mullen Jr., Adam Clayton, David Howell Evans, Bono FEATURING Aghyad Al Shawaf - Writer of Arabic lyrics Amaan Choir (with the soloists Hala Al-Sadder and Rebal Alkhodari) - Vocals Andrea García - Strings Chris Pierce - Vocals Daniel Lanois - Pedal Steel Guitar, Vocals David Giosa - Trombone François Causse - Drums Glen David Andrews Band - Drum Ensemble Inara George - Vocals John Cruz - Acoustic Guitar, Vocals Kátsica Mayoral - Percussion Louis Mhlanga - Muted Guitar Madjid Fahem - Acoustic Guitar Marfa Kurakina - Bass Michael Ruff - Keyboards Olivia Ruff - Vocals Paulo Heman - Surdu, Shaker Prince Diabaté - Kora Roberto Luti - Guitar Rodrigo Cadena - Strings Roopak Naigaonkar - Sarod Roselyn Williams ​-​ Vocals Sherieta Lewis - Vocals Sosha Choir - Vocals Tushar Lall - Harmonium JOIN THE MOVEMENT Subscribe to our mailing list: http://bit.ly/1x9CAfJ Join us as a PFC Member: http://bit.ly/JoinAndSupportPFC GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change https://playingforchange.com SPECIAL THANKS TO OUR PARTNERS IN MAKING CHANGE: Corning® Gorilla® Glass launched in 2007. Since its inception, Gorilla Glass has become the glass of choice for mobile consumer electronics manufacturers around the globe. The patented, durable glass technology has been designed into more than 8 billion consumer electronic devices by more than 45 major OEMs. Formed through Corning’s proprietary fusion draw process and strengthened through an ion-exchange process, Corning Gorilla Glass continues to deliver industry-leading performance and durability with a thin, pristine surface that is ideal for the mobile consumer electronics industry as well as automotive applications. Audio-Technica—Audio pioneer in high-performance sound design Established in 1962, Audio-Technica is a worldwide group of companies devoted to the design, manufacture, marketing and distribution of problem-solving audio equipment. Initially known for state-of-the-art phonograph cartridges, A-T now creates high-performance microphones, headphones, wireless systems, mixers and electronic products for home and professional use. For more information visit: https://www.audio-technica.com Playing For Change (PFC) is a Certified B Corp (Social Purpose Organization) created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to supporting music programs for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more, visit https://playingforchange.com To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
https://wn.com/​I_Still_Haven’T_Found_What_I’M_Looking_For_|_Song_Around_The_World_|_Icrc_Playing_For_Change
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Stand By Me | Playing For Change | Song Around The World
    5:28
    Stand By Me | Playing For Change | Song Around The Worldremove from playlist
  • The Weight | Featuring Ringo Starr and Robbie Robertson | Playing For Change | Song Around The World
    5:47
    The Weight | Featuring Ringo Starr and Robbie Robertson | Playing For Change | Song Around The Worldremove from playlist
  • When The Levee Breaks feat. John Paul Jones | Playing For Change | Song Around The World
    6:04
    When The Levee Breaks feat. John Paul Jones | Playing For Change | Song Around The Worldremove from playlist
  • La Bamba (Los Lobos) feat. Andrés Calamaro | Playing For Change | Song Around The World
    3:53
    La Bamba (Los Lobos) feat. Andrés Calamaro | Playing For Change | Song Around The Worldremove from playlist
  • 4:10
    "Peace Train" featuring Yusuf / Cat Stevens | Playing For Change | Song Around The Worldremove from playlist
  • Gimme Shelter (The Rolling Stones) feat. Taj Mahal | Playing For Change | Song Around The World
    4:04
    Gimme Shelter (The Rolling Stones) feat. Taj Mahal | Playing For Change | Song Around The Worldremove from playlist
  • Everyday People feat. Jack Johnson, Jason Mraz, Keb' Mo' | Turnaround Arts | Playing For Change
    3:19
    Everyday People feat. Jack Johnson, Jason Mraz, Keb' Mo' | Turnaround Arts | Playing For Changeremove from playlist
  • Redemption Song feat. Stephen Marley | Playing For Change | Song Around The World
    4:17
    Redemption Song feat. Stephen Marley | Playing For Change | Song Around The Worldremove from playlist
  • One Love (Bob Marley) feat. Manu Chao | Playing For Change | Song Around The World
    5:08
    One Love (Bob Marley) feat. Manu Chao | Playing For Change | Song Around The Worldremove from playlist
  • ​I Still Haven’t Found What I’m Looking For | Song Around The World | ICRC + Playing For Change
    5:36
    ​I Still Haven’t Found What I’m Looking For | Song Around The World | ICRC + Playing For Changeremove from playlist
developed with YouTube
PLAYLIST TIME:

Stand By Me | Playing For Change | Song Around The World

🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collections/songs-for-humanity 🎧✨ From the award-winning documentary, Playing For Change: Peace Through Music comes "Stand By Me," the first of many Songs Around The World produced by Playing For Change. This Ben E. King classic features musicians around the world recorded by the Playing For Change team during their travels. This song continues to remind us that music has the power to break down boundaries and overcome distances between people. DISCOVER OUR RECENT PRODUCTIONS: https://playingforchange.com/ DOWNLOAD OUR MUSIC: https://www.playingforchange.com/music GET SOCIAL https://www.facebook.com/PlayingForChange https://twitter.com/playing4change http://instagram.com/playing4change https://playingforchange.com Playing For Change (PFC) is a movement created to inspire and connect the world through music, born from the shared belief that music has the power to break down boundaries and overcome distances between people. The primary focus of PFC is to record and film musicians performing in their natural environments and combine their talents and cultural power in innovative videos called Songs Around The World. Creating these videos motivated PFC to form the Playing For Change Band—a tangible, traveling representation of its mission, featuring musicians met along their journey; and establish the Playing For Change Foundation—a separate 501(c)3 nonprofit organization dedicated to building music and art schools for children around the world. Through these efforts, Playing For Change aims to create hope and inspiration for the future of our planet. To learn more about the work of the PFC Foundation, visit http://www.playingforchange.org
5:28
Stand By Me | Playing For Change | Song Around The World
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collec...
published: 07 Nov 2008
Play in Full Screen
5:47
The Weight | Featuring Ringo Starr and Robbie Robertson | Playing For Change | Song Around The World
🎶🌍Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collect...
published: 18 Sep 2019
Play in Full Screen
6:04
When The Levee Breaks feat. John Paul Jones | Playing For Change | Song Around The World
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collec...
published: 18 Feb 2022
Play in Full Screen
3:53
La Bamba (Los Lobos) feat. Andrés Calamaro | Playing For Change | Song Around The World
🎶🌍Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collect...
published: 16 Jul 2014
Play in Full Screen
4:10
"Peace Train" featuring Yusuf / Cat Stevens | Playing For Change | Song Around The World
🎶🌍 Pre-order our latest album Songs For Humanity now! https://shop.playingforchange.com/co...
published: 21 Sep 2021
Play in Full Screen
4:04
Gimme Shelter (The Rolling Stones) feat. Taj Mahal | Playing For Change | Song Around The World
🎶🌍 Pre-order our latest album Songs For Humanity now! https://shop.playingforchange.com/co...
published: 26 May 2011
Play in Full Screen
3:19
Everyday People feat. Jack Johnson, Jason Mraz, Keb' Mo' | Turnaround Arts | Playing For Change
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collec...
published: 27 May 2016
Play in Full Screen
4:17
Redemption Song feat. Stephen Marley | Playing For Change | Song Around The World
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collec...
published: 07 Feb 2011
Play in Full Screen
5:08
One Love (Bob Marley) feat. Manu Chao | Playing For Change | Song Around The World
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collec...
published: 05 Feb 2009
Play in Full Screen
5:36
​I Still Haven’t Found What I’m Looking For | Song Around The World | ICRC + Playing For Change
🎶🌍 Order our latest album Songs For Humanity now! https://shop.playingforchange.com/collec...
published: 30 Aug 2022
Play in Full Screen

Playing for Change

Playing for Change is a multimedia music project, created by the American producer and sound engineer Mark Johnson with his Timeless Media Group, that seeks to inspire, connect, and bring peace to the world through music. Playing For Change also created a separate non-profit organization called the Playing For Change Foundation, which builds music schools for children around the world.

Origin

Playing For Change was born in 2002 as a shared vision between co-founders, Mark Johnson, Raan Williams, and Whitney Kroenke, to hit the streets of America with a mobile recording studio and cameras in search of inspiration and the heartbeat of the people. Producers Johnson and Enzo Buono traveled around the world to places including New Orleans, Barcelona, South Africa, India, Nepal, the Middle East and Ireland. Using mobile recording equipment, the duo recorded local musicians performing the same song, interpreted in their own style. Among the artists participating or openly involved in the project are Vusi Mahlasela, Louis Mhlanga, Clarence Bekker, David Guido Pietroni, Tal Ben Ari (Tula), Bono, Keb' Mo', David Broza, Manu Chao, Grandpa Elliott, Keith Richards, Toots Hibbert from Toots & the Maytals, Taj Mahal and Stephen Marley. This resulted in the award-winning documentary A Cinematic Discovery of Street Musicians.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: Playing for change

Edit

PLAYING FOR CHANGE UNVEILS ELECTRIFYING ALBUM SONGS FOR HUMANITY FEATURING ICONIC COLLABORATIONS FROM ROBBIE ROBERTSON, RINGO STARR, JOHN PAUL JONES, CARLOS SANTANA, SLASH, PETER GABRIEL AND MORE

PR Newswire 07 Nov 2024
Songs For Humanity&nbsp;will be available on the Playing For Change website ... About Playing For Change. Playing For Change (PFC) was created to unify the world through the power of music ... Playing For ...
Edit

A Global Song Of Unity, Empowerment, And Hope: Traditional Medicinals Partners With Playing For Change ...

MENA FN 16 Oct 2024
(MENAFN - 3BL) Music has the power to unite, heal, and inspire change. Traditional Medicinals is proud to present a powerful global rendition of Bob Marley's iconic anthem, "No Woman, No Cry," in ... .
Edit

PLAYING FOR CHANGE TO RELEASE NEW SONG AROUND THE WORLD, NO WOMAN NO CRY, FEATURING ...

MENA FN 09 Oct 2024
(MENAFN - PR Newswire). LOS ANGELES, Oct. 8, 2024 /PRNewswire/ --Playing For Change (PFC), a Certified B Corp (Social Purpose Corporation) global multimedia company dedicated to unifying the world ... .
Edit

Playing For Frances: Playing for Change Foundation Hosts a Night of Music and Unity in ...

The Daily Journal - San Mateo 13 Mar 2024
LOS ANGELES, March 12, 2024 (GLOBE NEWSWIRE) -- On March 9, 2024, Playing For Change Foundation (PFCF), an esteemed foundation for amplifying local impact zones ... About Playing For Change Foundation.
Edit

Playing For Change Foundation Announces Playing For Frances Iconic Artist Charity Auction

MENA FN 01 Mar 2024
(MENAFN - GlobeNewsWire - Nasdaq) Auction Includes Items from Billie Eilish, Phoebe Bridgers, Coldplay, Radiohead, and many more LOS ANGELES, March 01, 2024 (GLOBE NEWSWIRE) -- Playing For Change ... .
Edit

Playing For Change Foundation Partners With Seminole Hard Rock Hotel & Casino Hollywood To Amplify ...

MENA FN 25 Jan 2024
(MENAFN - GlobeNewsWire - Nasdaq) MIAMI, Jan. 25, 2024 (GLOBE NEWSWIRE) -- Playing For Change Foundation (PFCF), renowned for its global outreach in music education and community support, is ... .
Edit

Playing For Change Foundation Partners with Seminole Hard Rock Hotel & Casino Hollywood to ...

Enid News & Eagle 25 Jan 2024
25, 2024 (GLOBE NEWSWIRE) -- Playing For Change Foundation (PFCF), renowned for its global outreach in music education and community support, is thrilled to announce a dynamic partnership with Seminole Hard Rock Hotel & Casino Hollywood.

Most Viewed

×