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

Podcasts:

  • The Best of Al Green - Greatest Hits (Full Album Stream) [30 Minutes]

    Official full stream of Al Green's Greatest Hits (1975) #AlGreen #GreatestHits #Music Download: http://flyt.it/GreatestHitsLP Spotify: http://flyt.it/GreatestHitsSpotify Apple Music: http://flyt.it/GreatestHitsApple iTunes: http://flyt.it/GreatestHitsiTunes Amazon: http://flyt.it/GreatestHitsAmazon Subscribe: http://bit.ly/2j8ulPs 1) Tired Of Being Alone 0:00:00 2) Call Me 0:02:43 3) I'm Still In Love With You 0:05:47 4) Here I Am 0:09:02 5) Love And Happiness 0:13:17 6) Let's Stay Together 0:18:21 7) I Can't Get Next To You 0:21:40 8) You Ought To Be With Me 0:25:34 9) Look What You Done For Me 0:28:54 10) Let's Get Married 0:32:00 Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.c...

    published: 03 Feb 2017
  • Al Green - Let's Stay Together (Official Audio)

    Official audio for "Let's Stay Together" by Al Green #AlGreen #Music #Soul Download: http://flyt.it/LetsStayTogetherLP Spotify: http://flyt.it/LetsStayTogetherSpotify Apple Music: http://flyt.it/LetsStayTogetherApple iTunes: http://flyt.it/LetsStayTogetheriTunes Amazon: http://flyt.it/LetsStayTogetherAmazon Subscribe: http://bit.ly/2j8ulPs Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com #AlGreen #LetsStayTogether #audiovideo #officialaudio

    published: 02 Feb 2017
  • Al Green - Love and Happiness

    Al Green - Love and Happiness Lyrics: Love and happiness, yeah Something that can make you do wrong, make you do right Love Love and happiness But wait a minute Something's going wrong Someone's on the phone Three o'clock in the morning Talkin' about how she can make it right, yeah Well, happiness is when, you really feel good with somebody But nothing wrong with being in love with someone, yeah Oh, baby, love and happiness Love and happiness Love and happiness (love and happiness) oh I have to say Love and happiness (love and happiness) Love and happiness (love and happiness) You be good to me I'll be good to you We'll be together, yeah We'll see each other Walk away with victory, yeah oh baby Love and happiness (love and happiness) Love and happiness (love and happiness) Hey, hey, hey,...

    published: 28 Jun 2009
  • Al Green - How Can You Mend A Broken Heart (Official Audio)

    Al Green's "How Can You Mend a Broken Heart" official audio from the album Let's Stay Together. https://algreen.ffm.to/letsstaytogether Al Green’s Greatest Hits available now: Fat Possum Store: http://smarturl.it/zh90b6 iTunes: http://smarturl.it/llnzhg Follow Al Green: http://www.facebook.com/algreen Follow Fat Possum: http://fatpossum.com http://facebook.com/fatpossumrecords http://twitter.com/fatpossum http://instagram.com/fatpossum http://www.youtube.com/elpossum Released by Hi Records / Fat Possum Produced by Willie Mitchell © Fat Possum Records _____ https://www.fatpossum.com/ Follow Fat Possum on... YouTube: https://www.youtube.com/channel/elpossum Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/F...

    published: 04 Dec 2014
  • Al Green - For the Good Times (Official Audio)

    Official audio for "For the Good Times" by Al Green, from the album I'm Still In Love With You (1972) Download: http://flyt.it/StillInLoveWithYouLP Stream on Spotify: http://flyt.it/StillInLoveWithYouSpotify Stream on Apple Music: http://flyt.it/StillInLoveWithYouApple Download on iTunes: http://flyt.it/StillInLoveWithYouiTunes Download on Amazon: http://flyt.it/StillInLoveWithYouAmazon Subscribe: http://bit.ly/2j8ulPs Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com #AlGreen #FortheGoodTimes #audiovideo #officialaudio

    published: 08 Feb 2017
  • Al Green - Let's Stay Together

    Al Green performs "Let's Stay Together" http://vevo.ly/1zfRQu

    published: 27 Apr 2018
  • Al Green - Tired of Being Alone

    Al Green - I'm So Tired of Being Alone Lyrics: I'm so tired of being alone, I'm so tired of on my own, Won't you help me, girl, Just as soon as you can. People say that I've found a way, To make you say, That you love me. But baby, You didn't go for that, Ha, it's a natural fact, That I want to come back, Show me where it's at, baby. I'm so tired of being alone, I'm so tired of on my own, Won't you help me, girl, Soon as you can. I guess you know that I, uh, I love you so, Even though, You don't want me no more, Hey, hey, hey, hey I'm cryin' tears, Through the years, I tell you like it is, Honey, love me if you can. Ya baby, Tired of being alone here by myself, now I tell ya, I'm tired baby, I'm tired of being all wrapped up late at night, In my dreams, nobody but you, baby. Sometimes I w...

    published: 28 Jun 2009
  • Here I Am (Come and Take Me)

    Provided to YouTube by The Orchard Enterprises Here I Am (Come and Take Me) · Al Green · Not Documented Greatest Hits ℗ 2009 Hi Records Under Exclusive License to Fat Possum Records Released on: 1975-05-29 Auto-generated by YouTube.

    published: 10 Feb 2017
  • Al Green - A Change Is Gonna Come

    published: 23 Jul 2011
  • Al Green - Everything's Gonna Be Alright

    Music video by Al Green performing Everything's Gonna Be Alright. (C) 1987 A&M Records

    published: 17 Jun 2009
