- published: 04 Dec 2014
- views: 9102455
'+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; })); }); -->
HIDDEN ERROR: Usage of "residence" is not recognized
Albert "Al" Greene (born April 13, 1946), often known as The Reverend Al Green, is an American singer best known for recording a series of soul hit singles in the early 1970s, including "Take Me to the River", "Tired of Being Alone", "I'm Still in Love with You", "Love and Happiness" and his signature song, "Let's Stay Together".Inducted to the Rock and Roll Hall of Fame in 1995, Green was referred to on the museum's site as being "one of the most gifted purveyors of soul music". He has also been referred to as "The Last of the Great Soul Singers". Green was included in the Rolling Stone list of the 100 Greatest Artists of All Time, ranking at No. 66.
Al Green was born Albert Greene on April 13, 1946 in Forrest City, Arkansas. The sixth of ten children born to Cora Lee and Robert G. Greene, Jr., a sharecropper, Al began performing with his brothers in a group called the Greene Brothers around the age of ten. The Greene family relocated to Grand Rapids, Michigan, in the late 1950s. Al was kicked out of the family home in his teens after his religiously devout father caught him listening to Jackie Wilson.
Alfred Dobalo (October 15, 1955 – June 14, 2013), best known by his ring name Al Green, was an American professional wrestler who performed in North America, Europe, and Japan under a variety of gimmicks, including Rage one half of the team The Wrecking Crew with Fury (Marc Laurinaitis), Blade one half of the Master Blasters with Steel (Kevin Nash) and the Dog in World Championship Wrestling at the turn of the millennium.
Green was trained for a professional wrestling career by Steve Keirn, making his debut in 1990 as "Blade", one half of "The Master Blasters" tag team alongside Kevin Nash.
On September 22nd, 1991 Blade was a replacement for "Iron", who left World Championship Wrestling after only one match. The reconstituted Master Blasters continued their undefeated streak in October. Meanwhile Kevin Nash would have his first singles match on September 28, defeating Tom Zenk in Baltimore, MD. At Halloween Havoc on October 27, 1990 in Chicago, IL the Blasters upended The Southern Boys and began to move up the WCW tag-team ratings. However their winning streak would finally come to an end on November 22 at the Omni in Atlanta, GA when Tom Zenk & Brian Pillman handed them their first defeat (Pillman pinning Blade). They rebounded to go on another undefeated streak, defeating The Southern Boys as well as Alan Iron Eagle & Tim Horner and earning a US Tag-Team title shot against the champions The Steiner Brothers. The Steiners however were victorious in matches on December 25 (Atlanta, GA and December 26th (Nashville, TN).
Al Green (born 1955-1956) is a retired American-Australian professional basketball player who played his career in the Australian National Basketball League from 1981 until his retirement in at the end of 1993. Green obtained Australian citizenship in 1984.
Born and bred in the South Bronx in what he calls "the real ghetto", Al Green and grew up playing basketball with future NBA All-Star player Bernard King. He attended Maine Central HS following which he attended Arizona Western Junior College. He then switched schools and went to North Carolina State University where he was a member of the NC State Wolfpack before again moving one last time to Louisiana State University to play for the LSU Tigers. During his college career for NC State and LSU Green would come up against the likes of future NBA Hall of Fame player Magic Johnson.
Green entered into the 1979 NBA Draft where he was a third round selection (64th overall) by the Phoenix Suns, though he would never play in the NBA. In the draft, Green was selected before future NBA All Star center's - 6'11" (211 cm) Bill Laimbeer (65th - Cleveland Cavaliers), 7'2" (218 cm) James Donaldson (73rd - Seattle SuperSonics), and 7'4" (224 cm) Mark Eaton (107th - Phoenix).
Call Me is the sixth album by soul singer Al Green. It is widely regarded as Green's masterpiece, and has been called one of the best soul albums ever made. In 2003 the TV network VH1 named it the 70th greatest album in any genre. Call Me was a Top 10 Billboard Pop Album, and the third #1 Soul Album. In 2003, the album was ranked number 289 on Rolling Stone magazine's list of the 500 greatest albums of all time. Praised for his emotive singing style, Green here incorporates country influences, covering both Willie Nelson and Hank Williams. This album contained three top 10 singles on the Billboard Hot 100: "You Ought to Be with Me," "Here I Am (Come and Take Me)" and "Call Me (Come Back Home)."
All songs by Al Green, except where noted.
"You Can Call Me Al" is a song by the American singer-songwriter Paul Simon. It was the lead single from his seventh studio album, Graceland (1986), released on Warner Bros. Records. Written by Simon, its lyrics follow an individual seemingly experiencing a midlife crisis. Its lyrics were partially inspired by Simon's trip to South Africa and inexperience with its culture.
Released in September 1986, "You Can Call Me Al" became Simon's biggest solo hit, reaching the top five in seven countries.
The names in the song came from an incident at a party that Simon went to with his then-wife Peggy Harper. French composer and conductor Pierre Boulez, who was attending the same party, mistakenly referred to Paul as "Al" and to Peggy as "Betty", inspiring Simon to write a song.
"You Can Call Me Al" was recorded entirely at the Hit Factory in New York City in April 1986; it differs from much of Graceland in this regard, as most songs on the record were recorded in numerous locales worldwide.
Al Green (born September 1, 1947) is the U.S. Representative from Texas' 9th congressional district, serving since 2005. The district includes most of southwestern Houston, including most of that city's share of Fort Bend County. It also includes most of Missouri City.
Green was born in New Orleans, Louisiana. He attended Florida A&M University and transferred to Tuskegee University. He later went on to receive his Juris Doctor in 1974 from the Thurgood Marshall School of Law at Texas Southern University. After receiving his law degree and being admitted to the Texas Bar, he remained in Houston and currently lives in the Alief community.
In 1978, Green was elected Justice of the Peace in Harris County, Texas, in the Precinct 7, Place Two position. He held this position for 26 years.
A former trial lawyer, Green co-founded the firm of Green, Wilson, Dewberry, and Fitch. He also served as president of the Houston NAACP and, during his term as the organization's leader, membership increased sevenfold. While serving as NAACP leader, he focused on increasing minority hiring in Texas and forming alliances with Hispanic groups.
Al Green (Albert Greene, born 1946) is an American musician.
Al Green or Greene may also refer to:
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...
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...
Official audio for "Call Me (Come Back Home)" by Al Green, from the album Call Me (1973) Subscribe: http://bit.ly/2j8ulPs http://www.hirecords.com/ http://www.fatpossum.com/ #AlGreen #CallMe #audiovideo #officialaudio
Al Green - call me
Al Green performed on The Midnight Special August 3, 1973 Instagram: @TheMidnightSpecialTVshow Facebook: @TheMidnightSpecialTVshow TikTok: @TheMidnightSpecialTVshow Twitter: @TMStvshow
Provided to YouTube by The Orchard Enterprises Call Me (Come Back Home) · 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.
Official video for "You Can Call Me Al" by Paul Simon Listen to Paul Simon: https://paulsimon.lnk.to/listenYD Subscribe to the official Paul Simon YouTube channel: https://paulsimon.lnk.to/subscribeYD Watch more Paul Simon videos: https://paulsimon.lnk.to/listenYD/youtube Follow Paul Simon: Facebook: https://paulsimon.lnk.to/_followFI Instagram: https://paulsimon.lnk.to/_followII Twitter: https://paulsimon.lnk.to/_followTI Website: https://paulsimon.lnk.to/_followWI Spotify: https://paulsimon.lnk.to/_followSI YouTube: https://paulsimon.lnk.to/subscribeYD #PaulSimon #YouCanCallMeAl #OfficialVideo Chorus: If you'll be my bodyguard I can be your long lost pal I can call you Betty And Betty, when you call me, you can call me Al
Official audio for "Have You Been Making Out Okay" by Al Green, from the album Call Me (1973) 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 #HaveYouBeenMakingOutOkay #audiovideo #officialaudio
60s 70s 80s R&B Soul Groove▶️Classic Soul Groove 60s 70s 80s▶️Aretha Franklin, Al Green, Marvin Gaye Get ready to groove to the soulful sounds of the 60s, 70s, and 80s! This epic playlist is dedicated to the legends of classic soul and R&B, featuring the iconic voices of Aretha Franklin, Al Green, Marvin Gaye, and many more. Let the smooth harmonies and funky beats take you on a nostalgic journey through the decades. From Motown to Stax, we've got you covered with the best of soul and R&B from the 60s, 70s, and 80s. So sit back, relax, and let the soulful grooves take over! ------------★★ ★★------------- ● Thank you for watching my video ● Share this song with your friends: ● Subscribe to the channel here: If there is any problem related to ownership, please contact me at the email below...
Official audio for "Here I Am (Come and Take Me)" by Al Green, from the album Call Me (1973) 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 #HereIAm #audiovideo #officialaudio
HIDDEN ERROR: Usage of "residence" is not recognized
Albert "Al" Greene (born April 13, 1946), often known as The Reverend Al Green, is an American singer best known for recording a series of soul hit singles in the early 1970s, including "Take Me to the River", "Tired of Being Alone", "I'm Still in Love with You", "Love and Happiness" and his signature song, "Let's Stay Together".Inducted to the Rock and Roll Hall of Fame in 1995, Green was referred to on the museum's site as being "one of the most gifted purveyors of soul music". He has also been referred to as "The Last of the Great Soul Singers". Green was included in the Rolling Stone list of the 100 Greatest Artists of All Time, ranking at No. 66.
Al Green was born Albert Greene on April 13, 1946 in Forrest City, Arkansas. The sixth of ten children born to Cora Lee and Robert G. Greene, Jr., a sharecropper, Al began performing with his brothers in a group called the Greene Brothers around the age of ten. The Greene family relocated to Grand Rapids, Michigan, in the late 1950s. Al was kicked out of the family home in his teens after his religiously devout father caught him listening to Jackie Wilson.