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

Peter Jackson

Sir Peter Robert Jackson ONZ KNZM (born 31 October 1961) is a New Zealand filmmaker and screenwriter. He is best known as the director, writer and producer of The Lord of the Rings trilogy (2001–03) and The Hobbit trilogy (2012–14), both of which are adapted from the novels of the same name by J. R. R. Tolkien. Other notable films include the drama Heavenly Creatures (1994), the mockumentary Forgotten Silver (1995), the horror comedy The Frighteners (1996), the epic monster film King Kong (2005) and the supernatural drama film The Lovely Bones (2009). He also produced District 9 (2009), The Adventures of Tintin: The Secret of the Unicorn (2011) and the documentary West of Memphis (2012).

Jackson began his career with the "splatstick" horror comedy Bad Taste (1987) and the black comedy Meet the Feebles (1989) before filming the zombie comedy Braindead (1992). He shared a nomination for Academy Award for Best Original Screenplay with his partner Fran Walsh for Heavenly Creatures, which brought him to mainstream prominence in the film industry. Jackson has been awarded three Academy Awards in his career, including the award for Best Director in 2003. He has also received a Golden Globe, four Saturn Awards and three BAFTAs amongst others.

Peter Jackson (academic)

Peter Jackson is an Australian writer and scholar of Buddhism and gender and sexual identities in Thailand. He completed his PhD in Philosophy and Asian Studies at the Australian National University, Canberra in 1986. His PhD dissertation, which is published under the title Buddhadasa: A Buddhist Thinker for the Modern World (1988) reflects his interests in the Thai language, the role of Buddhist thought, and the institution of the sangha in modern Thailand.

Jackson was a Senior Project Officer for the Thai National Curriculum and Materials with the Australian Capital Territory Schools Authority. He is currently a Professor of Thai history in the School of Culture, History and Language, at the Australian National University. He currently holds an Australian Research Council Discovery Grant for the project “Critical Thought in Thailand After Marxism” and is consultant for the “Cultural Pluralism and Sexual Diversity in Thailand” project at the Princess Maha Chakri Sirindhorn Anthropology Centre in Bangkok. His current book project is titled Queer Sex and Identity in Thai History.

Peter Jackson (cricketer)

Percy Frederick Jackson (11 May 1911 27 April 1999) was a Scottish born English cricketer for Worcestershire County Cricket Club. He bowled offspin and was also known to take the new ball and bowl medium-paced outswingers. Jackson took 1159 first-class wickets at 26.31 and was a genuine tailender with a highest score of just 40 from his 549 innings.

Jackson holds the record for the most ducks in a season for Worcestershire, being dismissed for nought on no fewer than 16 occasions in 1935.

Notes