The Best of Al Green - Greatest Hits (Full Album Stream) [30 Minutes]
35:26

The Best of Al Green - Greatest Hits (Full Album Stream) [30 Minutes]

  • Order:
  • Duration: 35:26
  • Uploaded Date: 03 Feb 2017
  • views: 20281385
Official full stream of Al Green's Greatest Hits (1975) #AlGreen #GreatestHits #Music Download: http://flyt.it/GreatestHitsLP Spotify: http://flyt.it/GreatestHitsSpotify Apple Music: http://flyt.it/GreatestHitsApple iTunes: http://flyt.it/GreatestHitsiTunes Amazon: http://flyt.it/GreatestHitsAmazon Subscribe: http://bit.ly/2j8ulPs 1) Tired Of Being Alone 0:00:00 2) Call Me 0:02:43 3) I'm Still In Love With You 0:05:47 4) Here I Am 0:09:02 5) Love And Happiness 0:13:17 6) Let's Stay Together 0:18:21 7) I Can't Get Next To You 0:21:40 8) You Ought To Be With Me 0:25:34 9) Look What You Done For Me 0:28:54 10) Let's Get Married 0:32:00 Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com #TheBestofAlGreen #bestofplaylist #playlistvideo
https://wn.com/The_Best_Of_Al_Green_Greatest_Hits_(Full_Album_Stream)_30_Minutes
Al Green - Let's Stay Together (Official Audio)
3:20

Al Green - Let's Stay Together (Official Audio)

  • Order:
  • Duration: 3:20
  • Uploaded Date: 02 Feb 2017
  • views: 26390848
Official audio for "Let's Stay Together" by Al Green #AlGreen #Music #Soul Download: http://flyt.it/LetsStayTogetherLP Spotify: http://flyt.it/LetsStayTogetherSpotify Apple Music: http://flyt.it/LetsStayTogetherApple iTunes: http://flyt.it/LetsStayTogetheriTunes Amazon: http://flyt.it/LetsStayTogetherAmazon Subscribe: http://bit.ly/2j8ulPs Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com #AlGreen #LetsStayTogether #audiovideo #officialaudio
https://wn.com/Al_Green_Let's_Stay_Together_(Official_Audio)
Al Green - Love and Happiness
5:04

