- published: 05 Jan 2007
- views: 38444182
'+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.
"You Are So Beautiful" is a song written by Billy Preston and Bruce Fisher. Dennis Wilson of the Beach Boys contributed to the song's genesis, but his official credit was omitted. It was first recorded by Preston and made popular by Joe Cocker. Preston who grew up playing the organ in church, originally wrote the lyrics about God.
Preston's original version first appeared on his 1974 album The Kids & Me and as the B-side on the 45rpm pressing of his pop hit, "Struttin'". Cocker's producer, Jim Price, created a slowed-down arrangement for Cocker's version, which first appeared on the album, I Can Stand a Little Rain (released later in 1974). Released as a single, the Joe Cocker version reached number five on the Billboard Hot 100 singles chart in 1975 and helped the album become a hit. It would be his biggest hit until his duet with Jennifer Warnes, "Up Where We Belong", which reached #1 in 1982.
Though not officially credited as the song's writer, Dennis Wilson of the Beach Boys and Preston spontaneously collaborated on the words and music to the song at a party. Wilson never sought to reclaim his share of the song's authorship. The song's tone has been related to the style of his solo material.
You Are So Beautiful was the eighth album released by Tanya Tucker, and the fourth and final one with her first label, Columbia Records and with producer Billy Sherrill. It consisted of songs Tucker had recorded several years prior while still recording for Columbia. The highest charting single was "Spring," which rose to #18 on the Billboard C&W chart in 1975, two years before the album's release, that single having been released by Columbia to compete with Tucker's debut MCA single, the #1 C&W hit "Lizzie and the Rainman". At the time the You Are So Beautiful album was released Tucker's rendition of the title track was issued as a single reach #40 C&W; the album was Tucker's lowest ranking up to that point at #44 on the C&W Albums chart.
You Are So Beautiful (French title: Je vous trouve très beau) is a French comedy film released in 2006 by the Gaumont company. It is written and directed by Isabelle Mergault and includes a cast of Michel Blanc, Medeea Marinescu, Wladimir Yordanoff, Benoît Turjman, Éva Darlan and Elisabeth Commelin.
Aymé played by Blanc, a recently widowed farmer, is eager to find a new wife to help him run his farm. Desperate, he seeks the aid of a local matchmaker who suggest that he go to Romania to find a new wife. There he meets Elena played by Marinescu.
The film premiered at the "Sarlat Film Festival" on 7 November 2005. It was also screened at the Marrakech International Film Festival on 13 November 2005. On 14 June 2006, the film was projected at the Seattle International Film Festival.
"So Beautiful" is a pop song written by Australian singer-songwriter Darren Hayes and Robert Conley. In 2005, the song was released as a single as a part of the promotion of the greatest hits album Truly Madly Completely: The Best of Savage Garden, a band that Hayes was part of until their split in 2001. Hayes was credited on the release as "Darren Hayes (of Savage Garden)".
The song was written for Hayes's boyfriend Richard Cullen, whom he married in a civil partnership ceremony in London on 19 June 2006. The song peaked at number 27 on the U.S. Adult Contemporary chart. It reached number 8 in Darren Hayes' native Australia. The single itself features a different version of the song that did not feature on the album, produced by Robert Conley. This version resembles Hayes's solo work more than the album version does, which sounds more like Savage Garden's work. The single version of the song contains a different introduction and a slightly faster tempo. The album version also appears in edited form on the UK maxi single as "Spike's Radio Edit" and is the version used for the video. It was produced by Mark "Spike" Stent.
from a German TV concert (Ohne Filter) in the 90ies. If you like it, look for 'Many rivers to cross' unplugged, from same concert.
31 October 1980 Metropol, Berlin, Germany Composers : Billy Preston, Bruce Fisher This song is Billy Preston cover The Band : Lead Guitar - Cliff Goodwin Bass - Howard Hersh Keyboards - Larry Marshall Piano,Arranger - Mitch Chakour Drums - B.J. Wilson Vocals - Maxine Greene Vocals - Ann Lang Vocals - D.E. Washburne Lyrics : You are so beautiful to me You are so beautiful to me Can't you see? You're everything I hoped for You're everything I need You are so beautiful to me Such joy and happiness you bring Such joy and happiness you bring Like a dream A guiding light that shines in the night Heavens gift to me You are so beautiful to me Guitar Solo : A guiding light that shines in the night Heavens gift to me You are so beautiful to me...
Album: I can stand a little rain,1974 "TÚ ERES TAN HERMOSA" LETRA EN ESPAÑOL Eres tan hermosa Para mí Eres tan hermosa Para mí ¿No lo puedes ver? Eres todo lo que esperaba Eres todo lo que necesito Eres tan hermosa para mí Eres tan hermosa para mí Eres tan hermosa Para mí ¿No lo puedes ver? Eres todo lo que esperaba Eres todo lo que necesito Eres tan hermosa para mí Eres tan hermosa Para mí Eres tan hermosa Para mí ¿No lo puedes ver? Eres todo lo que esperaba Eres todo lo que necesito Eres tan hermosa para mí Eres tan hermosa para mí Eres tan hermosa Para mí ¿No lo puedes ver? Eres todo lo que esperaba Eres todo lo que necesito Eres tan hermosa para mí You are so beautiful To me You are so beautiful To me Can't you see You're everything I hoped for You're everything I need You a...
Pavarotti & Friends - a concert for Guatemala and Kosovo Parco Novi Sad, Modena, Italy 1 June 1999 Composers : Billy Preston, Bruce Fisher Guitar - Alex Britti
Joe Cocker~You Are So Beautiful (Live at Montreux 1987)
El fascinante Joe!! Eres tan hermosa para mi... Un pedacito del cielo en una canción para ti Jime. #jimenarodriguez #ricardoruiz #erestanhermosaparami #TWD #walkingdead #joecocker #youaresobeautiful
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.
You are so beautiful, to me
You are so beautiful, to me
Can't you see, you're everything I hoped for
You're everything that I need, you are so beautiful, to me
You are so beautiful, to me
You are so beautiful, to me
Can't you see, you're everything I hoped for