External links

  • Player profile: Peter Jackson from ESPNcricinfo
  • Peter Jackson (politician)

    Peter Michael Jackson (born 14 October 1928) is a retired British Labour Party politician.

    At the 1966 general election, he was elected as Member of Parliament for the High Peak constituency in Derbyshire. He sat in the House of Commons for only four years, losing his seat at the 1970 general election, to the Conservative Spencer Le Marchant.

    References

  • Leigh Rayment's Historical List of MPs
  • External links

  • Hansard 1803–2005: contributions in Parliament by Peter Jackson

  • Peter Jackson (table tennis)

    Peter Jackson (born 22 October 1964) is a table tennis player representative of New Zealand. He competed in three Summer Olympics and two Commonwealth Games, winning a bronze medal at 2002 Commonwealth Games.

    Career

    Jackson was born in Papakura, New Zealand. His first Olympic participation came in 1988 in Seoul. Here, he competed in the men's doubles event, but as the team only won one match and lost six in the preliminary round, they were eliminated from the competition on an early stage. At the 1992 Summer Olympics in Barcelona, Jackson competed in both the men's doubles and singles events. In the doubles event, the team placed fourth in the group stage after losing all matches, and in the singles event, he placed third in his group after winning one match and losing two. Neither placement was good enough to advance. At the 1996 Summer Olympics in Atlanta, Georgia Jackson participated as an official.

    His last Olympic participation came at the 2000 Summer Olympics in Sydney. Here he only competed in the singles event, but failed to advance after losing two matches. Then, at the 2002 Commonwealth Games he won a bronze medal in the mixed doubles event partnering Chunli Li. He also competed in the men's doubles and singles events without the same success, reaching the round of 32 in the singles and the quarterfinal in the doubles. At the 2006 Commonwealth Games he competed in both singles, doubles, mixed doubles and the team event.

    Peter Jackson (scientist)

    Peter Eric Jackson was Chief Scientist and head of R&D at Thomson Reuters. He was born in 1949 in Bridgetown, Barbados, and graduated from Leeds University, UK, with a Ph.D. in Artificial Intelligence. He died August 3, 2011, aged 62, at home in Burnsville, Minnesota, USA.

    Publications

  • Introduction to Expert Systems, Addison Wesley (1986, 1992, 1999)
  • Logic-Based Knowledge Representation, MIT Press (1989)
  • Natural Language Processing for Online Applications, John Benjamins (2002, 2007)
  • References

  • Peter Jackson, Thomson Reuters.
  • Dr. Peter Eric Jackson obituary, Star Tribune.
  • External links

  • Official website
  • Thomson Reuters' Brain, Twin Cities Business, November 2009.

  • Podcasts:

    Peter Jackson

    ALBUMS

    Pete Jackson

    ALBUMS

    Peter Jackson

    ALBUMS

    Peter Jackson

    ALBUMS

    Peter Jackson

    ALBUMS

    • What Happened to Peter Jackson?

      Peter Jackson has had an interesting career post-Lord of the Rings, but not the one many expected him to have. So what happened? In this video, I go over why he didn't become the next James Cameron or Spielberg. Music by Epidemic Sound (http://www.epidemicsound.com) Follow me on Twitter: https://twitter.com/midnightcap Follow me on Facebook: https://www.facebook.com/midnightcap Special thanks to Andrew Elliott (Stalli111: https://www.youtube.com/user/Stalli111 ) for editing this video

      published: 19 Jan 2024
    • What Is Peter Jackson's Favorite "LOTR" Scene? Stephen Gets The Answer

      In this brand new footage from Stephen Colbert's interview with Peter Jackson, the director talks about his favorite "Lord Of The Rings" scenes, how they shot those epic battles and even apologizes to Prime Minister Jacinda Ardern for not casting her in the movies. #PeterJackson #LordOfTheRings #NewZealand Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Follow "The Late Show" on Instagram HERE: http://bit.ly/29wfREj Follow ...

      published: 12 Dec 2020
    • ALL Peter Jackson Movie Cameos

      DEAD ALIVE/BRAINDEAD (1992) THE FRIGHTENERS (1996) THE LORD OF THE RINGS: THE FELLOWSHIP OF THE RING (2001) THE LORD OF THE RINGS: THE TWO TOWERS (2002) THE LORD OF THE RINGS: THE RETURN OF THE KING (2003) KING KONG (2005) HOT FUZZ (2007) THE LOVELY BONES (2009) THE HOBBIT: AN UNEXPECTED JOURNEY (2012) THE HOBBIT: THE DESOLATION OF SMAUG (2013) THE HOBBIT: THE BATTLE OF THE FIVE ARMIES (2014)

      published: 12 Nov 2017
    • How Peter Jackson FOOLED an Entire Country

      Before The Lord of the Rings Peter Jackson made Forgotten Silver – a documentary about long-lost New Zealand film-maker Colin Mackenzie. Unlike Peter Jackson’s Beatles and war documentaries, when Forgotten Silver aired in New Zealand in 1995, it triggered a national outrage. This video essay looks at this key part of Peter Jackson’s filmography from before The Lord of the Rings, The Hobbit, King Kong and Bad Taste, that has mostly been forgotten. You can watch Forgotten Silver legally here: https://vimeo.com/ondemand/forgottensilver 🔵 𝗦𝘂𝗽𝗽𝗼𝗿𝘁 𝗣𝗲𝗻𝘁𝗲𝘅 𝗼𝗻 𝗣𝗮𝘁𝗿𝗲𝗼𝗻 𝗳𝗼𝗿 𝗯𝗼𝗻𝘂𝘀 𝘃𝗶𝗱𝗲𝗼𝘀 𝗮𝗻𝗱 𝗺𝗼𝗿𝗲: https://www.patreon.com/pentexproductions 🔵 🔵 𝗧𝗵𝗮𝗻𝗸𝘀 𝘁𝗼 𝗺𝘆 𝗣𝗮𝘁𝗿𝗼𝗻𝘀 𝘄𝗵𝗼 𝗺𝗮𝗸𝗲 𝘁𝗵𝗶𝘀 𝗮𝗹𝗹 𝗽𝗼𝘀𝘀𝗶𝗯𝗹𝗲 🔵 - Owen D-J (⭐ FOUNDING PATRON ⭐) - nrk (⭐ FOUNDING PATRON ⭐) - Ronja Jonasson - TriggerHappyBro - Borg...

      published: 10 Jun 2024
    • THE HOBBIT, Production Diary 1

      Peter Jackson takes you behind the scenes of the making of THE HOBBIT.

      published: 23 May 2012
    • Peter Jackson & Co Explain Where The Hobbit Went Wrong

      Peter Jackson and others involved in the creation of the original Lord of the Rings films explain the ideologies behind the adaptation of Tolkien's classic work. Unfortunately, it seems the same principles don't seem to carry through to these new Hobbit films (albeit with some exceptions).

      published: 02 May 2014
    • Peter Jackson interview on "The Lord of the Rings" (2002)

      Director Peter Jackson recounts the process of financing, casting, shooting, and editing "The Lord of the Rings." Check out these Peter Jackson books on Amazon! "Peter Jackson and the Making of Middle-Earth": https://amzn.to/314rEA5 "Peter Jackson: A Filmmaker’s Journey": https://amzn.to/2ZJQnxg "Tolkien on Film: Essays on Peter Jackson's the Lord of the Rings": https://amzn.to/316SkAf Join us on Patreon! https://www.patreon.com/ManufacturingIntellect Donate Crypto! https://commerce.coinbase.com/checkout/868d67d2-1628-44a8-b8dc-8f9616d62259 Share this video! Get Two Books FREE with a Free Audible Trial: https://amzn.to/2LBdkZl Checking out the affiliate links above helps me bring even more high quality videos by earning me a small commission! And if you have any suggestions for future ...

      published: 17 Nov 2016
    • Peter Jackson wins Best Director -The Lord of the Rings: The Return of the King | 76th Oscars (2004)

      Tom Cruise presenting Peter Jackson with the Oscar® for Directing "The Lord of the Rings: The Return of the King" at the 76th Annual Academy Awards® in 2004. Subscribe for more videos ►► http://osca.rs/subscribeyt #Oscars #BestDirector #PeterJackson #TheLordoftheRings #thereturnoftheking #LOTR #academyawards #movies #filmmaking

      published: 04 Jan 2010
    • Peter Jackson being iconic for 23 seconds straight

      clips of Peter Jackson as Gratuitous of Cameo in "The Lord of the Rings series, the Hobbit: the Desolation of Smaug's 'the Lake-town spy' is Darrylgorn: in Darrylgorn's Rising: the Rise of Darrylgorn" where he references Star Wars and Harry Potter.

      published: 14 Dec 2023
    • John Rhys-Davies PRANK on Peter Jackson (Gimli funny Behind the Scenes)

      On the set of The Lord of the Rings, John Rhys-Davies (Gimli) played a prank on director Peter Jackson. John is missing the tip of his middle finger. He and the makeup team created a fake injury with the prosthetic, adding blood to make it look real. When John Rhys-Davies showed Jackson the "injury," Jackson panicked and called for a medic, only to realize it was a prank when everyone started laughing. This prank exemplifies the fun and camaraderie among the cast and crew, contributing to the success of the movies!

      published: 17 Jun 2024
    developed with YouTube
    What Happened to Peter Jackson?
    10:10

    What Happened to Peter Jackson?

    • Order:
    • Duration: 10:10
    • Uploaded Date: 19 Jan 2024
    • views: 350412
    Peter Jackson has had an interesting career post-Lord of the Rings, but not the one many expected him to have. So what happened? In this video, I go over why he didn't become the next James Cameron or Spielberg. Music by Epidemic Sound (http://www.epidemicsound.com) Follow me on Twitter: https://twitter.com/midnightcap Follow me on Facebook: https://www.facebook.com/midnightcap Special thanks to Andrew Elliott (Stalli111: https://www.youtube.com/user/Stalli111 ) for editing this video
    https://wn.com/What_Happened_To_Peter_Jackson
    What Is Peter Jackson's Favorite "LOTR" Scene? Stephen Gets The Answer
    7:04

    What Is Peter Jackson's Favorite "LOTR" Scene? Stephen Gets The Answer

    • Order:
    • Duration: 7:04
    • Uploaded Date: 12 Dec 2020
    • views: 1859159
    In this brand new footage from Stephen Colbert's interview with Peter Jackson, the director talks about his favorite "Lord Of The Rings" scenes, how they shot those epic battles and even apologizes to Prime Minister Jacinda Ardern for not casting her in the movies. #PeterJackson #LordOfTheRings #NewZealand Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Follow "The Late Show" on Instagram HERE: http://bit.ly/29wfREj Follow "The Late Show" on Tumblr HERE: http://bit.ly/29DVvtR Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. Get the CBS app for iPhone & iPad! Click HERE: http://bit.ly/12rLxge Get new episodes of shows you love across devices the next day, stream live TV, and watch full seasons of CBS fan favorites anytime, anywhere with CBS All Access. Try it free! http://bit.ly/1OQA29B --- The Late Show with Stephen Colbert is the premier late night talk show on CBS, airing at 11:35pm EST, streaming online via CBS All Access, and delivered to the International Space Station on a USB drive taped to a weather balloon. Every night, viewers can expect: Comedy, humor, funny moments, witty interviews, celebrities, famous people, movie stars, bits, humorous celebrities doing bits, funny celebs, big group photos of every star from Hollywood, even the reclusive ones, plus also jokes.
    https://wn.com/What_Is_Peter_Jackson's_Favorite_Lotr_Scene_Stephen_Gets_The_Answer
    ALL Peter Jackson Movie Cameos
    4:19

    ALL Peter Jackson Movie Cameos

    • Order:
    • Duration: 4:19
    • Uploaded Date: 12 Nov 2017
    • views: 561051
    DEAD ALIVE/BRAINDEAD (1992) THE FRIGHTENERS (1996) THE LORD OF THE RINGS: THE FELLOWSHIP OF THE RING (2001) THE LORD OF THE RINGS: THE TWO TOWERS (2002) THE LORD OF THE RINGS: THE RETURN OF THE KING (2003) KING KONG (2005) HOT FUZZ (2007) THE LOVELY BONES (2009) THE HOBBIT: AN UNEXPECTED JOURNEY (2012) THE HOBBIT: THE DESOLATION OF SMAUG (2013) THE HOBBIT: THE BATTLE OF THE FIVE ARMIES (2014)
    https://wn.com/All_Peter_Jackson_Movie_Cameos
    How Peter Jackson FOOLED an Entire Country
    19:50

    How Peter Jackson FOOLED an Entire Country

    • Order:
    • Duration: 19:50
    • Uploaded Date: 10 Jun 2024
    • views: 253446
    Before The Lord of the Rings Peter Jackson made Forgotten Silver – a documentary about long-lost New Zealand film-maker Colin Mackenzie. Unlike Peter Jackson’s Beatles and war documentaries, when Forgotten Silver aired in New Zealand in 1995, it triggered a national outrage. This video essay looks at this key part of Peter Jackson’s filmography from before The Lord of the Rings, The Hobbit, King Kong and Bad Taste, that has mostly been forgotten. You can watch Forgotten Silver legally here: https://vimeo.com/ondemand/forgottensilver 🔵 𝗦𝘂𝗽𝗽𝗼𝗿𝘁 𝗣𝗲𝗻𝘁𝗲𝘅 𝗼𝗻 𝗣𝗮𝘁𝗿𝗲𝗼𝗻 𝗳𝗼𝗿 𝗯𝗼𝗻𝘂𝘀 𝘃𝗶𝗱𝗲𝗼𝘀 𝗮𝗻𝗱 𝗺𝗼𝗿𝗲: https://www.patreon.com/pentexproductions 🔵 🔵 𝗧𝗵𝗮𝗻𝗸𝘀 𝘁𝗼 𝗺𝘆 𝗣𝗮𝘁𝗿𝗼𝗻𝘀 𝘄𝗵𝗼 𝗺𝗮𝗸𝗲 𝘁𝗵𝗶𝘀 𝗮𝗹𝗹 𝗽𝗼𝘀𝘀𝗶𝗯𝗹𝗲 🔵 - Owen D-J (⭐ FOUNDING PATRON ⭐) - nrk (⭐ FOUNDING PATRON ⭐) - Ronja Jonasson - TriggerHappyBro - Borge - Joe - Ahmed Roshdi - Paul G - Everyone at the Four Dollar Shake tier. 𝗙𝗢𝗟𝗟𝗢𝗪 𝗣𝗘𝗡𝗧𝗘𝗫 𝗢𝗡 𝗘𝗩𝗘𝗥𝗬𝗧𝗛𝗜𝗡𝗚, 𝗘𝗩𝗘𝗥𝗬𝗪𝗛𝗘𝗥𝗘, 𝗔𝗟𝗟 𝗔𝗧 𝗢𝗡𝗖𝗘 ☑️ Buy me a coffee: https://ko-fi.com/pentexproductions ☑️ Twitter https://twitter.com/PentexP (mostly for James Bond chat) ☑️ Letterboxd https://letterboxd.com/PentexPenguin (to prove I watch other movies besides LOTR and James Bond) ☑️ Instagram https://www.instagram.com/pentexfromyoutube/ (for brief movie reviews, and wider channel updates) 𝗦𝗢𝗨𝗥𝗖𝗘𝗦 Behind the Bull – NZ on Screen - https://www.nzonscreen.com/title/behind-the-bull-2000 Ian Nathan, ‘Peter Jackson: A Film-maker's Journey’, 2006 Scott Wilson, ‘Aching to Believe: The Heresy of Forgotten Silver,’ in C.J. Miller (Ed.), Too Bold for the Box Office: The Mockumentary from Big Screen to Small, 2012 Forgotten Silver remembered 20 years on, Stuff.co.nz article by James Croot, 28 Oct 2015 Television: Throwback Thursday – How Peter Jackson’s TV Special Pranked All of Middle Earth, Spinoff.co.nz article by Aaron Yap Faking it: Mock-documentary and the subversion of factuality, by Jane Roscoe and Craig Hight, 2018 Country Calendar Spoofs - https://www.nzonscreen.com/title/country-calendar-spoof-special-1999?collection=fools-gold 𝗠𝗨𝗦𝗜𝗖 🎵 Snowy Peaks pt I – Chris Haugen - YouTube Audio Library 🎵 Icelandic Arpeggios – DivKid – YouTube Audio Library 🎵 Auckland – VYEN – YouTube Audio Library 🎵 Straight - Bensound.com/free-music-for-videos License code: XJSLTGA6OLEW1BJK #peterjackson #documentary #lotr
    https://wn.com/How_Peter_Jackson_Fooled_An_Entire_Country
    THE HOBBIT, Production Diary 1
    10:31

    THE HOBBIT, Production Diary 1

    • Order:
    • Duration: 10:31
    • Uploaded Date: 23 May 2012
    • views: 1405779
    Peter Jackson takes you behind the scenes of the making of THE HOBBIT.
    https://wn.com/The_Hobbit,_Production_Diary_1
    Peter Jackson & Co Explain Where The Hobbit Went Wrong
    2:10

    Peter Jackson & Co Explain Where The Hobbit Went Wrong

    • Order:
    • Duration: 2:10
    • Uploaded Date: 02 May 2014
    • views: 45060
    Peter Jackson and others involved in the creation of the original Lord of the Rings films explain the ideologies behind the adaptation of Tolkien's classic work. Unfortunately, it seems the same principles don't seem to carry through to these new Hobbit films (albeit with some exceptions).
    https://wn.com/Peter_Jackson_Co_Explain_Where_The_Hobbit_Went_Wrong
    Peter Jackson interview on "The Lord of the Rings" (2002)
    51:21

    Peter Jackson interview on "The Lord of the Rings" (2002)

    • Order:
    • Duration: 51:21
    • Uploaded Date: 17 Nov 2016
    • views: 590781
    Director Peter Jackson recounts the process of financing, casting, shooting, and editing "The Lord of the Rings." Check out these Peter Jackson books on Amazon! "Peter Jackson and the Making of Middle-Earth": https://amzn.to/314rEA5 "Peter Jackson: A Filmmaker’s Journey": https://amzn.to/2ZJQnxg "Tolkien on Film: Essays on Peter Jackson's the Lord of the Rings": https://amzn.to/316SkAf Join us on Patreon! https://www.patreon.com/ManufacturingIntellect Donate Crypto! https://commerce.coinbase.com/checkout/868d67d2-1628-44a8-b8dc-8f9616d62259 Share this video! Get Two Books FREE with a Free Audible Trial: https://amzn.to/2LBdkZl Checking out the affiliate links above helps me bring even more high quality videos by earning me a small commission! And if you have any suggestions for future content, make sure to subscribe on the Patreon page. Thank you for your support!
    https://wn.com/Peter_Jackson_Interview_On_The_Lord_Of_The_Rings_(2002)
    Peter Jackson wins Best Director -The Lord of the Rings: The Return of the King | 76th Oscars (2004)
    2:57

    Peter Jackson wins Best Director -The Lord of the Rings: The Return of the King | 76th Oscars (2004)

    • Order:
    • Duration: 2:57
    • Uploaded Date: 04 Jan 2010
    • views: 1024867
    Tom Cruise presenting Peter Jackson with the Oscar® for Directing "The Lord of the Rings: The Return of the King" at the 76th Annual Academy Awards® in 2004. Subscribe for more videos ►► http://osca.rs/subscribeyt #Oscars #BestDirector #PeterJackson #TheLordoftheRings #thereturnoftheking #LOTR #academyawards #movies #filmmaking
    https://wn.com/Peter_Jackson_Wins_Best_Director_The_Lord_Of_The_Rings_The_Return_Of_The_King_|_76Th_Oscars_(2004)
    Peter Jackson being iconic for 23 seconds straight
    0:23

    Peter Jackson being iconic for 23 seconds straight

    • Order:
    • Duration: 0:23
    • Uploaded Date: 14 Dec 2023
    • views: 236493
    clips of Peter Jackson as Gratuitous of Cameo in "The Lord of the Rings series, the Hobbit: the Desolation of Smaug's 'the Lake-town spy' is Darrylgorn: in Darrylgorn's Rising: the Rise of Darrylgorn" where he references Star Wars and Harry Potter.
    https://wn.com/Peter_Jackson_Being_Iconic_For_23_Seconds_Straight
    John Rhys-Davies PRANK on Peter Jackson (Gimli funny Behind the Scenes)
    1:20

    John Rhys-Davies PRANK on Peter Jackson (Gimli funny Behind the Scenes)

    • Order:
    • Duration: 1:20
    • Uploaded Date: 17 Jun 2024
    • views: 132511
    On the set of The Lord of the Rings, John Rhys-Davies (Gimli) played a prank on director Peter Jackson. John is missing the tip of his middle finger. He and the makeup team created a fake injury with the prosthetic, adding blood to make it look real. When John Rhys-Davies showed Jackson the "injury," Jackson panicked and called for a medic, only to realize it was a prank when everyone started laughing. This prank exemplifies the fun and camaraderie among the cast and crew, contributing to the success of the movies!
    https://wn.com/John_Rhys_Davies_Prank_On_Peter_Jackson_(Gimli_Funny_Behind_The_Scenes)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • What Happened to Peter Jackson?
      10:10
      What Happened to Peter Jackson?remove from playlist
    • What Is Peter Jackson's Favorite
      7:04
      What Is Peter Jackson's Favorite "LOTR" Scene? Stephen Gets The Answerremove from playlist
    • ALL Peter Jackson Movie Cameos
      4:19
      ALL Peter Jackson Movie Cameosremove from playlist
    • How Peter Jackson FOOLED an Entire Country
      19:50
      How Peter Jackson FOOLED an Entire Countryremove from playlist
    • THE HOBBIT, Production Diary 1
      10:31
      THE HOBBIT, Production Diary 1remove from playlist
    • Peter Jackson & Co Explain Where The Hobbit Went Wrong
      2:10
      Peter Jackson & Co Explain Where The Hobbit Went Wrongremove from playlist
    • Peter Jackson interview on
      51:21
      Peter Jackson interview on "The Lord of the Rings" (2002)remove from playlist
    • Peter Jackson wins Best Director -The Lord of the Rings: The Return of the King | 76th Oscars (2004)
      2:57
      Peter Jackson wins Best Director -The Lord of the Rings: The Return of the King | 76th Oscars (2004)remove from playlist
    • Peter Jackson being iconic for 23 seconds straight
      0:23
      Peter Jackson being iconic for 23 seconds straightremove from playlist
    • John Rhys-Davies PRANK on Peter Jackson (Gimli funny Behind the Scenes)
      1:20
      John Rhys-Davies PRANK on Peter Jackson (Gimli funny Behind the Scenes)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    What Happened to Peter Jackson?

    Peter Jackson has had an interesting career post-Lord of the Rings, but not the one many expected him to have. So what happened? In this video, I go over why he didn't become the next James Cameron or Spielberg. Music by Epidemic Sound (http://www.epidemicsound.com) Follow me on Twitter: https://twitter.com/midnightcap Follow me on Facebook: https://www.facebook.com/midnightcap Special thanks to Andrew Elliott (Stalli111: https://www.youtube.com/user/Stalli111 ) for editing this video
    10:10
    What Happened to Peter Jackson?
    Peter Jackson has had an interesting career post-Lord of the Rings, but not the one many e...
    published: 19 Jan 2024
    Play in Full Screen
    7:04
    What Is Peter Jackson's Favorite "LOTR" Scene? Stephen Gets The Answer
    In this brand new footage from Stephen Colbert's interview with Peter Jackson, the directo...
    published: 12 Dec 2020
    Play in Full Screen
    4:19
    ALL Peter Jackson Movie Cameos
    DEAD ALIVE/BRAINDEAD (1992) THE FRIGHTENERS (1996) THE LORD OF THE RINGS: THE FELLOWSHIP O...
    published: 12 Nov 2017
    Play in Full Screen
    19:50
    How Peter Jackson FOOLED an Entire Country
    Before The Lord of the Rings Peter Jackson made Forgotten Silver – a documentary about lon...
    published: 10 Jun 2024
    Play in Full Screen
    10:31
    THE HOBBIT, Production Diary 1
    Peter Jackson takes you behind the scenes of the making of THE HOBBIT.
    published: 23 May 2012
    Play in Full Screen
    2:10
    Peter Jackson & Co Explain Where The Hobbit Went Wrong
    Peter Jackson and others involved in the creation of the original Lord of the Rings films ...
    published: 02 May 2014
    Play in Full Screen
    51:21
    Peter Jackson interview on "The Lord of the Rings" (2002)
    Director Peter Jackson recounts the process of financing, casting, shooting, and editing "...
    published: 17 Nov 2016
    Play in Full Screen
    2:57
    Peter Jackson wins Best Director -The Lord of the Rings: The Return of the King | 76th Oscars (2004)
    Tom Cruise presenting Peter Jackson with the Oscar® for Directing "The Lord of the Rings: ...
    published: 04 Jan 2010
    Play in Full Screen
    0:23
    Peter Jackson being iconic for 23 seconds straight
    clips of Peter Jackson as Gratuitous of Cameo in "The Lord of the Rings series, the Hobbit...
    published: 14 Dec 2023
    Play in Full Screen
    1:20
    John Rhys-Davies PRANK on Peter Jackson (Gimli funny Behind the Scenes)
    On the set of The Lord of the Rings, John Rhys-Davies (Gimli) played a prank on director P...
    published: 17 Jun 2024
    Play in Full Screen

    Peter Jackson

    Sir Peter Robert Jackson ONZ KNZM (born 31 October 1961) is a New Zealand filmmaker and screenwriter. He is best known as the director, writer and producer of The Lord of the Rings trilogy (2001–03) and The Hobbit trilogy (2012–14), both of which are adapted from the novels of the same name by J. R. R. Tolkien. Other notable films include the drama Heavenly Creatures (1994), the mockumentary Forgotten Silver (1995), the horror comedy The Frighteners (1996), the epic monster film King Kong (2005) and the supernatural drama film The Lovely Bones (2009). He also produced District 9 (2009), The Adventures of Tintin: The Secret of the Unicorn (2011) and the documentary West of Memphis (2012).

    Jackson began his career with the "splatstick" horror comedy Bad Taste (1987) and the black comedy Meet the Feebles (1989) before filming the zombie comedy Braindead (1992). He shared a nomination for Academy Award for Best Original Screenplay with his partner Fran Walsh for Heavenly Creatures, which brought him to mainstream prominence in the film industry. Jackson has been awarded three Academy Awards in his career, including the award for Best Director in 2003. He has also received a Golden Globe, four Saturn Awards and three BAFTAs amongst others.

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