Al Green - Love and Happiness

  • Order:
  • Duration: 5:04
  • Uploaded Date: 28 Jun 2009
  • views: 80551931
Al Green - Love and Happiness Lyrics: Love and happiness, yeah Something that can make you do wrong, make you do right Love Love and happiness But wait a minute Something's going wrong Someone's on the phone Three o'clock in the morning Talkin' about how she can make it right, yeah Well, happiness is when, you really feel good with somebody But nothing wrong with being in love with someone, yeah Oh, baby, love and happiness Love and happiness Love and happiness (love and happiness) oh I have to say Love and happiness (love and happiness) Love and happiness (love and happiness) You be good to me I'll be good to you We'll be together, yeah We'll see each other Walk away with victory, yeah oh baby Love and happiness (love and happiness) Love and happiness (love and happiness) Hey, hey, hey, hey Make you do right, love'll make you do wrong Make you come home early Make you stay out all night long The power of love Wait a minute Let me tell you Oh the power Power of love Power of love, power Make you do right, love'll make you do wrong Ha yeah (Love and happiness, love and happiness) Say love (Love and happiness, love and happiness) Make you want to dance Love and happiness Love is, wait a minute, love is Yeah, walkin' together, yeah, talkin' together Say it again, say it together, yeah Say wanna moans Moan for love, say, hmm Moan for love, hmm Moan for love Talkin' 'bout the power -- ▶️ Stream Al Green's greatest hits: https://www.youtube.com/playlist?list=PLpIsaqjrwxS08yBaoR8BvDMUnPSSIAcW3 © 1973 Hi Records #AlGreen #Soul
https://wn.com/Al_Green_Love_And_Happiness
Al Green - How Can You Mend A Broken Heart (Official Audio)
6:24

Al Green - How Can You Mend A Broken Heart (Official Audio)

  • Order:
  • Duration: 6:24
  • Uploaded Date: 04 Dec 2014
  • views: 11645170
Al Green's "How Can You Mend a Broken Heart" official audio from the album Let's Stay Together. https://algreen.ffm.to/letsstaytogether Al Green’s Greatest Hits available now: Fat Possum Store: http://smarturl.it/zh90b6 iTunes: http://smarturl.it/llnzhg Follow Al Green: http://www.facebook.com/algreen Follow Fat Possum: http://fatpossum.com http://facebook.com/fatpossumrecords http://twitter.com/fatpossum http://instagram.com/fatpossum http://www.youtube.com/elpossum Released by Hi Records / Fat Possum Produced by Willie Mitchell © Fat Possum Records _____ https://www.fatpossum.com/ Follow Fat Possum on... YouTube: https://www.youtube.com/channel/elpossum Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum Check out The Weather Station - Ignorance: https://www.youtube.com/watch?v=EKdwEARHHtg&t=100s Fat Possum is a Record Label based in Oxford, Mississippi, New York & London We're Trying Our Best... #FatPossumRecords #AlGreen #LetsStayTogether
https://wn.com/Al_Green_How_Can_You_Mend_A_Broken_Heart_(Official_Audio)
Al Green - For the Good Times (Official Audio)
6:27

Al Green - For the Good Times (Official Audio)

  • Order:
  • Duration: 6:27
  • Uploaded Date: 08 Feb 2017
  • views: 28875743
Official audio for "For the Good Times" by Al Green, from the album I'm Still In Love With You (1972) Download: http://flyt.it/StillInLoveWithYouLP Stream on Spotify: http://flyt.it/StillInLoveWithYouSpotify Stream on Apple Music: http://flyt.it/StillInLoveWithYouApple Download on iTunes: http://flyt.it/StillInLoveWithYouiTunes Download on Amazon: http://flyt.it/StillInLoveWithYouAmazon Subscribe: http://bit.ly/2j8ulPs Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com #AlGreen #FortheGoodTimes #audiovideo #officialaudio
https://wn.com/Al_Green_For_The_Good_Times_(Official_Audio)
Al Green - Let's Stay Together
4:07

