- published: 30 May 2017
- views: 7221762
'+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 "death_cause" is not recognized
John Robert "Joe" Cocker, OBE (20 May 1944 – 22 December 2014) was an English singer and musician. He was known for his gritty voice, spasmodic body movement in performance, and definitive versions of popular songs.
Cocker's cover of the Beatles' "With a Little Help from My Friends" reached number one in the UK in 1968. He performed the song live at Woodstock in 1969, and at the Party at the Palace concert for the Golden Jubilee of Elizabeth II in 2002. His version also became the theme song for the TV series The Wonder Years. His 1974 cover of "You Are So Beautiful", reached number five in the US. Cocker was the recipient of several awards, including a 1983 Grammy Award for his US number one "Up Where We Belong", a duet with Jennifer Warnes.
In 1993 Cocker was nominated for the Brit Award for Best British Male, in 2007 was awarded a bronze Sheffield Legends plaque in his hometown, and in 2008 he received an OBE at Buckingham Palace for services to music. Cocker was ranked number 97 on Rolling Stone's 100 greatest singers list.
Joe Cocker! is Joe Cocker's second studio album, released in November 1969. Following the template of his first LP, this album features numerous covers of songs originally performed by Bob Dylan ("Dear Landlord"), The Beatles ("She Came in Through the Bathroom Window" and "Something" - both released almost simultaneously with original versions; "Let It Be" was also recorded and released as a B-side), Leonard Cohen ("Bird on the Wire"), and future touring partner Leon Russell ("Delta Lady"). Cocker also co-wrote one song, "That's Your Business Now", Chris Stainton, who was also his writing partner in later years.
Cocker is backed by the Grease Band, who appeared on his first album and backed the singer at the Woodstock Festival in August of 1969. However, Cocker would part ways with the group following the release of this record, citing a reluctance to tour. However, the need to meet live commitments in America prompted Cocker to organise a new band (the Mad Dogs and Englishmen) with the help of keyboardist Leon Russell, heralding a new musical direction for the singer on his subsequent studio releases.
Joe Cocker is the third studio album by Joe Cocker, released in 1972 in Europe as Something to Say on Cube Records, and in the USA as Joe Cocker on A&M Records. It contains the hit single "High Time We Went", that was released in the summer of 1971. Joe Cocker signalled Cocker's change of direction into a more jazzy, blues style. The album reached no. 30 in the US album charts. However, although it received a positive response from the press, it made no impression on the British and European charts.
It's an unusual LP among Joe Cocker albums, in that he wrote the lyrics to six songs. All of them were co-written with Chris Stainton between 1969 and 1972. Only five were written with Stainton, as "Something To Say" was written with Nichols. However, the album's main claim to fame might be that one of its tracks, "Woman to Woman", was the basis for Tupac Shakur's successful hit single "California Love".
The album, re-titled as Something to Say, was originally released on CD in 1990 by Castle Communications and in 1998 a remastered edition of the album was released worldwide on A&M Records. Alan White, soon to be Yes' drummer, played on this album alongside Jim Keltner, after he was featured on George Harrison's "All Things Must Pass" and John Lennon's "Live Peace in Toronto", "Imagine" and "Sometime in New-York City" albums. Conrad Isidore played with Steve Stills and Hummingbird, among others. Percussionist Rebop Kwaku Baah was known for his work with Traffic and the German band Can.
105.7 The River (ACMA callsign: 2BDR) is an Australian Adult contemporary-formatted FM radio station, broadcasting to Albury, New South Wales and the surrounding areas of Southwest New South Wales and North East Victoria. Owned and operated by Southern Cross Austereo, The River also has translators in Falls Creek, Corryong and Omeo.
WHCN ("The River 105.9") is an adult hits music formatted radio station based in Hartford, Connecticut. The city of license is Hartford. The iHeartMedia, Inc. outlet broadcasts at 105.9 MHz with an effective radiated power of 16,000 watts from West Peak State Park in Meriden, CT. Its format blends classic rock and new wave, with current and recurrent hit songs of today. It is similar to the "JACK-FM" formats that have been heard across the U.S. Studios are at 10 Columbus Boulevard, in Hartford, Connecticut. "The River" brand, shared with many adult contemporary stations nationwide, is a local reference to the Connecticut River.
WHCN has a long history, going back to when it was licensed as W1XSL in 1936. It subsequently became W1XPW, W65H, WDRC-FM and WFMQ before arriving at WHCN in 1958. The call letters stood for "Hartford Concert Network." WHCN remained a Classical music station from that point until shifting to underground rock in 1969. The station was a runaway success when it broadcast from the transmitter shack on Meriden Mountain. It was the only radio station in the state to play uninterrupted rock. All music no talk. Very hip DJs. The commercials were cool too. Everybody listened. Not enough can be said about that time period. The format was flipped to main stream album rock in late 1976. Known as "106-WHCN", it was very successful in the 1970s and the 1980s. It was home to the morning show Picozzi and The Horn, up until the mid-1990s. Picozzi would later move across town to WCCC-FM. WHCN flipped to Classic rock in the mid-1990s to compete for the older rock audience that grew up with WHCN, but changing owners would signal changes at WHCN as well. It would become "105-9 WHCN" and adapt a harder-edged classic rock sound billed as "Classic Rock that really rocks!". WHCN would be snapped up by Liberty Broadcasting and then SFX Broadcasting/Capstar, then AMFM and then Clear Channel Communications in 2000.
The River (French: Le Fleuve) is a 1951 film directed by Jean Renoir. It was filmed in India.
A fairly faithful dramatization of an earlier literary work of the same name (The River, authored by Rumer Godden), the movie attests to a teenager's first love, and how her heart was broken when the man she fell in love with was smitten with her best friend instead.
The film was produced by Kenneth McEldowney, and original music was by M. A. Partha Sarathy. The cast includes Esmond Knight, Nora Swinburne and Arthur Shields.
Harriet (played by Patricia Walters) belongs to an upper middle-class English family residing on the banks of the Ganges River in India. Her father (Knight) runs a jute mill, and she has four sisters. Her only brother (played by a very young Richard R. Foster), somewhat ten years her junior, wants to learn how to tame cobras with a flute. Although they are raised in a genteel, English setting, and even have the benefit of a live-in nanny, their upbringings bear the mark of a curious confluence of Western and Eastern philosophies. If there ever could be a compromise between Christianity and Hinduism, they are immersed in it. (The youngest girl, for instance, has a rabbit she treats as her newborn baby, and says that some babies can be born again and again.)
Joe Cocker Greatest Hits -Best Songs Of Joe Cocker
Composer : Randy Newman This song is Randy Nemwan cover Lyrics : Baby take off your coat Real slow 'N take off your shoes I'll take off that shoes Baby take off your dress Yes, yes, yes You can leave your hat on You can leave your hat on You can leave your hat on Go over there, turn on the lights All the lights, Come over here, stand on this chair Yes, that's right Raise your arms up in the air Now shake 'em You give me reason to live You give me reason to live You give me reason to live You give me reason to live Sweet darling You can leave your hat on Baby!.. You can leave your hat on Sax Solo : (You can leave your hat on) (You can leave your hat on) Suspicious minds are talkin' They're tryin' to tear us apart They don't believe in this love of mine But they don't know what l...
Joe cocker
JOE COCKER-WITH A LITTLE HELP FROM MY FRIENDS WOODSTOCK 1969!
...live in Dortmund 1992... Composer : Elton John, Bernie Taupin This song is Elton John cover The Band : Sax,Keyboards - Deric Dyer Guitar,Keyboards,Vocals - John Miles Keyboards - Chris Stainton Bass Guitar - Warren McRae Guitar - Phil Grande Drums - Dan Hickey Vocals - Maxine Sharp Vocals - Cydney Davis Lyrics : What have I got to do to make you love me What have I got to do to make you care What do I do when lightning strikes me And I wake to find that you're not there What do I do to make you want me What have I got to do to be heard What do I say when it's all over And sorry seems to be the hardest word It's sad, so sad It's a sad, sad situation And it's getting more and more absurd It's sad, so sad Why can't we talk it over Oh it seems to me That sorry seems to be the hard...
Joe Cocker Greatest Hits-Best Songs Of Joe Cocker
Joe Cocker performt „Unchain My Heart” (Live) Das Beste von Joe Cocker: https://lnk.to/JoeCocker Den Kanal hier abonnieren: https://www.youtube.com/user/JoeCockerOfficial?sub_confirmation=1 Mehr Videos von Joe Cocker: Up Were We Belong: https://youtu.be/JERSTbzpvyE You Are So Beautiful (Live): https://youtu.be/XjwSkvXsmgE #JoeCocker #UnchainMyHeart #Vevo #Pop #Live Songtext: Unchain my heart Baby let me be 'Cause you don't care Let me Set me free Unchain my heart Baby let me go Unchain my heart 'Cause you don't love me no more Every time I call you on the phone Some fella tells me that you're not at home Unchain my heart Set me free Unchain my heart Baby let me be Unchain my heart 'Cause you don't care about me You've got me sewed up like a pillow case But you let my love go to wast...
The official music video for "Unchain My Heart" performed by Joe Cocker. Follow Joe Cocker: Facebook: https://www.facebook.com/joecockerofficial Instagram: https://www.instagram.com/joecockerofficial/ TikTok: https://www.tiktok.com/@joecockerofficial Website: https://www.cocker.com/ Subscribe to the official Joe Cocker YouTube channel: https://www.youtube.com/channel/UCxuJgU_RrAKETUInMzpbfkg?sub_confirmation=1 Listen to more love songs from Joe Cocker: https://www.youtube.com/playlist?list=PLbmmdwf2Hj0vstqKE5Nf21zo9cwDmcWnT Sign up for Joe Cocker’s official newsletter to get rare stories, photos and more delivered fresh to your inbox: https://joecockerofficial.lnk.to/Newsletteryt #JoeCocker #unchainmyheart #musicvideo
This song is Bill Withers cover Composer : Bill Withers Lyrics : Ain't no sunshine when she's gone It's not warm when she's away Ain't no sunshine when she's gone And she always gone too long anytime she goes away Wonder this time where she's gone Wonder if she's gone to stay Ain't no sunshine when she's gone And this house just ain't no home Anytime she goes away I know, I know, I know, I know I know, I know, I know, I know I know, I know, I know, I know I know, know, know, know, know I know, I know Hey I ought to I ought to leave her alone Ain't no sunshine when she's gone Ain't no sunshine when she's gone Only darkness everyday Ain't no sunshine when she's gone And this house just ain't no home Anytime she goes away Lyrics in Subtitles. Turn on CC...
The official video for Joe Cocker - Noubliez Jamais. Listen to Joe Cocker: https://lnk.to/ListenJoeCocker
The official music video for "Summer In The City" performed by Joe Cocker. Follow Joe Cocker: Facebook: https://www.facebook.com/joecockerofficial Instagram: https://www.instagram.com/joecockerofficial/ TikTok: https://www.tiktok.com/@joecockerofficial Website: https://www.cocker.com/ Subscribe to the official Joe Cocker YouTube channel: https://www.youtube.com/channel/UCxuJgU_RrAKETUInMzpbfkg?sub_confirmation=1 Listen to more from Joe Cocker: https://www.youtube.com/playlist?list=PLbmmdwf2Hj0srDG2tsQFnUSZJHi41GSyw Sign up for Joe Cocker’s official newsletter to get rare stories, photos and more delivered fresh to your inbox: https://joecockerofficial.lnk.to/Newsletteryt #JoeCocker #summerinthecity #musicvideo
from a German TV concert (Ohne Filter) in the 90ies. If you like it, look for 'Many rivers to cross' unplugged, from same concert.
HIDDEN ERROR: Usage of "death_cause" is not recognized
John Robert "Joe" Cocker, OBE (20 May 1944 – 22 December 2014) was an English singer and musician. He was known for his gritty voice, spasmodic body movement in performance, and definitive versions of popular songs.
Cocker's cover of the Beatles' "With a Little Help from My Friends" reached number one in the UK in 1968. He performed the song live at Woodstock in 1969, and at the Party at the Palace concert for the Golden Jubilee of Elizabeth II in 2002. His version also became the theme song for the TV series The Wonder Years. His 1974 cover of "You Are So Beautiful", reached number five in the US. Cocker was the recipient of several awards, including a 1983 Grammy Award for his US number one "Up Where We Belong", a duet with Jennifer Warnes.
In 1993 Cocker was nominated for the Brit Award for Best British Male, in 2007 was awarded a bronze Sheffield Legends plaque in his hometown, and in 2008 he received an OBE at Buckingham Palace for services to music. Cocker was ranked number 97 on Rolling Stone's 100 greatest singers list.
I went down to the river
Just to see if it would rain
I looked down in the water
I could not believe my eyes
A face and a reflection
Was staring back at me ahah
And it scares me just to think
About the power that this woman has on me
Just to keep from drowning
I get down on my knees to pray
Just to keep from drowning
I'll do anything you say
Help me now
Help me now
It rained the day I met her
I should have known that was a sign
But I couldn't see the weather
That woman almost made me blind
I wanted her to love me
Now all I want is to be free
And it scares me just to think
About the power that this woman has on me
Just to keep from drowning
I'll do anything I can
Just to keep from drowning
Lord I need a helping hand
Help me now
Help me now
I hear the river call my name
But the water's dark and cold
I see your face
And I'm afraid this time
That I will lose my soul
I will lose my soul
I might lose my soul
Help me
Help me now
Just to keep from drowning
I get down on my knees to pray
Just to keep from drowning
I'll do anything you say
Help me now
Help me please
What else's gonna save me from drowning here
Just to deliver me
Keep from drowning
I get on my knees to pray
Just to free my soul
Just to keep from drowning
You know I'd do anything you say woman
Have me talking baby
Drowning
Drowning
Can't we
Living like it should
With unbroken heart
I'd do anything
Just to keep from drowning
Just to keep from burning down
I get on my knees to pray
I said it scares me
Just to think about you woman
How will she help for me