'+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; })); }); -->

The Wall

The Wall is the eleventh studio album by the English progressive rock band Pink Floyd. It is the last studio album released with the classic lineup of guitarist David Gilmour, bassist/lyricist Roger Waters, keyboardist Richard Wright and drummer Nick Mason before Wright left the band. Released as a double album on 30 November 1979, it was supported by a tour with elaborate theatrical effects, and adapted into a 1982 feature film, Pink Floyd – The Wall. The album features the band's only number one single; "Another Brick in the Wall Part 2".

As with Pink Floyd's previous three albums, The Wall is a concept album and explores themes of abandonment and personal isolation. The album is a rock opera that follows Pink, a character whom Waters modelled after himself and the band's original leader, Syd Barrett. Pink's life begins with the loss of his father during the Second World War and continues with abuse from his schoolteachers, an overprotective mother, and the breakdown of his marriage; all contribute to his eventual self-imposed isolation from society, represented by a metaphorical wall. Waters conceived the album during Pink Floyd's 1977 In the Flesh Tour, when his frustration with the audience became so acute that he imagined a wall between the audience and the stage.

Pink Floyd – The Wall

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.

The Wall (1967 film)

The Wall (French: Le Mur) is a 1967 French drama film directed by Serge Roullet. It was entered into the 17th Berlin International Film Festival.

