- published: 07 Aug 2020
- views: 86604189
'+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.
"Mother" is a song by Pink Floyd. It appears on The Wall album, released in 1979. This song was one of several to be considered for the band's "best of" album, Echoes: The Best of Pink Floyd.
"Mother" is 5:35 in length. The majority of the song is in G Major, though the chorus is predominantly a plagal cadence in C Major. The song is notable for its varied use of time signatures, such as 5/8 and 9/8. Pink Floyd drummer Nick Mason found these time-signature changes difficult to learn, and, with the band recording on a very tight schedule, ceded the drumming duties to session drummer Jeff Porcaro.
The song begins quietly with solo voice and a single acoustic guitar, and gradually expands its instrumentation to include, by the song's end, reed organ, piano, drums, electric bass, and electric guitar. The song has a minimal introduction, consisting only of a sharp inhalation and rapid exhalation before the first verses are sung by Roger Waters. With exceptions (as noted above), the majority of the verses are in 4/4, or "common time".
"Matilda Mother" is a song by British psychedelic rock band Pink Floyd, featured on their 1967 debut album, The Piper at the Gates of Dawn. Written by Syd Barrett, it is sung mostly by Richard Wright with Barrett joining in on choruses and singing the whole last verse. It was the first song recorded for the album.
The lyrics quote fragments of fairy tales as read from a book to the singer by his mother ("read(ing) the scribbly black", referring to writing in a book as a child sees it), and in the chorus he implores her to "tell me more". "Matilda Mother" represents a common theme in Barrett's work: his nostalgia for childhood and awareness that it could not be regained.
The song begins with an unusual bass and organ interlude. Roger Waters repeatedly plays the B on the 16th fret of the G-string by varying the lower note from D to F# on the D string. Unlike many older beat and pop songs, the guitar rarely plays chords, and most unusually for Western music, Wright provides an organ solo in the F# Phrygian dominant scale with a natural sixth instead of its typical flatted counterpart. The song ends with a simple E mixolydian-based waltz with wordless vocal harmonies of Wright and Barrett.
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...
Pink Floyd concert video taken from the 20 October 1994 concert at Earls Court, London, England in The Division Bell Tour. It was originally released on VHS and Laserdisc in 1995. David Gilmour – guitar, vocals Nick Mason – drums, percussion, vocal phrase (recording) Rick Wright – Hammond organ, synthesiser Guy Pratt – bass guitar Gary Wallis – percussion, extra drums on Pulse Tim Renwick – rhythm guitar Jon Carin – synthesiser, must not forget the ladies backing up Floyd ! Sam Brown – backing vocals Durga McBroom – backing vocals, Claudia Fontaine – backing vocals "Another Brick in the Wall" is a three-part composition on Pink Floyd's 1979 The Wall, written by bassist Roger Waters. "Part 2", a protest song against rigid schooling, At the suggestion of producer Bob Ezrin, Pink Floyd a...
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...
Pink Floyd, Wish You Were Here (1975) So, so you think you can tell Heaven from Hell, Blue skys from pain. Can you tell a green field From a cold steel rail? A smile from a veil? Do you think you can tell? And did they get you to trade Your heros for ghosts? Hot ashes for trees? Hot air for a cool breeze? Cold comfort for change? And did you exchange A walk on part in the war For a lead role in a cage? How I wish, how I wish you were here. We're just two lost souls Swimming in a fish bowl, Year after year, Running over the same old ground. What have we found? The same old fears. Wish you were here.
espandi per vedere il testo: We don't need no education. We don't need no thought control. No dark sarcasm in the classroom. Teacher, leave those kids alone. Hey, Teacher, leave those kids alone! All in all it's just another brick in the wall. All in all you're just another brick in the wall. We don't need no education. We don't need no thought control. No dark sarcasm in the classroom. Teachers, leave those kids alone. Hey, Teacher, leave those kids alone! All in all you're just another brick in the wall. All in all you're just another brick in the wall Ed ecco la traduzione in italiano. Non abbiamo bisogno di educazione Non abbiamo bisogno di essere sorvegliati né di oscuro sarcasmo in aula Professore, lascia in pace i ragazzi Hey, professore, lascia in pace i ragazzi! Tutto som...
The official promo video for 'Another Brick In The Wall, Part 2' by Pink Floyd, taken from the album 'The Wall', originally released in 1979. 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 One of the most acclaimed concept albums of all time, The Wall is renowned as Roger Waters' Rock Opera dealing with abandonment and personal isolation. Featuring the unique artwork of Gerald Scarfe, the album also yielded the US & UK No. 1 hit Another Brick In The Wall Pt2., and was subsequently adapted for cinema by Alan Parker featuring Bob Geldof in the lead role. The album was re-mastered in 2011 and Discovery (1CD), ...
Video Description: "Shine On You Crazy Diamond" is a nine-part Pink Floyd composition written by Roger Waters, Richard Wright and David Gilmour. It is a tribute to former band member Syd Barrett. The song was first performed on their 1974 French tour, and recorded for their 1975 concept album Wish You Were Here. The song was intended to be a side-long composition (like "Atom Heart Mother" and "Echoes"), but was ultimately split into two parts and used to bookend the album, with new material composed that was more relevant to this song, and to the situation in which the band found themselves. | http://en.wikipedia.org/wiki/Shine_On_You_Crazy_Diamond Lyrics: Remember when you were young, you shone like the sun. Shine on you crazy diamond. Now there's a look in your eyes, like black holes ...
Pink Floyd - Comfortably numb It's obviously not my song , so i am not going to take any creds for it .. I know the song isn't from the dark side of the moon. I chose this picture becuase I think it's the most representative and recognized symbol of Pink Floyd. range of ish ishybadboy runescape bs bh pking bounty hunter pking bountyhunter bs bh rs runescape jagex ltd upload videos p hat purple hat clan purple hats bh clans runescape di rs elvemage kids ranqe lord makup lord makeup lord make up lord mak up soz owned defil3d elf mage pka i ayzee i joshinator48 eazy e369 runescape rs rs i ayzee i wildy owns1 spanjol 91 rs elvewatford runescape pking p2p f2p member bh bounty hunter team cape rs jagex range of ish pk vid 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 20 21 22 23 24 25 16 17 20 18 19 jag...
A performance of 'Shine On You Crazy Diamond' live at Pompeii. David Gilmour's 'Luck and Strange' available now from https://davidgilmour.lnk.to/LuckandStrange on vinyl, CD and digital. *DAVID GILMOUR LIVE AT POMPEII DVD* David Gilmour ‘Live At Pompeii’ OUT NOW! Listen and order here: Official Store http://smarturl.it/ShopDavidGilmour Amazon http://smarturl.it/DGPompeiiABDLX Online http://smarturl.it/DGPompeii Subscribe to David Gilmour's YouTube channel here: http://smarturl.it/DGYTSubscribe 45 years after Pink Floyd’s David Gilmour filmed ‘Live At Pompeii’ in the legendary Roman Amphitheatre there, he returned for two spectacular shows that took place on 7 & 8 July 2016, part of his year-long tour in support of his No.1 album ‘Rattle That Lock’. The performances were the first-eve...
David Gilmour returns to Pompeii after 45 years. Chuck Leavell co-lead, Roger Waters' parts.back up vocals. David Gilmour – electric guitar Chester Kamen – electric guitar Guy Pratt – bass guitar Greg Phillinganes – piano, keyboards Chuck Leavell – organ, keyboards Steve DiStanislao – drums, percussion Enjoy!
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,