- published: 10 Apr 2020
- views: 154253
'+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; })); }); -->
Pink Floyd were an English rock band formed in London. They achieved international acclaim with their progressive and psychedelic music. Distinguished by their use of philosophical lyrics, sonic experimentation, extended compositions and elaborate live shows, they are one of the most commercially successful and musically influential groups in the history of popular music.
Pink Floyd were founded in 1965 by students Syd Barrett, Nick Mason, Roger Waters, and Richard Wright. They gained popularity performing in London's underground music scene during the late 1960s, and under Barrett's leadership released two charting singles and a successful debut album, The Piper at the Gates of Dawn (1967). David Gilmour joined as a fifth member in December 1967; Barrett left the band in April 1968 due to deteriorating mental health. Waters became the band's primary lyricist and, by the mid-1970s, their dominant songwriter, devising the concepts behind their critically and commercially successful albums The Dark Side of the Moon (1973), Wish You Were Here (1975), Animals (1977), The Wall (1979) and The Final Cut (1983). The Dark Side of the Moon and The Wall became two of the best-selling albums of all time.
19367 Pink Floyd is an asteroid that has been named in honour of the English musical group Pink Floyd. It was discovered on December 3, 1997. It is in a 3.82-year elliptical orbit around the sun. Its previous perihelion passage occurred on December 23, 2004 at 9h00 UT.
There is little information on the physical properties of 19367 Pink Floyd. Its diameter remains uncertain; range of 3 to 6 km is probable.
19367 Pink Floyd's maximum brightness is estimated to be 1/14958 of the brightness of the faintest objects that can be seen with the human eye.
The asteroid's name is unusual in that it is expressed as two words, instead of "Pinkfloyd" which is the format used by most other minor planets named after individuals or groups (although the asteroid named after the Rolling Stones is also expressed as two words).
Pink Floyd – The Wall is a 1982 British live-action/animated psychological horror musical film directed by Alan Parker with animated segments by political cartoonist Gerald Scarfe, and is based on the 1979 Pink Floyd album of the same name. The film centers around a confined rocker named Floyd "Pink" Pinkerton, who after being driven into insanity by the death of his father and many depressive moments, constructs a metaphorical (and sometimes physical) wall to be protected from the world and emotional situations around him; when this coping mechanism backfires he demands himself free. The screenplay was written by Pink Floyd vocalist and bassist Roger Waters.
Like its musical companion, the film is highly metaphorical and symbolic imagery and sound are present most commonly. However, the film is mostly driven by music, and does not feature much dialogue. Gerald Scarfe drew and animated 15 minutes of animated sequences, which appear at several points in the film. It was the seventh animated feature to be presented in Dolby Stereo. The film is best known for its disturbing surreal environment, animated sequences, violence and gore, sexual situations, characterization, and many more that caused it to be one of the most surreal musicals of all time. The film has since fared well generally, and has established cult status.
About Face is the second solo studio album by Pink Floyd member David Gilmour. Released in March 1984, it was co-produced by himself and Bob Ezrin. Two tracks, "All Lovers Are Deranged" and the more radio-friendly "Love on the Air", were co-written by Gilmour and his long-time friend Pete Townshend, the main songwriter for The Who (Gilmour composed the music and Townshend wrote the lyrics). The remainder of the songs are credited solely to Gilmour himself. In May of the same year, fellow Floyd counterpart Roger Waters released his first official solo album The Pros and Cons of Hitch Hiking.About Face reached number 21 in the UK and number 32 in the US and was certified gold by the RIAA.
The album was recorded in France with engineer Andrew Jackson at a time when Pink Floyd's future was uncertain. It was mixed by James Guthrie at Mayfair Studios in London.
Some of the musicians working with Gilmour were Jeff Porcaro, Pino Palladino, Deep Purple keyboardist Jon Lord, Roy Harper, Michael Kamen (who also worked on The Pros and Cons of Hitch Hiking), Sam Brown, and Steve Winwood.
'Until We Sleep' is the first track from David Gilmour's 1984 second solo album 'About Face'. David Gilmour's first new album in nine years 'Luck and Strange', released 6th September 2024. Pre-order now from https://davidgilmour.lnk.to/LuckandStrange on vinyl, CD and digital. Subscribe to David Gilmour's YouTube channel here: http://smarturl.it/DGYTSubscribe *DAVID GILMOUR SOCIAL MEDIA* Official Website http://www.davidgilmour.com Facebook https://www.facebook.com/davidgilmour Twitter https://twitter.com/davidgilmour Instagram https://www.instagram.com/davidgilmour *ABOUT DAVID GILMOUR* David Gilmour CBE, the voice & guitar of Pink Floyd, hit No. 1 in the UK with his 2006 solo album On An Island. Following Pink Floyd’s final album, 2014’s The Endless River, (No. 1 in 21 countries),...
David Gilmour - Until we sleep - In Floyd we Trust! MORE INFO AT http://floydswebfans.blogspot.com
Pink Floyd’s ‘Animals 2018 Remix – Dolby Atmos’ on Blu-ray out now: https://PinkFloyd.lnk.to/AnimalsBluRay Collector’s Edition of The Dark Side Of The Moon on crystal clear vinyl out now: https://pinkfloyd.lnk.to/TDSOTMUVVinyl **THE LATER YEARS** Included on ‘The Later Years’, a 18-disc box set (5xCDs, 6xBlu-Rays, 5xDVDs,2x7”) covering the material created by David Gilmour, Nick Mason and Richard Wright from 1987 onwards, with unreleased audio and audiovisual material, including the 1989 Venice and 1990 Knebworth concerts, as well as updated, restored and remixed audio and video, 2 x 7” singles, 60-page hardback Photo Book, 40-page hardback Credits Book, Lyrics Book, 3 x reproduction tour programmes, card envelope containing collectible memorabilia, pl...
Filmed live on 20 October 1994 at Earls Court, London, UK. Restored & re-edited in 2019 from the original tape masters. Pink Floyd’s ‘Animals 2018 Remix – Dolby Atmos’ on Blu-ray out now: https://PinkFloyd.lnk.to/AnimalsBluRay Collector’s Edition of The Dark Side Of The Moon on crystal clear vinyl out now: https://pinkfloyd.lnk.to/TDSOTMUVVinyl **ABOUT P.U.L.S.E. RESTORED & RE-EDITED** The P.U.L.S.E. concert film (helmed by esteemed director David Mallet) will be available as 2x Blu-ray and 2x DVD deluxe box sets, with the video footage having been expertly re-edited by Aubrey Powell/Hipgnosis from the original tape masters especially for The Later Years release in 2019. The cover design, originally created by Storm Thorgerson and Peter Curzon for the 2006 DVD release, has also been u...
Filmed live on 20 October 1994 at Earls Court, London, UK. Restored & re-edited in 2019 from the original tape masters. Pink Floyd’s ‘Animals 2018 Remix – Dolby Atmos’ on Blu-ray out now: https://PinkFloyd.lnk.to/AnimalsBluRay Collector’s Edition of The Dark Side Of The Moon on crystal clear vinyl out now: https://pinkfloyd.lnk.to/TDSOTMUVVinyl **ABOUT P.U.L.S.E. RESTORED & RE-EDITED** The P.U.L.S.E. concert film (helmed by esteemed director David Mallet) will be available as 2x Blu-ray and 2x DVD deluxe box sets, with the video footage having been expertly re-edited by Aubrey Powell/Hipgnosis from the original tape masters especially for The Later Years release in 2019. The cover design, originally created by Storm Thorgerson and Peter Curzon for the 2006 DVD release, has also been up...
🎵 Follow 7clouds on Spotify : http://bit.ly/7CLOUDS 🎧 P!nk - Just Give Me a Reason (Lyrics) ⏬ Download / Stream: http://smarturl.it/PTALiTunes 🔔 Turn on notifications to stay updated with new uploads! 👉 P!NK: http://instagram.com/pink http://facebook.com/pink http://twitter.com/pink http://pinkspage.com ❤️ Follow our Spotify playlists: http://bit.ly/7cloudsSpotify ☁️ 7clouds: https://open.spotify.com/user/7cloudsmusic https://instagram.com/7cloudsmusic https://facebook.com/7cloudsmusic https://twitter.com/7cloudsmusic ......... 🎤 Lyrics: P!nk - Just Give Me a Reason Right from the start You were a thief You stole my heart And I your willing victim I let you see the parts of me That weren't all that pretty And with every touch you fixed them Now you've been talking in your sleep, oh...
David Gilmour: Live at Pompeii – это потрясающее музыкальное событие, которое состоялось в июле 2016 года. Почти через 45 лет после того, как Pink Floyd сняли свой легендарный концертный фильм на том же самом месте, Дэвид Гилмор вернулся в римский амфитеатр в Помпеях. В этом спектакле сочетаются классические элементы Pink Floyd, удивительно слаженная группа и виртуозное исполнение Дэвида. В концерте звучат такие хиты, как “Comfortably Numb”, “Shine On You Crazy Diamond”, “Wish You Were Here” и многие другие. Визуально это впечатляющее шоу с использованием лазеров, пиротехники и огромного круглого экрана, на котором показывают специально созданные фильмы, дополняющие музыку. Все это сопровождается потрясающей музыкой, исполняемой мировым классом all-star band.
'Fearless' taken from Pink Floyd's 6th album, Meddle, released on October 30th, 1971. Pink Floyd’s ‘Animals 2018 Remix – Dolby Atmos’ on Blu-ray out now: https://PinkFloyd.lnk.to/AnimalsBluRay Collector’s Edition of The Dark Side Of The Moon on crystal clear vinyl out now: https://pinkfloyd.lnk.to/TDSOTMUVVinyl **THE EARLY YEARS** + Purchase the Boxset http://smarturl.it/PFearlyyears_lp + Purchase the 2 CD Edition http://smarturl.it/PF_TER_2CD + Digital http://smarturl.it/PF_TER_DIGI + 6 Individual Volumes available as Multi-disc Book-bound packages + Featuring Rare Tracks, Demos, Interviews, and Film Footage + Each ‘Year’ CD, DVD & Blu-Ray package includes Photo Book & Memorabilia **PINK FLOYD SOCIAL MEDIA** YouTube https://PinkFloyd.lnk.to/OfficialYouTube Facebook https://PinkFlo...
Pink Floyd were an English rock band formed in London. They achieved international acclaim with their progressive and psychedelic music. Distinguished by their use of philosophical lyrics, sonic experimentation, extended compositions and elaborate live shows, they are one of the most commercially successful and musically influential groups in the history of popular music.
Pink Floyd were founded in 1965 by students Syd Barrett, Nick Mason, Roger Waters, and Richard Wright. They gained popularity performing in London's underground music scene during the late 1960s, and under Barrett's leadership released two charting singles and a successful debut album, The Piper at the Gates of Dawn (1967). David Gilmour joined as a fifth member in December 1967; Barrett left the band in April 1968 due to deteriorating mental health. Waters became the band's primary lyricist and, by the mid-1970s, their dominant songwriter, devising the concepts behind their critically and commercially successful albums The Dark Side of the Moon (1973), Wish You Were Here (1975), Animals (1977), The Wall (1979) and The Final Cut (1983). The Dark Side of the Moon and The Wall became two of the best-selling albums of all time.
I have always been here
I have always looked out from behind the eyes
It feels like more than a lifetime
Feels like more than a lifetime
Sometimes I get tired of the waiting
Sometimes I get tired of being in here
Is this the way it has always been?
Could it ever have been different?
Do you ever get tired of the waiting?
Do you ever get tired of being in there?
Don't worry, nobody lives forever,