Cast

  • Michel del Castillo - Pablo
  • Denis Mahaffey - Tom
  • Matthieu Klossowski - Juan
  • Anna Pacheco - Concha
  • René Darmon - Ramon
  • Bernard Anglade - Le médecin
  • Jorge Lavelli - Un officier
  • Claude Esteban - Le boulanger
  • Edgardo Cantón - Deuxième officier
  • Peter Kassovitz - Un officier
  • Miguel Cañadas - Premier officier
  • Jaime Mir Ferri - Interrogateur
  • José Abad - Interrogateur
  • Félix Esteguy - Interrogateur
  • John Montague - Le prisonnier anglais
  • Oscar Lozoya - Un garde
  • Ricardo Gómez - Le garde moustachu
  • Mario Casari - Un garde
  • References

    External links

  • The Wall at the Internet Movie Database

  • Podcasts:

    Bức Tường

    ALBUMS

    The Wall

    ALBUMS

    • P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album)1979

      https://www.youtube.com/watch?v=PzrPx_KeeZ8 Please see the old rock music aggregate all time

      published: 15 Jan 2021
    • Pink Floyd - "Another Brick in The Wall " PULSE Remastered 2019

      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...

      published: 07 Feb 2020
    • pink floyd - another brick in the wall

      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...

      published: 06 Nov 2010
    • Pink Floyd - The Wall "Full Movie" 1982 - Bonus original clip "Hey you" (Remastered)

      Pelicula lanzada el 23 de mayo de 1982 dirigida por el director británico Alan Parker y basada en el álbum de "Pink Floyd The Wall" (1979) protagonizada por Bob Geldof. El guion fue escrito por Roger Waters. Basada en los bombardeos alemanes sobre Inglaterra durante la Segunda Guerra Mundial. La película incluye 15 minutos de elaboradas secuencias de animación creadas por el ilustrador Gerald Scarfe y Roger Waters. Film released on May 23, 1982 directed by British director Alan Parker and based on the album "Pink Floyd The Wall" (1979) starring Bob Geldof. The script was written by Roger Waters. Based on the German bombing of England during World War II. The film include...

      published: 17 Aug 2022
    • P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album) 1979

      published: 12 Mar 2021
    • the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク)

      Provided to YouTube by CRYPTON FUTURE MEDIA, INC the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク) · Leo/need Voices/the WALL ℗ 2023 SEGA/CP / CFM inc. Released on: 2023-08-30 Auto-generated by YouTube.

      published: 29 Aug 2023
    • THE WALL v AFC HAMMERSMITH | A TYPICAL SUNDAY REFEREE | SUNDAY FOOTBALL LEAGUE MATCH #1 | S4. EP 2

      #TheWallFC​ ⚽🦍💜 The boys carry on with Season 4 as we take on new comers to the league AFC Hammersmith in our first league match of the season!🙌🏾 Don't forget to subscribe and help us reach our goal of 10K subscribers!🦍💜 Follow us on Instagram: @thewallfc Email us: thewallfc@thewallofcomedy.com Owned by: @WallofComedy Produced by Percelle Ascott and Jerome Wade Production Assistant: Patience Mutanda Edited by: Jordan Wade Graphic Designer: Jordan Wade & Che Martin DOP: Jordan Wade Music by: @JY_MNTL Instrumentals by: @ProdHurtz & Epidemic Sound __ The Wall FC is a newly created Sunday League football team, following the club on their journey, season to season in their quest to lift the most wanted trophies in Grassroots Football Instagram: https://instagram.com/thewallfc Twitter:htt...

      published: 17 Sep 2023
    • Pink Floyd - The Wall [Full Album]

      The Wall by Pink Floyd Year: 1979 Label: Toshiba-EMI TOCP-65742~3, Japan (2001) CD1: 00:00 - 1. In The Flesh? 03:23 - 2. The Thin Ice 05:53 - 3. Another Brick In The Wall, Part 1 09:03 - 4. The Happiest Days Of Our Lives 10:55 - 5. Another Brick In The Wall, Part 2 14:55 - 6. Mother 20:31 - 7. Goodbye Blue Sky 23:19 - 8. Empty Spaces 25:27 - 9. Young Lust 28:58 - 10. One Of My Turns 32:36 - 11. Don't Leave Me Now 36:53 - 12. Another Brick In The Wall, Part 3 38:08 - 13. Goodbye Cruel World CD2: 39:26 - 1. Hey You 44:11 - 2. Is There Anybody Out There? 46:52 - 3. Nobody Home 50:16 - 4. Vera 51:50 - 5. Bring The Boys Back Home 53:17 - 6. Comfortably Numb 59:41 - 7. The Show Must Go On 01:01:18 - 8. In The Flesh 01:05:35 - 9. Run Li...

      published: 11 Nov 2014
    • THE WALL v PSG | THE SUNDAY LEAGUE VERSION | PRE-SEASON | S4. EP 1

      #TheWallFC​ ⚽🦍💜 Season 4 begins with Pre-season! We take on PSG...the Sunday league version😅 Don't forget to subscribe and help us reach our goal of 10K subscribers!🦍💜 Follow us on Instagram: @thewallfc Email us: thewallfc@thewallofcomedy.com Owned by: @WallofComedy Produced by Percelle Ascott and Jerome Wade Production Assistant: Patience Mutanda Edited by: Jordan Wade Graphic Designer: Jordan Wade & Che Martin DOP: Jordan Wade Music by: @JY_MNTL Instrumentals by: @ProdHurtz & Epidemic Sound __ The Wall FC is a newly created Sunday League football team, following the club on their journey, season to season in their quest to lift the most wanted trophies in Grassroots Football Instagram: https://instagram.com/thewallfc Twitter:https://twitter.com/officialwallfc TikTok: @thewallfc ...

      published: 10 Sep 2023
    • The Nostalgia Critic and The Wall

      Clickbait Title: I remember it so you don't have to. Mild flashing effects in the last 40s. "Pink Floyd - The Wall" deals with mature subject matter and contains intense imagery some viewers may find distressing. As a full disclosure, I was briefly a contributor to Channel Awesome for about six months in 2014/15. Channel Awesome CEO Mike Michaud severed the relationship after he received angry emails about an exposé of 8chan I had published on Medium and I refused to take it down or commit to not doing "anything else like that." Several of the songs are a roundabout veiled reference to #ChangeTheChannel, a hashtag that gained some traction in the spring of 2018 as contributors and former contributors to Channel Awesome spilled all the beans about CA's incompetence and mismanagement. Wha...

      published: 13 Apr 2021
    P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album)1979
    1:21:09

    P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album)1979

    • Order:
    • Duration: 1:21:09
    • Uploaded Date: 15 Jan 2021
    • views: 7062416
    https://www.youtube.com/watch?v=PzrPx_KeeZ8 Please see the old rock music aggregate all time
    https://wn.com/P̲Ink_Flo̲Yd_T̲H̲E̲_W̲A̲L̲L̲_(Full_Album)1979
    Pink Floyd - "Another Brick in The Wall  " PULSE Remastered 2019
    6:37

    Pink Floyd - "Another Brick in The Wall " PULSE Remastered 2019

    • Order:
    • Duration: 6:37
    • Uploaded Date: 07 Feb 2020
    • views: 115132897
    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 added elements of disco, which was popular at the time. According to guitarist David Gilmour: [Ezrin] said to me, "Go to a couple of clubs and listen to what's happening with disco music," so I forced myself out and listened to loud, four-to-the-bar bass drums and stuff and thought, Gawd, awful! Then we went back and tried to turn one of the parts into one of those so it would be catchy. Gilmour recorded his guitar solo in one take, with no editing or mixing, using a 1955 Gibson Les Paul Gold Top guitar equipped with P-90 pick-ups. Despite his reservations about Ezrin's additions, Gilmour felt the final song still sounded like Pink Floyd. When Ezrin heard the song with a disco beat, he was convinced it could become a hit, but felt it needed to be longer, with two verses and two choruses. The band resisted, saying they did not release singles; Waters told him: "Go ahead and waste your time doing silly stuff." While the band members were away, Ezrin edited the takes into an extended version, and had engineer Nick Griffiths record children singing the verse at Islington Green School, close to Pink Floyd's studio. Alun Renshaw, head of music at the school, was enthusiastic, and said later: "I wanted to make music relevant to the kids – not just sitting around listening to Tchaikovsky. I thought the lyrics were great – 'We don't need no education, we don't need no thought control' ... I just thought it would be a wonderful experience for the kids." Some of the edits for this remix are what i would call poor, bad decision making IMO as one of you stated The songs and solos have been snipped and edited as if the real fans wouldn’t notice. Literally no reason to do it....example 1:01 Other than those bad edits, shortened solos.....the sound and quality of video is good.
    https://wn.com/Pink_Floyd_Another_Brick_In_The_Wall_Pulse_Remastered_2019
    pink floyd - another brick in the wall
    3:50

    pink floyd - another brick in the wall

    • Order:
    • Duration: 3:50
    • Uploaded Date: 06 Nov 2010
    • views: 124068031
    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 sommato, è solo un altro mattone nel muro Tutto sommato, siete solo un altro mattone nel muro Non abbiamo bisogno di educazione non abbiamo bisogno di essere sorvegliati né di oscuro sarcasmo in classe Professori, lasciate in pace i ragazzi! Ehi, professore, lascia in pace i ragazzi! Tutto sommato, siete solo un altro mattone nel muro Tutto sommato, siete solo un altro mattone nel muro.
    https://wn.com/Pink_Floyd_Another_Brick_In_The_Wall
    Pink Floyd - The Wall "Full Movie" 1982 - Bonus original clip "Hey you" (Remastered)
    1:39:41

    Pink Floyd - The Wall "Full Movie" 1982 - Bonus original clip "Hey you" (Remastered)

    • Order:
    • Duration: 1:39:41
    • Uploaded Date: 17 Aug 2022
    • views: 809723
    Pelicula lanzada el 23 de mayo de 1982 dirigida por el director británico Alan Parker y basada en el álbum de "Pink Floyd The Wall" (1979) protagonizada por Bob Geldof. El guion fue escrito por Roger Waters. Basada en los bombardeos alemanes sobre Inglaterra durante la Segunda Guerra Mundial. La película incluye 15 minutos de elaboradas secuencias de animación creadas por el ilustrador Gerald Scarfe y Roger Waters. Film released on May 23, 1982 directed by British director Alan Parker and based on the album "Pink Floyd The Wall" (1979) starring Bob Geldof. The script was written by Roger Waters. Based on the German bombing of England during World War II. The film includes 15 minutes of elaborate animation sequences created by illustrator Gerald Scarfe and Roger Waters.
    https://wn.com/Pink_Floyd_The_Wall_Full_Movie_1982_Bonus_Original_Clip_Hey_You_(Remastered)
    P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album) 1979
    1:23:02

    P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album) 1979

    • Order:
    • Duration: 1:23:02
    • Uploaded Date: 12 Mar 2021
    • views: 829044
    https://wn.com/P̲Ink_Flo̲Yd_T̲H̲E̲_W̲A̲L̲L̲_(Full_Album)_1979
    the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク)
    4:00

    the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク)

    • Order:
    • Duration: 4:00
    • Uploaded Date: 29 Aug 2023
    • views: 103076
    Provided to YouTube by CRYPTON FUTURE MEDIA, INC the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク) · Leo/need Voices/the WALL ℗ 2023 SEGA/CP / CFM inc. Released on: 2023-08-30 Auto-generated by YouTube.
    https://wn.com/The_Wall_(Feat._星乃一歌_天馬咲希_望月穂波_日野森志歩_初音ミク)
    THE WALL v AFC HAMMERSMITH | A TYPICAL SUNDAY REFEREE | SUNDAY FOOTBALL LEAGUE MATCH #1 | S4. EP 2
    28:56

    THE WALL v AFC HAMMERSMITH | A TYPICAL SUNDAY REFEREE | SUNDAY FOOTBALL LEAGUE MATCH #1 | S4. EP 2

    • Order:
    • Duration: 28:56
    • Uploaded Date: 17 Sep 2023
    • views: 7902
    #TheWallFC​ ⚽🦍💜 The boys carry on with Season 4 as we take on new comers to the league AFC Hammersmith in our first league match of the season!🙌🏾 Don't forget to subscribe and help us reach our goal of 10K subscribers!🦍💜 Follow us on Instagram: @thewallfc Email us: thewallfc@thewallofcomedy.com Owned by: @WallofComedy Produced by Percelle Ascott and Jerome Wade Production Assistant: Patience Mutanda Edited by: Jordan Wade Graphic Designer: Jordan Wade & Che Martin DOP: Jordan Wade Music by: @JY_MNTL Instrumentals by: @ProdHurtz & Epidemic Sound __ The Wall FC is a newly created Sunday League football team, following the club on their journey, season to season in their quest to lift the most wanted trophies in Grassroots Football Instagram: https://instagram.com/thewallfc Twitter:https://twitter.com/officialwallfc TikTok: @thewallfc #sundayleaguefootball #grassrootsfootball #football #soccer #sundayleague
    https://wn.com/The_Wall_V_Afc_Hammersmith_|_A_Typical_Sunday_Referee_|_Sunday_Football_League_Match_1_|_S4._Ep_2
    Pink Floyd - The Wall [Full Album]
    1:21:34

    Pink Floyd - The Wall [Full Album]

    • Order:
    • Duration: 1:21:34
    • Uploaded Date: 11 Nov 2014
    • views: 7093180
    The Wall by Pink Floyd Year: 1979 Label: Toshiba-EMI TOCP-65742~3, Japan (2001) CD1: 00:00 - 1. In The Flesh? 03:23 - 2. The Thin Ice 05:53 - 3. Another Brick In The Wall, Part 1 09:03 - 4. The Happiest Days Of Our Lives 10:55 - 5. Another Brick In The Wall, Part 2 14:55 - 6. Mother 20:31 - 7. Goodbye Blue Sky 23:19 - 8. Empty Spaces 25:27 - 9. Young Lust 28:58 - 10. One Of My Turns 32:36 - 11. Don't Leave Me Now 36:53 - 12. Another Brick In The Wall, Part 3 38:08 - 13. Goodbye Cruel World CD2: 39:26 - 1. Hey You 44:11 - 2. Is There Anybody Out There? 46:52 - 3. Nobody Home 50:16 - 4. Vera 51:50 - 5. Bring The Boys Back Home 53:17 - 6. Comfortably Numb 59:41 - 7. The Show Must Go On 01:01:18 - 8. In The Flesh 01:05:35 - 9. Run Like Hell 01:10:00 - 10. Waiting For The Worms 01:13:58 - 11. Stop 01:14:29 - 12. The Trial 01:19:49 - 13. Outside The Wall Lead Vocals: David Gilmour & Roger Waters. Lead Guitar: David Gilmour. Bass Guitar: Roger Waters. Keyboards: Richard Wright. Drums: Nick Mason. * One of the more expensive remasters (EMI-Toshiba 2001 TOCP series). Quality: 512Kbps, 44,100Hz, 16Bit.
    https://wn.com/Pink_Floyd_The_Wall_Full_Album
    THE WALL v PSG | THE SUNDAY LEAGUE VERSION | PRE-SEASON | S4. EP 1
    22:28

    THE WALL v PSG | THE SUNDAY LEAGUE VERSION | PRE-SEASON | S4. EP 1

    • Order:
    • Duration: 22:28
    • Uploaded Date: 10 Sep 2023
    • views: 4314
    #TheWallFC​ ⚽🦍💜 Season 4 begins with Pre-season! We take on PSG...the Sunday league version😅 Don't forget to subscribe and help us reach our goal of 10K subscribers!🦍💜 Follow us on Instagram: @thewallfc Email us: thewallfc@thewallofcomedy.com Owned by: @WallofComedy Produced by Percelle Ascott and Jerome Wade Production Assistant: Patience Mutanda Edited by: Jordan Wade Graphic Designer: Jordan Wade & Che Martin DOP: Jordan Wade Music by: @JY_MNTL Instrumentals by: @ProdHurtz & Epidemic Sound __ The Wall FC is a newly created Sunday League football team, following the club on their journey, season to season in their quest to lift the most wanted trophies in Grassroots Football Instagram: https://instagram.com/thewallfc Twitter:https://twitter.com/officialwallfc TikTok: @thewallfc #sundayleaguefootball #grassrootsfootball #football #soccer #sundayleague
    https://wn.com/The_Wall_V_Psg_|_The_Sunday_League_Version_|_Pre_Season_|_S4._Ep_1
    The Nostalgia Critic and The Wall
    48:06

    The Nostalgia Critic and The Wall

    • Order:
    • Duration: 48:06
    • Uploaded Date: 13 Apr 2021
    • views: 3947184
    Clickbait Title: I remember it so you don't have to. Mild flashing effects in the last 40s. "Pink Floyd - The Wall" deals with mature subject matter and contains intense imagery some viewers may find distressing. As a full disclosure, I was briefly a contributor to Channel Awesome for about six months in 2014/15. Channel Awesome CEO Mike Michaud severed the relationship after he received angry emails about an exposé of 8chan I had published on Medium and I refused to take it down or commit to not doing "anything else like that." Several of the songs are a roundabout veiled reference to #ChangeTheChannel, a hashtag that gained some traction in the spring of 2018 as contributors and former contributors to Channel Awesome spilled all the beans about CA's incompetence and mismanagement. What started as a bunch of people sharing stories about how the scheduling page never worked right escalated to Channel Awesome leadership releasing a counterattack letter in which they inadvertently admitted to covering for a sex predator. Fantano (who I stole two lines from): https://www.youtube.com/watch?v=OEbf8YhTWEo Ms. Lola: https://www.youtube.com/watch?v=QgGZmwGUIJ4 JAR Media: https://www.youtube.com/watch?v=uKmLEwyWDkw Written and performed by Dan Olson Crowdfunding: https://www.patreon.com/foldablehuman Twitter: https://twitter.com/FoldableHuman 0:00 - The Wall 7:37 - Doug 19:13 - We Need More Victimization 25:51 - So Long, Weird Song 33:34 - Comfortably Dumb 34:48 - It's not that vague, Doug 38:44 - The Trial
    https://wn.com/The_Nostalgia_Critic_And_The_Wall
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album)1979
      1:21:09
      P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album)1979remove from playlist
    • Pink Floyd -
      6:37
      Pink Floyd - "Another Brick in The Wall " PULSE Remastered 2019remove from playlist
    • pink floyd - another brick in the wall
      3:50
      pink floyd - another brick in the wallremove from playlist
    • Pink Floyd - The Wall
      1:39:41
      Pink Floyd - The Wall "Full Movie" 1982 - Bonus original clip "Hey you" (Remastered)remove from playlist
    • the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク)
      4:00
      the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク)remove from playlist
    • THE WALL v AFC HAMMERSMITH | A TYPICAL SUNDAY REFEREE | SUNDAY FOOTBALL LEAGUE MATCH #1 | S4. EP 2
      28:56
      THE WALL v AFC HAMMERSMITH | A TYPICAL SUNDAY REFEREE | SUNDAY FOOTBALL LEAGUE MATCH #1 | S4. EP 2remove from playlist
    • Pink Floyd - The Wall [Full Album]
      1:21:34
      Pink Floyd - The Wall [Full Album]remove from playlist
    • THE WALL v PSG | THE SUNDAY LEAGUE VERSION | PRE-SEASON | S4. EP 1
      22:28
      THE WALL v PSG | THE SUNDAY LEAGUE VERSION | PRE-SEASON | S4. EP 1remove from playlist
    • The Nostalgia Critic and The Wall
      48:06
      The Nostalgia Critic and The Wallremove from playlist
    PLAYLIST TIME:

    P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album)1979

    https://www.youtube.com/watch?v=PzrPx_KeeZ8 Please see the old rock music aggregate all time
    1:21:09
    P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album)1979
    https://www.youtube.com/watch?v=PzrPx_KeeZ8 Please see the old rock music aggregate all ti...
    published: 15 Jan 2021
    Play in Full Screen
    6:37
    Pink Floyd - "Another Brick in The Wall " PULSE Remastered 2019
    Pink Floyd concert video taken from the 20 October 1994 concert at Earls Court, London, En...
    published: 07 Feb 2020
    Play in Full Screen
    3:50
    pink floyd - another brick in the wall
    espandi per vedere il testo: We don't need no education. We don't need no thought contro...
    published: 06 Nov 2010
    Play in Full Screen
    1:39:41
    Pink Floyd - The Wall "Full Movie" 1982 - Bonus original clip "Hey you" (Remastered)
    Pelicula lanzada el 23 de mayo de 1982 dirigida por el director británico Alan Parker y ba...
    published: 17 Aug 2022
    Play in Full Screen
    1:23:02
    P̲ink Flo̲yd - T̲h̲e̲ W̲a̲l̲l̲ (Full Album) 1979
    published: 12 Mar 2021
    Play in Full Screen
    4:00
    the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森志歩 & 初音ミク)
    Provided to YouTube by CRYPTON FUTURE MEDIA, INC the WALL (feat. 星乃一歌 & 天馬咲希 & 望月穂波 & 日野森...
    published: 29 Aug 2023
    Play in Full Screen
    28:56
    THE WALL v AFC HAMMERSMITH | A TYPICAL SUNDAY REFEREE | SUNDAY FOOTBALL LEAGUE MATCH #1 | S4. EP 2
    #TheWallFC​ ⚽🦍💜 The boys carry on with Season 4 as we take on new comers to the league A...
    published: 17 Sep 2023
    Play in Full Screen
    1:21:34
    Pink Floyd - The Wall [Full Album]
    The Wall by Pink Floyd Year: 1979 Label: Toshiba-EMI TOCP-65742~3, Japan (2001) CD1: 00...
    published: 11 Nov 2014
    Play in Full Screen
    22:28
    THE WALL v PSG | THE SUNDAY LEAGUE VERSION | PRE-SEASON | S4. EP 1
    #TheWallFC​ ⚽🦍💜 Season 4 begins with Pre-season! We take on PSG...the Sunday league vers...
    published: 10 Sep 2023
    Play in Full Screen
    48:06
    The Nostalgia Critic and The Wall
    Clickbait Title: I remember it so you don't have to. Mild flashing effects in the last 40...
    published: 13 Apr 2021
    Play in Full Screen

    The Wall

    The Wall is the eleventh studio album by the English progressive rock band Pink Floyd. It is the last studio album released with the classic lineup of guitarist David Gilmour, bassist/lyricist Roger Waters, keyboardist Richard Wright and drummer Nick Mason before Wright left the band. Released as a double album on 30 November 1979, it was supported by a tour with elaborate theatrical effects, and adapted into a 1982 feature film, Pink Floyd – The Wall. The album features the band's only number one single; "Another Brick in the Wall Part 2".

    As with Pink Floyd's previous three albums, The Wall is a concept album and explores themes of abandonment and personal isolation. The album is a rock opera that follows Pink, a character whom Waters modelled after himself and the band's original leader, Syd Barrett. Pink's life begins with the loss of his father during the Second World War and continues with abuse from his schoolteachers, an overprotective mother, and the breakdown of his marriage; all contribute to his eventual self-imposed isolation from society, represented by a metaphorical wall. Waters conceived the album during Pink Floyd's 1977 In the Flesh Tour, when his frustration with the audience became so acute that he imagined a wall between the audience and the stage.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: the wall

    Edit

    Tyler Callihan injury update: Reds OF collides with wall, suffers gruesome injury vs. Braves

    Sportingnews 06 May 2025
    In the third inning, he was chasing a line drive toward the wall and collided with it ... It looked like he had caught it, but he disappeared out of the camera's view when he got close to the wall.
    Edit

    Horrifying injuries revealed after Pirates fan fell 21ft from outfield wall and was left in ...

    The Daily Mail 06 May 2025
    As the Pirates faced the Cubs last Wednesday, the shirtless 20-year-old former college football player fell from atop the wall in right field - known by fans as the 'Clemente Wall' ... the warning track.
    Edit

    $12.5 million hotel repair project in Portland building permits | May 5, 2025

    DJC Oregon 06 May 2025
    The work would include replacing walls, ceiling gypsum board and doors ... The interior will gain steam boilers, a hot ... Work on the south elevation will involve infilling the wall and installing a louver.
    Edit

    Reds rookie Tyler Callihan injures arm trying for catch on inside-the-park home run

    Beaumont Enterprise 06 May 2025
    After he hit the wall, the ball fell out of Callihan’s glove as he rolled onto his back in pain and grabbed ...
    Edit

    Here's what Marvin Davis was served as Northwood's coach before heading to Airline

    Shreveport Times 06 May 2025
    Northwood principal Shannon Wall was busy cooking food Monday evening for the boys basketball team which will soon be without a coach ... Wall fed about 45 people for around $300, saving the program and the school a ton of money.
    Edit

    Pete Hegseth’s Signal Addiction Goes Way Deeper Than We Knew

    The Daily Beast 06 May 2025
    The Defense Secretary used the encrypted messaging app at least a dozen times for official Pentagon business, according to a report in The Wall Street Journal ... Read it at The Wall Street Journal. Read more at The Daily Beast.
    Edit

    Ghaziabad: FIR against high-rise developer after digging work causes city drain to breach

    Hindustan Times 06 May 2025
    “The ... “The wall was already slated to be repaired by authorities in some time. The massive rainfall also led to the wall giving way under the ever-increasing water pressure,” the statement added.
    Edit

    Ohtani and Freeman homer off Alcántara as Dodgers beat Marlins

    Sun Sentinel 06 May 2025
    The 402-foot blast over the wall in center was Freeman’s 41st career homer against Miami, tying him for first by a Marlins opponent with Ryan Howard and Ryan Zimmerman. Ohtani padded the lead with his ...
    Edit

    In doubleheader sweep of Mets, Cardinals had these 5 key contributions in Game 2

    Journal Gazette 06 May 2025
    “I kind of have an idea of where that ball is hit, so I put my head down and get to a spot, get to the wall, and try to make sure that I don't jump into the wall as I'm jumping because I've done that before,” Scott said.
    Edit

    Wall Street loses ground, breaking a 9-day winning streak, and crude oil prices tumble

    The Oskaloosa Herald 06 May 2025
    Stocks closed lower on Wall Street, breaking a nine-day winning streak. Crude prices fell to a four-year low Monday after the OPEC+ group of oil-producing nations said it plans to increase output. The S&P 500 slid 0.6%. The Dow Jones ... .
    Edit

    Berkshire Hathaway stock opens slightly down as Wall Street reacts to Buffett plans to step down

    Lincoln Journal Star 06 May 2025
    Wall Street’s reaction seemed somewhat muted to Warren Buffett’s plans to step aside as CEO of Berkshire Hathaway, the company’s stock down moderately when the market opened Monday morning ... .
    Edit

    Violent wind storm causes significant damage, knocks out power in Caribou County

    Idaho State Journal 06 May 2025
    An intense wind storm wreaked havoc on much of Caribou County Sunday afternoon, tossing trampolines into power lines and causing the partial collapse of both a church roof and plumbing business wall, authorities said ... .
    Edit

    Milken crowd warms up to tariffs while condemning all the chaos

    The Eagle-Tribune 06 May 2025
    LOS ANGELES — Scott Bessent walked on stage at the largest gathering in months of Wall Street’s champions of global trade, aiming to explain why President Donald Trump is putting up hurdles to global trade ... .
    Edit

    National Health Investors: Q1 Earnings Snapshot

    The Greeneville Sun 06 May 2025
    MURFREESBORO, Tenn. (AP) — MURFREESBORO, Tenn. (AP) — National Health Investors Inc. (NHI) on Monday reported a key measure of profitability in its first quarter. The results topped Wall Street expectations ....
    Edit

    How major US stock indexes fared Friday, 5/5/2025

    The Daily Journal - San Mateo 06 May 2025
    Stocks closed lower on Wall Street, breaking a nine-day winning streak. Crude prices fell to a four-year low Monday after the OPEC+ group of oil-producing nations said it plans to increase output. The S&P 500 slid 0.6%. The Dow Jones ... .
    ×