Al Green - Let's Stay Together

  • Order:
  • Duration: 4:07
  • Uploaded Date: 27 Apr 2018
  • views: 10253276
Al Green performs "Let's Stay Together" http://vevo.ly/1zfRQu
https://wn.com/Al_Green_Let's_Stay_Together
Al Green - Tired of Being Alone
2:44

Al Green - Tired of Being Alone

  • Order:
  • Duration: 2:44
  • Uploaded Date: 28 Jun 2009
  • views: 35070943
Al Green - I'm So Tired of Being Alone Lyrics: I'm so tired of being alone, I'm so tired of on my own, Won't you help me, girl, Just as soon as you can. People say that I've found a way, To make you say, That you love me. But baby, You didn't go for that, Ha, it's a natural fact, That I want to come back, Show me where it's at, baby. I'm so tired of being alone, I'm so tired of on my own, Won't you help me, girl, Soon as you can. I guess you know that I, uh, I love you so, Even though, You don't want me no more, Hey, hey, hey, hey I'm cryin' tears, Through the years, I tell you like it is, Honey, love me if you can. Ya baby, Tired of being alone here by myself, now I tell ya, I'm tired baby, I'm tired of being all wrapped up late at night, In my dreams, nobody but you, baby. Sometimes I wonder, If you love me like you say you do, You see baby, I, I, I, I've been thinking about you, I've been wanting to get next to you, baby, Sometimes I hold my arms and I say, Oh baby, yeah, needing you has proven to me, To be my greatest dream, yeah Awh! I'm so tired of being alone, I'm so tired of on my own, Sometimes late at night I get to wonderin' about you baby, Baby, baby, ya ya, baby you're my heart's desire -- Stream Al Green's greatest hits: https://youtube.com/playlist?list=PLJHhuu0vGMO3SDnv0kuLRjRUjJNs_jE_4 © 1971 Hi Records #AlGreen #Soul #Classics #ClassicMusic
https://wn.com/Al_Green_Tired_Of_Being_Alone
Here I Am (Come and Take Me)
4:15

Here I Am (Come and Take Me)

  • Order:
  • Duration: 4:15
  • Uploaded Date: 10 Feb 2017
  • views: 2201589
Provided to YouTube by The Orchard Enterprises Here I Am (Come and Take Me) · Al Green · Not Documented Greatest Hits ℗ 2009 Hi Records Under Exclusive License to Fat Possum Records Released on: 1975-05-29 Auto-generated by YouTube.
https://wn.com/Here_I_Am_(Come_And_Take_Me)
Al Green - A Change Is Gonna Come
5:00

Al Green - A Change Is Gonna Come

  • Order:
  • Duration: 5:00
  • Uploaded Date: 23 Jul 2011
  • views: 13946043
https://wn.com/Al_Green_A_Change_Is_Gonna_Come
Al Green - Everything's Gonna Be Alright
4:03

Al Green - Everything's Gonna Be Alright

  • Order:
  • Duration: 4:03
  • Uploaded Date: 17 Jun 2009
  • views: 7814163
Music video by Al Green performing Everything's Gonna Be Alright. (C) 1987 A&M Records
https://wn.com/Al_Green_Everything's_Gonna_Be_Alright
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Best of Al Green - Greatest Hits (Full Album Stream) [30 Minutes]
    35:26
    The Best of Al Green - Greatest Hits (Full Album Stream) [30 Minutes]remove from playlist
  • Al Green - Let's Stay Together (Official Audio)
    3:20
    Al Green - Let's Stay Together (Official Audio)remove from playlist
  • Al Green - Love and Happiness
    5:04
    Al Green - Love and Happinessremove from playlist
  • Al Green - How Can You Mend A Broken Heart (Official Audio)
    6:24
    Al Green - How Can You Mend A Broken Heart (Official Audio)remove from playlist
  • Al Green - For the Good Times (Official Audio)
    6:27
    Al Green - For the Good Times (Official Audio)remove from playlist
  • Al Green - Let's Stay Together
    4:07
    Al Green - Let's Stay Togetherremove from playlist
  • Al Green - Tired of Being Alone
    2:44
    Al Green - Tired of Being Aloneremove from playlist
  • Here I Am (Come and Take Me)
    4:15
    Here I Am (Come and Take Me)remove from playlist
  • Al Green - Everything's Gonna Be Alright
    4:03
    Al Green - Everything's Gonna Be Alrightremove from playlist
