- published: 18 Apr 2023
- views: 1607622
'+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; })); }); -->
Brendan James Fraser (/ˈfreɪzər/ FRAY-zər) (born December 3, 1968) is an American-Canadian actor. He portrayed Rick O'Connell in The Mummy trilogy (1999–2008) and is known for his comedic and fantasy film leading roles in major Hollywood films, such as Encino Man (1992), The Scout (1994), George of the Jungle (1997), Looney Tunes: Back in Action (2003), Journey to the Center of the Earth (2008) and Inkheart (2009). He also starred in numerous dramatic roles, such as Gods and Monsters (1998), The Quiet American (2002), Crash (2004) and Gimme Shelter (2013).
Fraser was born December 3, 1968, in Indianapolis, Indiana, the son of Canadian parents. His mother, Carol Mary (née Genereux), was a sales counselor, and his father, Peter, was a former journalist who worked as a Canadian foreign service officer for the Government Office of Tourism. His maternal uncle, George Genereux, was the only Canadian to win a gold medal in the 1952 Summer Olympics. Fraser has three older brothers: Kevin, Regan, and Sean. His surname is properly pronounced /ˈfreɪzər/, not /ˈfreɪʒər/. The correct pronunciation of his surname is a running gag in Dickie Roberts: Former Child Star, in which his character's surname is pronounced /frɛrəˈʒʊər/. His ancestry includes Irish, Scottish, German, Czech, and French Canadian. His family moved often during his childhood, living in Eureka, California, Seattle, Ottawa, the Netherlands, and Switzerland. Fraser attended the private boys' boarding school,Upper Canada College, in Toronto. While on vacation in London, Fraser attended his first professional theatrical performance at the West End. He graduated from Seattle's Cornish College of the Arts in 1990. He began acting at a small acting college in New York. He originally planned on attending graduate school in Texas but stopped in Hollywood on his way south and decided to stay in Los Angeles to work in movie productions.
The Mummy is a 1999 American action adventure horror film written and directed by Stephen Sommers and starring Brendan Fraser, Rachel Weisz, John Hannah, and Kevin J. O'Connor, with Arnold Vosloo in the title role as the reanimated mummy. It is a loose remake of the 1932 film The Mummy which starred Boris Karloff in the title role.
Filming began in Marrakech, Morocco, on May 4, 1998, and lasted seventeen weeks; the crew had to endure dehydration, sandstorms, and snakes while filming in the Sahara. The visual effects were provided by Industrial Light & Magic, who blended film and computer-generated imagery to create the titular Mummy. Jerry Goldsmith provided the orchestral score.
The Mummy opened on May 7, 1999, and grossed $43 million in 3,210 theaters during its opening weekend in the United States; a surprise hit, the film went on to gross $416 million worldwide. The box-office success led to a 2001 sequel, The Mummy Returns, as well as The Mummy: The Animated Series, and the prequel/spin-off film The Scorpion King. Seven years later, the third installment, The Mummy: Tomb of the Dragon Emperor, opened on August 1, 2008. Universal Pictures also opened a roller coaster, Revenge of the Mummy, in 2004. Novelizations of the film and its sequels were written by Max Allan Collins.
A mummy is an unusually well preserved corpse.
Mummy or The Mummy may also refer to:
The Mummy is a 1932 American Pre-Code horror film directed by Karl Freund and written by John L. Balderston based on a story by Nina Wilcox Putnam and Richard Schayer. Released by Universal Studios, the film stars Boris Karloff alongside Zita Johann, David Manners, Arthur Byron, and Edward Van Sloan.
An ancient Egyptian priest called Imhotep (Boris Karloff) is revived when an archaeological expedition in 1921, led by Sir Joseph Whemple (Arthur Byron), finds Imhotep's mummy. Imhotep had been mummified alive for attempting to resurrect his forbidden lover, the princess Ankh-es-en-amon. Whemple's friend, Dr. Muller (Edward Van Sloan) inspects the mummy and exclaims "The viscera were not removed. The usual scar made by the embalmers knife is not there." Sir Joseph Wimple responds, "I guessed as much." Muller then deduces that Imhotep was buried alive for sacrilege. Despite Muller's warning, Sir Joseph's assistant Ralph Norton (Bramwell Fletcher) reads aloud an ancient life-giving scroll – the Scroll of Thoth. Imhotep escapes from the archaeologists, taking the Scroll of Thoth, and prowls Cairo seeking the modern reincarnation of Ankh-es-en-amon.
Saint Brendan of Clonfert or Bréanainn of Clonfert (c. 484 – c. 577) (Irish: Naomh Breandán; Latin: Brendanus; Icelandic: (heilagur) Brandanus) called "the Navigator", "the Voyager", or "the Bold" is one of the early Irish monastic saints. He is chiefly renowned for his legendary quest to the "Isle of the Blessed," also called Saint Brendan's Island. The Voyage of Saint Brendan could be called an immram (Irish navigational story). He was one of the Twelve Apostles of Ireland.
Saint Brendan's feast day is celebrated on 16 May by the Roman Catholics, Anglicans, and Orthodox Christians.
There is very little secure information concerning Brendan's life, although at least the approximate dates of his birth and death, and accounts of some events in his life, are found in the Irish annals and genealogies. The first mention of Brendan occurs in Adamnan's Vita Sancti Columbae, written between 679 and 704. The first notice of him as a seafarer appears in the ninth century Martyrology of Tallaght.
Brendan may refer to:
This is a list of Pokémon characters in the games, anime series, and manga series. A single character may appear in multiple continuities, sometimes in the same basic role (e.g. Giovanni) and sometimes in very different roles (e.g. Brock).
All references to the "video games" collectively refer to Pokémon Red, Blue, Yellow, Gold, Silver, Crystal, Ruby, Sapphire, Emerald, FireRed, LeafGreen, Diamond, Pearl, Platinum, HeartGold, SoulSilver, Black, White, Black 2, White 2, X, Y, OmegaRuby, and AlphaSapphire only, unless noted otherwise. Likewise, references to the Pokémon anime also include, in addition to the eponymous anime itself, the related sidestory Pokémon Chronicles anime, the game Pokémon Channel, and Ash & Pikachu manga unless otherwise noted.
Names in bold are the names from the English-language versions of the video games or anime. Names within parentheses in plain text are the anglicized form of the characters' original Japanese language name if different from the English-language version. Italicized names are the romanized version of the Japanese language name if different from the anglicized version.
Halle Berry and Jessica Chastain present Brendan Fraser with the Oscar for Best Actor in a Leading Role for his performance in 'The Whale'. WINNER: Brendan Fraser in 'The Whale' Watch highlights from the Oscars season ►► https://youtube.com/playlist?list=PLJ8RjvesnvDO5Nvd_8DDyoQ2-86X_BtfB The 95th Oscars was held LIVE on Sunday, March 12th at 8e/5p, and televised live on ABC and in more than 200 territories worldwide. 95th Oscars: See the Full List of Winners Here ►► https://aframe.oscars.org/news/post/95th-oscars-full-winners-list-2023 Subscribe for more Oscars videos ►► http://osca.rs/subscribeyt Brendan Fraser Wins Best Actor in a Leading Role for 'The Whale' | 95th Oscars (2023) #Oscars #Oscars95 #BestActor #BrendanFraser #TheWhale #AcademyAwards #movies #filmmaking #movies #awa...
In this week’s Sunday Sitdown, Brendan Fraser joins Willie Geist to talk about his time outside of the limelight, his Oscar nominated film “The Whale” and its tale of redemption that hits close to home. » Subscribe to TODAY: http://on.today.com/SubscribeToTODAY » Watch the latest from TODAY: http://bit.ly/LatestTODAY About: TODAY brings you the latest headlines and expert tips on money, health and parenting. We wake up every morning to give you and your family all you need to start your day. If it matters to you, it matters to us. We are in the people business. Subscribe to our channel for exclusive TODAY archival footage & our original web series. Connect with TODAY Online! Visit TODAY's Website: http://on.today.com/ReadTODAY Find TODAY on Facebook: http://on.today.com/LikeTODAY Follow ...
Watch Brendan Fraser's emotional acceptance speech for Best Actor in a Leading Role at the 2023 Oscars. More: https://abc7.com/brendan-fraser-the-whale-oscars-2023-best-actor/12920370/
Brendan Fraser is an actor that young people might not easily remember now, but he was a big star and was at the height of his career until many things took him away from the cameras. From The Mummy movies to The Whale, stay tuned to find out more about the evolution of Brendan Fraser! Subscribe to our channel for more videos.
Ke Huy Quan, who starred in "Encino Man" alongside Fraser in 1992, talked about how "beautiful" it was to see "The Whale" actor after working together more than 30 years ago. More Oscar news and videos from GMA: https://gma.abc/3R6JPjM SUBSCRIBE: https://bit.ly/2Zq0dU5 SIGN UP to get the daily GMA Wake-Up Newsletter: https://gma.abc/2Vzcd5j VISIT GMA: https://www.goodmorningamerica.com FOLLOW: TikTok: https://tiktok.com/@gma Instagram: https://instagram.com/GoodMorningAmerica Facebook: https://facebook.com/GoodMorningAmerica Twitter: https://twitter.com/gma #brendanfraser #kehuyquan #encinoman #oscars #gma
We're excited to announce that The WatchMojo Game (https://wmojo.com/game) is here and available now on Amazon! Canada and UK now in stock! https://wmojo.com/game_canada https://wmojo.com/game_uk US: https://wmojo.com/game UK: https://wmojo.com/game_uk Canada: https://wmojo.com/game_canada After having been out of the spotlight for a while, Brendan Fraser has had an incredible comeback! For this video, we’ll be looking at this American-Canadian actor then and now, exploring his rise, fall, and rise again. We'll take you through his early days, how Hollywood mistreated him, and how he's made such a strong resurgence. What’s your favorite Brendan Fraser performance? Let us know in the comments. Watch more great Brendan Fraser videos here: Top 10 Moments That Made Us Love Brendan Fraser: h...
Brendan Fraser, who's nominated for Best Actor for 'The Whale,' chats with ET’s Kevin Frazier and Nischelle Turner at the 95th Academy Awards. The actor makes Hollywood's biggest night a family affair by bringing his two sons, Leland and Holden, and his girlfriend, Jeanne Moore. Brendan’s kids couldn’t shy away from teasing their dad about his jokes. The Oscars air Sunday, March 12 on ABC.
Brendan Fraser reveals what it was like to watch Martin Scorsese direct his upcoming film "Killers of the Flower Moon." Stream the full interview now: http://siriusxm.us/BrendanFraser-HS Get more Howard Stern by signing up for a free SiriusXM trial: https://siriusxm.us/Howard100 SUBSCRIBE for more videos: http://bit.ly/2qswmZU Want to know what's going on with Howard Stern in the future? Follow us on Twitter: http://bit.ly/1RzxGPD On Facebook: http://on.fb.me/1JELtz3 On Instagram: https://goo.gl/VsWTND For more great content from the Howard Stern Show visit our official website: http://www.HowardStern.com #HowardStern #SternShow
Hello and welcome Watch Tonight. Today we will check out dating history of Tyler Posey. Tyler Posey Love-life and dating history | Tyler Posey girlfriend, wife Tyler Posey Dating History | Who is Tyler Posey dating? #tylerposey #teenwolfmovie #shorts #dance Keywords - Tyler Posey Dating History, Tyler Posey Kids, Tyler Posey Family, Tyler Posey Lovelife, Tyler Posey Kissing, Tyler Posey affairs, Tyler Posey Loves And Hookups, Tyler Posey Complete Dating History, Tyler Posey Dating, Tyler Posey exes, Tyler Posey Past Relationships, Who is Tyler Posey Dating Now, Tyler Posey Relationship, Tyler Posey wife, Tyler Posey girlfriend, Tyler Posey girlfriend list Also Checkout these uploads - Conan O'Brien Funniest Moments - https://youtu.be/IYJxSrBQM18 What happened to Brendan Frase...
Brendan Fraser won the Oscar Sunday night for best actor Sunday night for his performance in "The Whale," kicking off a new era for the once ubiquitous '90s star who became largely absent from the big screen for much of the last decade. #oscars https://6abc.com/brendan-fraser-the-whale-oscars-2023-best-actor/12920370/
Evelyn (Rachel Weisz) read from the Book of the Dead out loud and unintentionally awakens Imhotep, causing all hell to break loose and prompting the group to run inside for their lives. While inside, Rick (Brendan Fraser), Evelyn, and others come across Imhotep but are able to escape him. Buy/Rent The Mummy iTunes: https://itunes.apple.com/us/movie/the-mummy/id279137281 Amazon: https://www.amazon.com/Mummy-Brendan-Fraser/dp/B009CGCLUU/ref=sr_1_1 YouTube Movies: https://www.youtube.com/watch?v=myaGp3vt78Y Google Play: https://play.google.com/store/movies/details/The_Mummy?id=myaGp3vt78Y&hl=en_US&gl=US VUDU: https://www.vudu.com/content/movies/details/The-Mummy/4973 Universal Pictures Home Entertainment: https://www.uphe.com/movies/the-mummy-1999 Synopsis: Deep in the Egyptian desert, a ...
The Mummy movie clips: http://j.mp/1uuMKpH BUY THE MOVIE: http://amzn.to/rSTSru Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Anck Su Namun (Patricia Velasquez) and High Priest Imhotep (Arnold Vosloo) kill the Pharaoh (Ahraon Ipalé). FILM DESCRIPTION: Loosely adapted from the classic 1932 horror film starring Boris Karloff, The Mummy is set in Egypt, where over 3,000 years ago the high priest Imhotep (played by Arnold Vosloo) was given the all-important assignment of preparing the recently dead for their journey into the afterlife. However, Imhotep made one terrible mistake - he became smitten with Anck-Su-Namun, the mistress of the Pharaoh himself. Driven mad by jealousy and love, Imhotep murdered the Pharaoh, and his punishment was to be buried alive and ...
Presenting Hollywood Horror Full Movie (Hollywood Movie English, Horror Movies, Adventure Movies, Mummy Movies In English) "THE MUMMY" Exclusively on@PrimetimEnglishmovies Sit back & enjoy Subscribe Us For Best Full Movies in English for FREE - https://www.youtube.com/channel/UCvIe4KYlW1tEhUpYk246g2Q Popular English Movies ⦿ Dragon King - https://youtu.be/x01PVr-2PjU ⦿ Demon Hunter - https://youtu.be/6TJHV2ECqbs ⦿ The Villainess - https://youtu.be/LIQIIaB37L0 ⦿ Immortal - https://youtu.be/7L4yQ0d9eac ⦿ Dawning Of The Dead - https://youtu.be/RE4nhftcjQo ⦿ Alone In The Dark 2 - https://youtu.be/5ylXgY3xr84 ⦿ THE BIBLE STORIES: Jeremiah - https://youtu.be/b94l9L2iok4 ⦿ Backcountry - https://youtu.be/lHa2pkjdxIs ⦿ 100 Bloody Acres - https://youtu.be/pylHxeH_Wsg ⦿ Ghost Ship - https://yout...
The Mummy movie clips: http://j.mp/1uuMKpH BUY THE MOVIE: http://amzn.to/rSTSru Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Imhotep (Arnold Vosloo) and his priests are buried alive by the Pharoah's men for attempting to perform an unholy ritual. FILM DESCRIPTION: Loosely adapted from the classic 1932 horror film starring Boris Karloff, The Mummy is set in Egypt, where over 3,000 years ago the high priest Imhotep (played by Arnold Vosloo) was given the all-important assignment of preparing the recently dead for their journey into the afterlife. However, Imhotep made one terrible mistake - he became smitten with Anck-Su-Namun, the mistress of the Pharaoh himself. Driven mad by jealousy and love, Imhotep murdered the Pharaoh, and his punishment was to be bur...
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt The Mummy Trailer - Directed by Stephen Sommers and starring Brendan Fraser Rachel Weisz John Hannah Arnold Vosloo and Kevin J. O'Connor Dashing legionnaire Rick O'Connell and Beni, his weasel of a companion, stumble upon the hidden ruins of Hamunaptra while in the midst of a battle in 1923, 3,000 years after Imhotep has suffered a fate worse than death; his body will remain undead for all eternity as a punishment for a forbidden love. Universal - 1999
Rick O'Connell (Brendan Fraser) discovers a dark presence lurking beneath the surface of the ancient city of the dead, Hamunaptra. The Mummy (1999) Adventurer Rick O'Connell (Brendan Fraser) and Egyptologist Evelyn (Rachel Weisz), along with a bunch of archaeologists, inadvertently wake up an evil mummy during an archaeological excavation at the ancient city of Hamunaptra. Watch full movie here: https://www.uphe.com/movies/the-mummy-1999 Welcome to All Action. A channel that brings you the greatest scenes, explosive moments and more, from the biggest action movies in history. Subscribe for more here: youtube.com/channel/UC5vHLE-kwm30jbuQWLF8RNg?sub_confirmation=1 #TheMummy #BrendanFraser #RachelWeisz
The Mummy movie clips: http://j.mp/1uuMKpH BUY THE MOVIE: http://amzn.to/rSTSru Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Evelyn (Rachel Weisz) tells the warden (Omid Djalili) that Rick (Brendan Fraser) knows how to find Hominoptra, and should be set free. FILM DESCRIPTION: Loosely adapted from the classic 1932 horror film starring Boris Karloff, The Mummy is set in Egypt, where over 3,000 years ago the high priest Imhotep (played by Arnold Vosloo) was given the all-important assignment of preparing the recently dead for their journey into the afterlife. However, Imhotep made one terrible mistake - he became smitten with Anck-Su-Namun, the mistress of the Pharaoh himself. Driven mad by jealousy and love, Imhotep murdered the Pharaoh, and his punishment ...
Thanks for watching! MERCH: https://crowdmade.com/collections/nataliegold This video was edited by Cameron Marek: https://www.youtube.com/c/CameronMarek MY PATREON (for full length reactions + polls): https://www.patreon.com/nataliegold LIVESTREAMS/OTHER CONTENT: https://www.youtube.com/c/nattiegold MY INSTA: @nattiegold - https://www.instagram.com/nattiegold/?hl=en MY TWITTER: @natstaygolden - https://twitter.com/natstaygolden MY TIKTOK: https://www.tiktok.com/@natalie_gold?lang=en GEAR I USE: (As an Amazon Associate, I earn from qualifying purchases from using the links below.) Sony A6000: https://amzn.to/3g7LDKU Sigma 24mm Lens: https://amzn.to/3CXz51K HyperX Cloud Flight S Wireless Headset: https://amzn.to/3SVO9SS RODE Microphone Focusrite Scarlett 2i2 3rd Gen USB Audio Interfac...
With the new Tom Cruise Mummy movie hitting theaters, we figured it was finally time to go back to the Brendan Fraser Mummy movies and look for sins. So that's what we did! And there were A LOT! May is Mental Health Month, and even though it's June now, it's still a subject that means a lot to us here at CinemaSins. Yes, it's June now technically, but we are still honoring Mental Health Month for a bit longer. In fact, we’re partnering with Mental Health America (MHA) to not only to raise awareness of mental health issues – but also to raise a little money, too. We’ve got a brand-new Cinema Sins t-shirt in the shop, and all of the profits from the sale of the shirt will be donated to our friends at MHA. Click here to check out or purchase the shirt: http://www.districtlines.com/109796...
Brendan James Fraser (/ˈfreɪzər/ FRAY-zər) (born December 3, 1968) is an American-Canadian actor. He portrayed Rick O'Connell in The Mummy trilogy (1999–2008) and is known for his comedic and fantasy film leading roles in major Hollywood films, such as Encino Man (1992), The Scout (1994), George of the Jungle (1997), Looney Tunes: Back in Action (2003), Journey to the Center of the Earth (2008) and Inkheart (2009). He also starred in numerous dramatic roles, such as Gods and Monsters (1998), The Quiet American (2002), Crash (2004) and Gimme Shelter (2013).
Fraser was born December 3, 1968, in Indianapolis, Indiana, the son of Canadian parents. His mother, Carol Mary (née Genereux), was a sales counselor, and his father, Peter, was a former journalist who worked as a Canadian foreign service officer for the Government Office of Tourism. His maternal uncle, George Genereux, was the only Canadian to win a gold medal in the 1952 Summer Olympics. Fraser has three older brothers: Kevin, Regan, and Sean. His surname is properly pronounced /ˈfreɪzər/, not /ˈfreɪʒər/. The correct pronunciation of his surname is a running gag in Dickie Roberts: Former Child Star, in which his character's surname is pronounced /frɛrəˈʒʊər/. His ancestry includes Irish, Scottish, German, Czech, and French Canadian. His family moved often during his childhood, living in Eureka, California, Seattle, Ottawa, the Netherlands, and Switzerland. Fraser attended the private boys' boarding school,Upper Canada College, in Toronto. While on vacation in London, Fraser attended his first professional theatrical performance at the West End. He graduated from Seattle's Cornish College of the Arts in 1990. He began acting at a small acting college in New York. He originally planned on attending graduate school in Texas but stopped in Hollywood on his way south and decided to stay in Los Angeles to work in movie productions.