- published: 10 Aug 2024
- views: 211644
'+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; })); }); -->
William "Sonny" Criss (23 October 1927 – 19 November 1977) was an American jazz musician.
An alto saxophonist of prominence during the bebop era of jazz, he was one of many players influenced by Charlie Parker.
William Criss was born in Memphis, Tennessee and moved to Los Angeles at the age of 15. He then went on to play in various bands including Howard McGhee's, which also featured Charlie Parker.
Criss had developed his own, concise, bluesy tone by this point, and though his basic style did not vary much, his ability on the instrument continued to develop. Nevertheless, he continued to drift from band to band, and played on some records with Johnny Otis and Billy Eckstine.
His first major break came in 1947, on a number of jam sessions arranged by jazz impresario Norman Granz. In 1956 he signed to Imperial Records, based in New York, and recorded a series albums including Jazz U.S.A , Go Man! and Sonny Criss Plays Cole Porter featuring pianist Sonny Clark. Capitol, which owned the master recordings, reissued them as a 2-CD set on their Blue Note imprint in 2000. Criss also recorded At the Crossroads with pianist Wynton Kelly.
Eleanor Rigby is a song by the Beatles, released on the 1966 album Revolver and as a 45 rpm single. It was written by Paul McCartney, and credited to Lennon–McCartney.
The song continued the transformation of the Beatles from a mainly rock and roll / pop-oriented act to a more experimental, studio-based band. With a double string quartet arrangement by George Martin and striking lyrics about loneliness, "Eleanor Rigby" broke sharply with popular music conventions, both musically and lyrically.Richie Unterberger of Allmusic cites the band's "singing about the neglected concerns and fates of the elderly" on the song as "just one example of why the Beatles' appeal reached so far beyond the traditional rock audience".
Paul McCartney came up with the melody of "Eleanor Rigby" as he experimented with his piano. However, the original name of the protagonist that he chose was not Eleanor Rigby but Miss Daisy Hawkins. The singer-composer Donovan reported that he heard McCartney play it to him before it was finished, with completely different lyrics. In 1966, McCartney recalled how he got the idea for his song:
Eleanor Rigby is a 2004 novel by Douglas Coupland, about a lonely woman at ages 36 and 42. The novel is written as a first-person narrative by the main character, Liz Dunn.
The novel centres on changes to Liz's life when someone from her past unexpectedly re-enters her life. It is written in a light, often comic, tone, but resonates on many deeper issues, including loneliness, family, religious visions and multiple sclerosis.
Two distinct plot movements are separated by a break in the narrative flow. The first part of the novel involves two retellings: the story of Liz Dunn’s trip to Europe and her pregnancy, and the story of the re-emergence into her life of her child, Jeremy, who is dying of multiple sclerosis.
As a teenager, Liz goes on a trip to Europe, her one big expressive moment. On this trip, while drunk, she loses her virginity in Italy to a man she cannot remember. From this experience, she becomes pregnant with Jeremy, who is put up for adoption, and goes in and out of foster families for much of his young life.
Eleanor Rigby is a statue in Stanley Street, Liverpool, England, designed and made by the entertainer Tommy Steele. It is based on the subject of The Beatles' song Eleanor Rigby, which is credited to the Lennon–McCartney partnership.
When Tommy Steele was performing in a show in Liverpool in 1981, he made an offer to Liverpool City Council to create a sculpture as a tribute to the Beatles. His fee for the commission would be three pence. The offer was accepted by the Council, as it would be expected to increase the tourist trade of the city, and they made a donation of £4,000 towards its cost. The statue took nine months to make, and it was unveiled by Tommy Steele on 3 December 1982.
The statue consists of a bronze figure on a stone bench. The bronze figure is 128 cm high, 120 cm wide, and 96 cm deep. It depicts a seated woman with a handbag on her lap, a shopping bag on her right, and a copy of the newspaper the Liverpool Echo on her left. Poking from the shopping bag is a milk bottle, and on the newspaper is a sparrow and a piece of bread. The woman is looking down at the sparrow.
Once In A While 0:00 Day Dream 3:43 Blues Pour Flirter N°2* 8:26 This Can't Be Love† 13:37 On A Green Dolphin Street† 17:07 God Bless The Child† 20:38 Don't Blame Me*‡ 26:47 Mighty Lou (Mighty Low)*‡ 30:40 We'll Be Together Again*‡ 33:31 Black Coffee*‡ 36:31 Sonny Criss - Mr Blues Pour Flirter (Brunswick 87 519) (1963) Sonny Criss - Blues Pour Flirter Volume 2 (Polydor 2445 034) (1980)* Sonny Criss (as), Georges Arvanitas (p), René Thomas (g), Pierre Michelot (b), Philippe Combelle (d) Paris, April 22, April 25†, 1963, ‡Sonny Criss (as), Henri Renaud (p), Michel Gaudry (b), Philippe Combelle (d) Paris, October 10, 1962
Sonny Criss Quartet - Angel Eyes (1975) Personnel: Sonny Criss (alto sax), Barry Harris (piano), Leroy Vinnegar (bass), Lenny McBrowne (drums) from the album 'SATURDAY MORNING' (Xanadu Records)
Sweet Lorraine 0:00 You Don't Know What Love Is* 3:47 I Got It Bad 7:54 Sylvia* 11:53 Softly As In The Morning Sunrise* 19:44 Butts Delight* 25:30 Indiana (Back Home Again In Indiana)* 29:42 Sonny Criss - At The Crossroads (Peacock PLP-91) (1959) Ole Hansen* (tb), Sonny Criss (as), Wynton Kelly (p), Bob Cranshaw (b), Walter Perkins (d) Chicago, March 1959
Provided to YouTube by Universal Music Group Blue Sunset · Sonny Criss I'll Catch The Sun! ℗ 1969 Prestige Records, Distributed by Concord. Released on: 1969-01-01 Associated Performer, Alto Saxophone: Sonny Criss Associated Performer, Piano: Hampton Hawes Associated Performer, Upright Bass: Monty Budwig Associated Performer, Drums: Shelly Manne Studio Personnel, Recording Engineer: Peter Abbott Producer, Recording Producer: Don Schlitten Studio Personnel, Mastering Engineer: Phil De Lancie Composer Lyricist: Sonny Criss Auto-generated by YouTube.
Portrait Of Sonny Criss/ Sonny Criss (1967)
Imperial 9006. Sonny Criss, Jazz USA. Sonny Criss - Alto Sax. Kenny Drew - Piano Barney Kessel - Guitar Chuck Thomson - Drums Bill Woodson - Bass
LP " Rockin' In Rhythm " Prestige records 1969 www.bluesandsoul.info credits: written by Lennon , mac Cartney Alto Saxophone – Sonny Criss Bass – Bob Cranshaw Drums – Alan Dawson Piano – Eddie Green Recorded By – Richard Alderson NYC, July 2, 1968
Album: Sonny's Dream (Birth of the New Cool) Year: 1968 Label: Prestige
Provided to YouTube by Universal Music Group Black Coffee · Sonny Criss Mr Blues Pour Flirter ℗ 1963 Decca Records France Released on: 2010-01-01 Associated Performer, Interprète Instrumental: Michel Gaudry Associated Performer, Interprète Instrumental: Philippe Combelle Associated Performer, Interprète Instrumental: Henri Renaud Associated Performer, Interprète Instrumental: Sonny Criss Composer Lyricist: Paul Francis Webster Composer Lyricist: Sonny Burke Auto-generated by YouTube.
The Beatles performing “Eleanor Rigby (From "Yellow Submarine").” Released as a double A-side with the song "Yellow Submarine in August 1966, Eleanor Rigby marked a giant leap forward in the way that The Beatles thought about their art, following their exploration of new and more complex musical ideas such as “Day Tripper” and “Paperback Writer”. Written and performed by Paul McCartney as part of the Revolver sessions, this features a string composition from George Martin that helped to change the way that people considered “pop music”. The film is a sequence originally used in the movie “Yellow Submarine", released in July 1968. With it’s surreal, ground-breaking visuals it both brought a new concept of creating a visual video to accompany a song and also ushered in a new style of an...
Provided to YouTube by Universal Music Group Eleanor Rigby (Remastered 2015) · The Beatles 1 ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group) Released on: 2000-11-13 Producer, Studio Personnel, Mixer: Giles Martin Studio Personnel, Mixer: Sam Okell Studio Personnel, Mastering Engineer: Miles Showell Associated Performer, Sound Design: Al Sirkett Studio Personnel, Assistant Mixer: Matt Mysko Studio Personnel, Recording Engineer: Simon Gibson Studio Personnel, Recording Engineer: James Clarke Studio Personnel, Recording Engineer: Andrew Walter Producer: George Martin Composer Lyricist: John Lennon Composer Lyricist: Paul McCartney Auto-generated by YouTube.
The Beatles - Eleanor Rigby with lyrics
GRAMMY-NOMINATED FOR BEST ARRANGEMENT!! Listen to "Eleanor Rigby" everywhere music is consumed. PURCHASE THE OFFICIAL SHEET MUSIC: Piano/Vocal: https://www.sheetmusicdirect.com/en-US/se/ID_No/522328/Product.aspx?affiliate=65225 Full Orchestral Scores and All Parts: https://www.sheetmusicdirect.com/en-US/se/ID_No/522330/Product.aspx?affiliate=65225 Choir Music: https://www.sheetmusicdirect.com/en-US/se/ID_No/522329/Product.aspx?affiliate=65225 Reduced Arrangement: https://www.sheetmusicdirect.com/en-US/se/ID_No/522330/Product.aspx?affiliate=65225 Score Only (for study): https://www.sheetmusicdirect.com/en-US/se/ID_No/523836/Product.aspx?affiliate=65225 More sheet music available at codyfry.com/store Arranged, orchestrated, performed, and produced by Cody Fry Song written by John Len...
The Beatles performing “Eleanor Rigby.” Watch more videos from The Beatles: https://thebeatles.lnk.to/YTPlaylists Subscribe to The Beatles’ YouTube channel & ring the bell to never miss a new video: https://thebeatles.lnk.to/YTSignup Sign up for The Beatles’ Official Email List: https://www.thebeatles.com/newsletter Stream The Beatles: 🎙️ Apple Music: https://thebeatles.lnk.to/stream/AppleMusic 🎙️ Spotify: https://thebeatles.lnk.to/stream/Spotify 🎙️ Amazon Music: https://thebeatles.lnk.to/stream/AmazonMusic 🎙️ Pandora: https://thebeatles.lnk.to/stream/Pandora 🎙️ Tidal: https://thebeatles.lnk.to/stream/Tidal 🎙️ Deezer: https://thebeatles.lnk.to/stream/Deezer 🎙️ YouTube Music: https://thebeatles.lnk.to/stream/YouTubeMusic Follow The Beatles: ⭐ https://www.thebeatles.com ⭐ https://www.i...
Give my regards to BROAD STREET 1984
Cody Fry- Eleanor Rigby Lyrics Ah, look at all the lonely people Ah, look at all the lonely people Eleanor Rigby Picks up the rice in the church where the wedding has been Lives in a dream Waits at the window Wearing the face that she keeps in a jar by the door Who is it for? All the lonely people Where do they all come from? All the lonely people Where do they all belong? Father Mackenzie Writing the words of a sermon that no one will hear No one comes near Look at him working Darning his socks in the night when there's nobody there What does he care? All the lonely people Where do they all come from? All the lonely people Where do they all belong? All the lonely people (all the lonely people) All the lonely people (all the lonely people) All the lonely people (all the lonely people) Ele...
!! ALL RIGHTS BELONG TO CODY FRY&CO./THE BEATLES !! ah look at all the lonely people tiktok remix, cody fry eleanor rigby tiktok version, ah look at all the lonely people edit audio, ah look at all the lonely people slowed reverb, and lyrics, i look at all the lonely people slowed reverb lyrics, tiktok remix, tiktok version, slowed reverb lyrics
GRAMMY-NOMINATED FOR BEST ARRANGEMENT!! Listen to "Eleanor Rigby" everywhere music is consumed: https://codyfry.lnk.to/EleanorRigbySlowed Arranged, orchestrated, performed, and produced by Cody Fry Song written by John Lennon & Paul McCartney Originally performed by an obscure band called The Beatles Animation by IV Studio Music video by Cody Fry performing Eleanor Rigby (Slowed + Reverb). A Decca Records US release.; © 2022 Cody Fry Music, LLC, under exclusive license to UMG Recordings, Inc. http://vevo.ly/a9chrK
William "Sonny" Criss (23 October 1927 – 19 November 1977) was an American jazz musician.
An alto saxophonist of prominence during the bebop era of jazz, he was one of many players influenced by Charlie Parker.
William Criss was born in Memphis, Tennessee and moved to Los Angeles at the age of 15. He then went on to play in various bands including Howard McGhee's, which also featured Charlie Parker.
Criss had developed his own, concise, bluesy tone by this point, and though his basic style did not vary much, his ability on the instrument continued to develop. Nevertheless, he continued to drift from band to band, and played on some records with Johnny Otis and Billy Eckstine.
His first major break came in 1947, on a number of jam sessions arranged by jazz impresario Norman Granz. In 1956 he signed to Imperial Records, based in New York, and recorded a series albums including Jazz U.S.A , Go Man! and Sonny Criss Plays Cole Porter featuring pianist Sonny Clark. Capitol, which owned the master recordings, reissued them as a 2-CD set on their Blue Note imprint in 2000. Criss also recorded At the Crossroads with pianist Wynton Kelly.
Eleanor rigby picks up the rice in the church
Where a wedding has been, lives in a dream
Waits at the window wearing the face that she
Keeps in the jar by the door, who is it for?
All the lonely people
Where do they all come from?
All the lonely people
Where do they all belong?
Father mc kenzie writing the words
Of a sermon that no one will hear
No one comes near
Look at him working
Darning his socks in the night when there's
Nobody there, what does he care?
All the lonely people
Where do they all come from?
All the lonely people
Where do they all belong?
Ah, look at all the lonely people
Ah, look at all the lonely people
Eleanor rigby died in the church and was buried
Along with her name, nobody came
Father mc kenzie wiping the dirt from his hands
As he walks from the grave