PLAYLIST TIME:

The Best of Al Green - Greatest Hits (Full Album Stream) [30 Minutes]

Official full stream of Al Green's Greatest Hits (1975) #AlGreen #GreatestHits #Music Download: http://flyt.it/GreatestHitsLP Spotify: http://flyt.it/GreatestHitsSpotify Apple Music: http://flyt.it/GreatestHitsApple iTunes: http://flyt.it/GreatestHitsiTunes Amazon: http://flyt.it/GreatestHitsAmazon Subscribe: http://bit.ly/2j8ulPs 1) Tired Of Being Alone 0:00:00 2) Call Me 0:02:43 3) I'm Still In Love With You 0:05:47 4) Here I Am 0:09:02 5) Love And Happiness 0:13:17 6) Let's Stay Together 0:18:21 7) I Can't Get Next To You 0:21:40 8) You Ought To Be With Me 0:25:34 9) Look What You Done For Me 0:28:54 10) Let's Get Married 0:32:00 Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com #TheBestofAlGreen #bestofplaylist #playlistvideo
35:26
The Best of Al Green - Greatest Hits (Full Album Stream) [30 Minutes]
Official full stream of Al Green's Greatest Hits (1975) #AlGreen #GreatestHits #Music Do...
published: 03 Feb 2017
Play in Full Screen
3:20
Al Green - Let's Stay Together (Official Audio)
Official audio for "Let's Stay Together" by Al Green #AlGreen #Music #Soul Download: htt...
published: 02 Feb 2017
Play in Full Screen
5:04
Al Green - Love and Happiness
Al Green - Love and Happiness Lyrics: Love and happiness, yeah Something that can make yo...
published: 28 Jun 2009
Play in Full Screen
6:24
Al Green - How Can You Mend A Broken Heart (Official Audio)
Al Green's "How Can You Mend a Broken Heart" official audio from the album Let's Stay Toge...
published: 04 Dec 2014
Play in Full Screen
6:27
Al Green - For the Good Times (Official Audio)
Official audio for "For the Good Times" by Al Green, from the album I'm Still In Love With...
published: 08 Feb 2017
Play in Full Screen
4:07
Al Green - Let's Stay Together
Al Green performs "Let's Stay Together" http://vevo.ly/1zfRQu
published: 27 Apr 2018
Play in Full Screen
2:44
Al Green - Tired of Being Alone
Al Green - I'm So Tired of Being Alone Lyrics: I'm so tired of being alone, I'm so tired ...
published: 28 Jun 2009
Play in Full Screen
4:15
Here I Am (Come and Take Me)
Provided to YouTube by The Orchard Enterprises Here I Am (Come and Take Me) · Al Green · ...
published: 10 Feb 2017
Play in Full Screen
5:00
Al Green - A Change Is Gonna Come
published: 23 Jul 2011
Play in Full Screen
4:03
Al Green - Everything's Gonna Be Alright
Music video by Al Green performing Everything's Gonna Be Alright. (C) 1987 A&M Records
published: 17 Jun 2009
Play in Full Screen
'); } 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: Al Green

Edit

SQU awards Royal Grant to 10 strategic research projects

Muskat Daily 06 May 2025
Other researchers awarded include Dr Malik bin Mohammed al Wardi for an AI-driven drought prediction model, Dr Rashid bin Salem al Hajri for green hydrogen production and Dr Amira bint Khamis al Amri ...
Edit

Inside the Met Gala: Under a petal-filled sky, guests honor Black style, hail a 'monumental night'

Newsday 06 May 2025
Al Sharpton was describing dandyism as a form of activism ... An orchestra, accompanied by swaying singers, played favorites like Al Green’s “Let’s Stay Together” and Stevie Wonder’s “Don't You Worry ’Bout a Thing,”.
Edit

Inside the Met Gala: Under a petal-filled sky, guests honour Black style, hail a ‘monumental night’

Toronto Sun 06 May 2025
Al Sharpton was describing dandyism as a form of activism ... An orchestra, accompanied by swaying singers, played favourites like Al Green’s “Let’s Stay Together” and Stevie Wonder’s “Don’t You Worry ‘Bout a Thing,”.
Edit

EBRD Investment in Egypt tops €13.8B, supporting structural reforms and renewables

Egypt Today 05 May 2025
Al-Mashat received Ms ... Al-Mashat noted that the EBRD’s continued investment in Egypt reflects deep confidence in the country’s economic trajectory and the resilience of its private sector.
Edit

Inside the latest effort to impeach the president as Donald Trump plans major retaliation against ...

The Daily Mail 05 May 2025
Al Green, D-Texas, who famously waved his cane and disrupted Trump's joint address to Congress earlier this year, said Thursday he would bring additional articles of impeachment against Trump in coming days.
Edit

Gainesville church part of lawsuit aimed at keeping ICE agents out of 'sacred spaces'

The Gainesville Sun 05 May 2025
When Santa Fe College student Saoud Al-Ammari, a Qatar native and gay man, lost his visa, he feared deportation back to his repressive native county ... To help Al-Amari, the Rev. Larry Green, then church ...
Edit

Famed documentarian Robert Mugge chronicles Mississippi blues photographer in 'Deep Roots'

Hattiesburg American 05 May 2025
"Gospel According to Al Green" (1984) offered an intimate portrait of the nonpareil soul singer turned Pentecostal pastor ... director whose previous films spotlighted such legends as Al Green and Sun Ra.
Edit

The sinister reach of Iran's Islamic Revolutionary Guard: Calls for UK to ban Iranian military ...

The Daily Mail 05 May 2025
Last year, it was reported that the Islamic College, a Shia educational institution based in Willesden Green, north-west London, had strong links to the Al-Mustafa University in Iran and sent students to its campus in the country.
Edit

Legal and public notices for the week of May 5, 2025

The Knoxville Focus 05 May 2025
NOTICE OF TRUSTEE’S SALE ... .200507140003929, in Office of the Register of Deeds for Knox County, Tennessee, executed by William M. Hale and Patricia P ... SITUATED IN DISTRICT NO ... E. ALEXANDER ADDITION AS SHOWN BY MAP OF RECORD IN ... P.O ... CATHERINE GREENE, et al.
Edit

Doha Metro's B14 receives GSAS Platinum Certificate

Gulf-Times 04 May 2025
The project has incorporated a solar hot water system too.The latest GSAS Operations certification of the Administration and ICC Building complements the building’s existing green building ...
Edit

Al-Ahli Crowned Champions of Asia for the First Time

The Daily Tribune - Bahrain 04 May 2025
Saudi Arabia's Al-Ahli wrote a golden ... The architect of Al-Ahli’s success was none other than Roberto Firmino, who not only assisted both goals but also earned the MVP award of the tournament.
Edit

Hamdan bin Mohammed reviews progress of key strategic road corridors, projects timeline through 2027

The Gulf Time 04 May 2025
Sheikh Hamdan was also briefed on the Model District Project in Al Barsha 2, which is designed to enhance liveability, expand green and open spaces, improve pedestrian infrastructure, and promote ...
Edit

Sheikh Hamdan reviews road infrastructure projects scheduled for completion by 2027

Gulf News 04 May 2025
Sheikh Hamdan was also briefed on the Model District Project in Al Barsha 2, which is designed to enhance liveability, expand green and open spaces, improve pedestrian infrastructure, and promote ...
×