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

Viggo Mortensen

Viggo Peter Mortensen, Jr. (Danish: [viɡ̊o ˈmɒːdnsn]; born October 20, 1958) is an American actor, poet, musician, photographer and painter. He made his film debut in Peter Weir's 1985 thriller Witness, and subsequently appeared in many notable films of subsequent years, including The Indian Runner (1991), Carlito's Way (1993), Crimson Tide (1995), Daylight (1996), The Portrait of a Lady (1996), G.I. Jane (1997), A Perfect Murder (1998), A Walk on the Moon (1999), and 28 Days (2000).

Mortensen grew in prominence in the early 2000s with his role as Aragorn in the epic film trilogy The Lord of the Rings. In 2005, Mortensen won critical acclaim for David Cronenberg's crime thriller A History of Violence. Two years later, another Cronenberg film Eastern Promises (2007) earned him further critical acclaim and a nomination for the Academy Award for Best Actor. A third teaming with Cronenberg in A Dangerous Method (2011) resulted in a nomination for the Golden Globe Award for Best Supporting Actor - Motion Picture. Other well-received films have included Appaloosa (2008), the 2009 film adaptation of Cormac McCarthy's novel The Road, and Far from Men, an adaptation of Albert Camus' short story The Guest.

Podcasts:

Famous quotes by Viggo Mortensen:

"I definitely need to sleep more. But as they say, you can sleep when you're dead."
"Any ordeal that you can survive as a human"
"If you're trying to please everyone, then you're not going to make anything that is honestly yours, I don't think, in the long run."
"There's no excuse to be bored. Sad, yes. Angry, yes. Depressed, yes. Crazy, yes. But there's no excuse for boredom, ever."
"What´s the most especial thing about being a father? Everything."
"You get all these things, there are all these letters and gifts, sometimes strange ones; most of the time it can be really nice. But at the same time, it's overwhelming. Because I know I'm going to have to look through it. Most of it is filling the corners of my house and I can't respond to it all right away."
"I have never been in a natural place and felt that was a waste of time. I never have. And it's a relief. If I'm walking around a desert or whatever, every second is worthwhile."
"I think that people who get to a certain position, and then try to ferociously defend it or build on it, it's kind of a dead-end street. You see people becoming miserable that way."
"It comes down to the fact that you supply the blue, and they supply the other colors and mix them with your blue, and maybe there's some blue left in the painting and maybe there isn't. Maybe there wasn't supposed to be any there in the first place. So have some fun and make a good blue and walk away."
"In a movie, you're raw material, just a hue of some color and the director makes the painting.'"
"Like most people I can be lazy, so it's nice to have a goal or deadline or reason to work out. I feel better when I get to exercise, or when I'm outdoors. I like to hike, swim and run, and I love to play soccer."

Viggo Mortensen

ALBUMS

  • THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen

    THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen, Vicky Krieps, Western Movie HD © 2024 - Shout! Studios

    published: 25 Mar 2024
  • Viggo Mortensen on Lord of the Rings Reunion

    Viggo explains why he recently held a Lord of the Rings cast reunion in Los Angeles. Guillermo at Super Bowl Media Night https://youtu.be/G36rsk3Cm_c SUBSCRIBE to get the latest #KIMMEL: http://bit.ly/JKLSubscribe Watch the latest Halloween Candy Prank: http://bit.ly/KimmelHalloweenCandy Watch Mean Tweets: http://bit.ly/JKLMeanTweets8 Connect with Jimmy Kimmel Live Online: Visit the Jimmy Kimmel Live WEBSITE: http://bit.ly/JKLWebsite Like Jimmy Kimmel Live on FACEBOOK: http://bit.ly/JKLFacebook Follow Jimmy Kimmel Live on TWITTER: http://bit.ly/JKLTwitter Follow Jimmy Kimmel Live on INSTAGRAM: http://bit.ly/JKLInstagram About Jimmy Kimmel Live: Jimmy Kimmel serves as host and executive producer of Emmy-winning "Jimmy Kimmel Live," ABC's late-night talk show. "Jimmy Kimmel Live" is...

    published: 03 Feb 2017
  • Viggo Mortensen aka Aragorn dans le Seigneur des anneaux, est dans le Video Club 🎬

    De Le miroir à Spider : Viggo Mortensen que vous connaissez aussi sous le nom d'Aragorn dans le Seigneur des anneaux, est dans le Video Club pour parler des oeuvres cinématographiques qui l'ont inspiré et qui ont fait de lui l'acteur et le réalisateur qu'il est aujourd'hui 🎬 Il est à l'affiche de son film, Jusqu'au bout du monde, en salle le 1er mai prochain 🍿 Konbini est dispo en podcast ► https://podlink.to/konbini-podcasts ► Konbini : https://www.konbini.com ► TikTok : https://www.tiktok.com/@konbini?lang=fr ► Facebook : https://www.facebook.com/konbinifr ► Instagram : https://www.instagram.com/konbini ► Twitter : https://twitter.com/konbinifr ► Snapchat : https://story.snapchat.com/p/dea579ee-3a1c-45ce-af6f-767132b7d7f0 Konbini, thank you for watching !

    published: 27 Apr 2024
  • LOTR: The funny story of when Viggo Mortensen fell in love with a BEARDED woman!

    During the filming of The Lord of the Rings, many of the extras playing the Rohirrim were actually women with glued-on beards. Viggo Mortensen developed a crush on one of these women, much to the amusement of Dominic Monaghan, who teased him about it.

    published: 02 May 2024
  • LOTR cast talk about Viggo Mortensen

    no copyright intended

    published: 03 May 2021
  • Viggo Mortensens last day as Aragorn.

    Viggo Mortensen saying goodbye to the cast of the lord of the rings. Clips are taken from The Lord of the rings - The Appendices -enjoy. If you have any requests just ask me and i´l see what i can do. Subscribe for more in the future!

    published: 03 Sep 2011
  • The Dead Don't Hurt - Official Trailer

    https://www.thedeaddonthurt.com/watch-at-home/ WATCH NOW | Official Trailer | The Dead Don't Hurt The Dead Don’t Hurt is a story of star-crossed lovers on the western U.S. frontier in the 1860s. Vivienne Le Coudy (Vicky Krieps) is a fiercely independent woman who embarks on a relationship with Danish immigrant Holger Olsen (Viggo Mortensen). After meeting Olsen in San Francisco, she agrees to travel with him to his home near the quiet town of Elk Flats, Nevada, where they start a life together. The outbreak of the civil war separates them when Olsen makes a fateful decision to fight for the Union. This leaves Vivienne to fend for herself in a place controlled by corrupt Mayor Rudolph Schiller (Danny Huston) and his unscrupulous business partner, powerful rancher Alfred Jeffries (Garrett ...

    published: 25 Mar 2024
  • LOTR bloopers: This made Viggo Mortensen SCARED of the Uruk-hai

    In Fellowship of the Ring, Viggo Mortensen, who played Aragorn, found the portrayal of Uruk-hais so realistic that it unnerved him. Richard Taylor's impassioned speech to the stuntmen playing the Uruk-hais about merciless killing added to the intensity, making Mortensen and others hilariously uneasy during filming.

    published: 03 May 2024
  • Viggo Mortensen Speaking 9 Languages

    Viggo Mortensen, renowned for his roles in films like The Lord of the Rings, showcases his impressive multilingual abilities. In this video, you can hear him speaking the following languages: English: His native language and the primary language in which he performs in Hollywood. Spanish: Fluent speaker due to his Argentine roots. French: Demonstrates fluency, reflecting his involvement in international projects. Danish: Acquired through his time living in Denmark and working on Danish films. Italian: Speaks with proficiency, showing his interest in Italian culture and cinema. Swedish: Uses Swedish with good command, despite not being a native speaker. Arabic: Shows his skills in Arabic, adding to his diverse linguistic repertoire. Catalan: Utilizes Catalan...

    published: 05 Jun 2021
  • Viggo Mortensen Speaking 7 Languages

    The Danish-American actor Viggo Mortensen speaks English, Danish, Spanish and French fluently. Viggo Mortensen’s mother is American and his father is Danish. He lived part of his childhood in Argentina, where he learnt Spanish. Viggo also learnt French as another language. He has also some knowledge in Arabic and Catalan In this video we can see Viggo speaking English, Spanish, Danish, French, Italian, Catalan and Arabic 🌟 POLYGLOT CELEBRITIES PLAYLIST: https://youtu.be/LpdKT_A5AW4

    published: 16 Jan 2018
THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen
2:40

THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen

  • Order:
  • Duration: 2:40
  • Uploaded Date: 25 Mar 2024
  • views: 2419371
THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen, Vicky Krieps, Western Movie HD © 2024 - Shout! Studios
https://wn.com/The_Dead_Don'T_Hurt_Trailer_(2024)_Viggo_Mortensen
Viggo Mortensen on Lord of the Rings Reunion
1:54

Viggo Mortensen on Lord of the Rings Reunion

  • Order:
  • Duration: 1:54
  • Uploaded Date: 03 Feb 2017
  • views: 2036289
Viggo explains why he recently held a Lord of the Rings cast reunion in Los Angeles. Guillermo at Super Bowl Media Night https://youtu.be/G36rsk3Cm_c SUBSCRIBE to get the latest #KIMMEL: http://bit.ly/JKLSubscribe Watch the latest Halloween Candy Prank: http://bit.ly/KimmelHalloweenCandy Watch Mean Tweets: http://bit.ly/JKLMeanTweets8 Connect with Jimmy Kimmel Live Online: Visit the Jimmy Kimmel Live WEBSITE: http://bit.ly/JKLWebsite Like Jimmy Kimmel Live on FACEBOOK: http://bit.ly/JKLFacebook Follow Jimmy Kimmel Live on TWITTER: http://bit.ly/JKLTwitter Follow Jimmy Kimmel Live on INSTAGRAM: http://bit.ly/JKLInstagram About Jimmy Kimmel Live: Jimmy Kimmel serves as host and executive producer of Emmy-winning "Jimmy Kimmel Live," ABC's late-night talk show. "Jimmy Kimmel Live" is well known for its huge viral video successes with 2.5 billion views on YouTube alone. Some of Kimmel's most popular comedy bits include - Mean Tweets, Lie Witness News, Jimmy's Twerk Fail Prank, Unnecessary Censorship, YouTube Challenge, The Baby Bachelor, Movie: The Movie, Handsome Men's Club, Jimmy Kimmel Lie Detective and music videos like "I (Wanna) Channing All Over Your Tatum" and a Blurred Lines parody with Robin Thicke, Pharrell, Jimmy and his security guard Guillermo. Now in its fifteenth season, Kimmel's guests have included: Johnny Depp, Meryl Streep, Tom Cruise, Halle Berry, Harrison Ford, Jennifer Aniston, Will Ferrell, Katy Perry, Tom Hanks, Scarlett Johansson, Channing Tatum, George Clooney, Larry David, Charlize Theron, Mark Wahlberg, Kobe Bryant, Steve Carell, Hugh Jackman, Kristen Wiig, Jeff Bridges, Jennifer Garner, Ryan Gosling, Bryan Cranston, Jamie Foxx, Amy Poehler, Ben Affleck, Robert Downey Jr., Jake Gyllenhaal, Oprah, and unfortunately Matt Damon. Viggo Mortensen on Lord of the Rings Reunion https://youtu.be/P2AooCCuw_Q
https://wn.com/Viggo_Mortensen_On_Lord_Of_The_Rings_Reunion
Viggo Mortensen aka Aragorn dans le Seigneur des anneaux, est dans le Video Club 🎬
35:02

Viggo Mortensen aka Aragorn dans le Seigneur des anneaux, est dans le Video Club 🎬

  • Order:
  • Duration: 35:02
  • Uploaded Date: 27 Apr 2024
  • views: 341084
De Le miroir à Spider : Viggo Mortensen que vous connaissez aussi sous le nom d'Aragorn dans le Seigneur des anneaux, est dans le Video Club pour parler des oeuvres cinématographiques qui l'ont inspiré et qui ont fait de lui l'acteur et le réalisateur qu'il est aujourd'hui 🎬 Il est à l'affiche de son film, Jusqu'au bout du monde, en salle le 1er mai prochain 🍿 Konbini est dispo en podcast ► https://podlink.to/konbini-podcasts ► Konbini : https://www.konbini.com ► TikTok : https://www.tiktok.com/@konbini?lang=fr ► Facebook : https://www.facebook.com/konbinifr ► Instagram : https://www.instagram.com/konbini ► Twitter : https://twitter.com/konbinifr ► Snapchat : https://story.snapchat.com/p/dea579ee-3a1c-45ce-af6f-767132b7d7f0 Konbini, thank you for watching !
https://wn.com/Viggo_Mortensen_Aka_Aragorn_Dans_Le_Seigneur_Des_Anneaux,_Est_Dans_Le_Video_Club_🎬
LOTR: The funny story of when Viggo Mortensen fell in love with a BEARDED woman!
0:59

LOTR: The funny story of when Viggo Mortensen fell in love with a BEARDED woman!

  • Order:
  • Duration: 0:59
  • Uploaded Date: 02 May 2024
  • views: 34706
During the filming of The Lord of the Rings, many of the extras playing the Rohirrim were actually women with glued-on beards. Viggo Mortensen developed a crush on one of these women, much to the amusement of Dominic Monaghan, who teased him about it.
https://wn.com/Lotr_The_Funny_Story_Of_When_Viggo_Mortensen_Fell_In_Love_With_A_Bearded_Woman
LOTR cast talk about Viggo Mortensen
1:01

LOTR cast talk about Viggo Mortensen

  • Order:
  • Duration: 1:01
  • Uploaded Date: 03 May 2021
  • views: 1083068
no copyright intended
https://wn.com/Lotr_Cast_Talk_About_Viggo_Mortensen
Viggo Mortensens last day as Aragorn.
3:16

Viggo Mortensens last day as Aragorn.

  • Order:
  • Duration: 3:16
  • Uploaded Date: 03 Sep 2011
  • views: 6955264
Viggo Mortensen saying goodbye to the cast of the lord of the rings. Clips are taken from The Lord of the rings - The Appendices -enjoy. If you have any requests just ask me and i´l see what i can do. Subscribe for more in the future!
https://wn.com/Viggo_Mortensens_Last_Day_As_Aragorn.
The Dead Don't Hurt - Official Trailer
2:30

The Dead Don't Hurt - Official Trailer

  • Order:
  • Duration: 2:30
  • Uploaded Date: 25 Mar 2024
  • views: 944938
https://www.thedeaddonthurt.com/watch-at-home/ WATCH NOW | Official Trailer | The Dead Don't Hurt The Dead Don’t Hurt is a story of star-crossed lovers on the western U.S. frontier in the 1860s. Vivienne Le Coudy (Vicky Krieps) is a fiercely independent woman who embarks on a relationship with Danish immigrant Holger Olsen (Viggo Mortensen). After meeting Olsen in San Francisco, she agrees to travel with him to his home near the quiet town of Elk Flats, Nevada, where they start a life together. The outbreak of the civil war separates them when Olsen makes a fateful decision to fight for the Union. This leaves Vivienne to fend for herself in a place controlled by corrupt Mayor Rudolph Schiller (Danny Huston) and his unscrupulous business partner, powerful rancher Alfred Jeffries (Garrett Dillahunt). Alfred’s violent, wayward son Weston (Solly McLeod) aggressively pursues Vivienne, who is determined to resist his unwanted advances. When Olsen returns from the war, he and Vivienne must confront and make peace with the person each has become. Both a tragic love story and a nuanced depiction of the conflict between revenge and forgiveness, The Dead Don’t Hurt is a portrait of a passionate woman determined to stand up for herself in an unforgiving world dominated by ruthless men. https://www.thedeaddonthurt.com Subscribe to SHOUTSTUDIOS: http://bit.ly/1nm0dKP Follow us on TWITTER: https://twitter.com/shout_studios Like on FACEBOOK: https://www.facebook.com/TheDeadDontHurt A diversified multi-platform media company devoted to producing, uncovering, preserving and revitalizing the very best of pop culture, Shout! Studios' entertainment offerings serve up first-run feature films, original, contemporary, and classic TV series, animation, live music and comedy specials. Shout! Studios owns and operates Shout! Factory, Scream Factory, Shout! Kids, Mystery Science Theater 3000, Timeless Media Group and Shout! TV.
https://wn.com/The_Dead_Don't_Hurt_Official_Trailer
LOTR bloopers: This made Viggo Mortensen SCARED of the Uruk-hai
1:02

LOTR bloopers: This made Viggo Mortensen SCARED of the Uruk-hai

  • Order:
  • Duration: 1:02
  • Uploaded Date: 03 May 2024
  • views: 221658
In Fellowship of the Ring, Viggo Mortensen, who played Aragorn, found the portrayal of Uruk-hais so realistic that it unnerved him. Richard Taylor's impassioned speech to the stuntmen playing the Uruk-hais about merciless killing added to the intensity, making Mortensen and others hilariously uneasy during filming.
https://wn.com/Lotr_Bloopers_This_Made_Viggo_Mortensen_Scared_Of_The_Uruk_Hai
Viggo Mortensen Speaking 9 Languages
3:17

Viggo Mortensen Speaking 9 Languages

  • Order:
  • Duration: 3:17
  • Uploaded Date: 05 Jun 2021
  • views: 1310617
Viggo Mortensen, renowned for his roles in films like The Lord of the Rings, showcases his impressive multilingual abilities. In this video, you can hear him speaking the following languages: English: His native language and the primary language in which he performs in Hollywood. Spanish: Fluent speaker due to his Argentine roots. French: Demonstrates fluency, reflecting his involvement in international projects. Danish: Acquired through his time living in Denmark and working on Danish films. Italian: Speaks with proficiency, showing his interest in Italian culture and cinema. Swedish: Uses Swedish with good command, despite not being a native speaker. Arabic: Shows his skills in Arabic, adding to his diverse linguistic repertoire. Catalan: Utilizes Catalan, indicating his connection to the Catalonia region and cultural interest. Norwegian: Communicates in Norwegian effectively, highlighting his dedication to learning various languages. This video highlights Mortensen's remarkable ability to speak multiple languages, demonstrating his passion for different cultures and his versatility as an actor.
https://wn.com/Viggo_Mortensen_Speaking_9_Languages
Viggo Mortensen Speaking 7 Languages
2:53

Viggo Mortensen Speaking 7 Languages

  • Order:
  • Duration: 2:53
  • Uploaded Date: 16 Jan 2018
  • views: 7791787
The Danish-American actor Viggo Mortensen speaks English, Danish, Spanish and French fluently. Viggo Mortensen’s mother is American and his father is Danish. He lived part of his childhood in Argentina, where he learnt Spanish. Viggo also learnt French as another language. He has also some knowledge in Arabic and Catalan In this video we can see Viggo speaking English, Spanish, Danish, French, Italian, Catalan and Arabic 🌟 POLYGLOT CELEBRITIES PLAYLIST: https://youtu.be/LpdKT_A5AW4
https://wn.com/Viggo_Mortensen_Speaking_7_Languages
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen
    2:40
    THE DEAD DON'T HURT Trailer (2024) Viggo Mortensenremove from playlist
  • Viggo Mortensen on Lord of the Rings Reunion
    1:54
    Viggo Mortensen on Lord of the Rings Reunionremove from playlist
  • Viggo Mortensen aka Aragorn dans le Seigneur des anneaux, est dans le Video Club 🎬
    35:02
    Viggo Mortensen aka Aragorn dans le Seigneur des anneaux, est dans le Video Club 🎬remove from playlist
  • LOTR: The funny story of when Viggo Mortensen fell in love with a BEARDED woman!
    0:59
    LOTR: The funny story of when Viggo Mortensen fell in love with a BEARDED woman!remove from playlist
  • Viggo Mortensens last day as Aragorn.
    3:16
    Viggo Mortensens last day as Aragorn.remove from playlist
  • The Dead Don't Hurt - Official Trailer
    2:30
    The Dead Don't Hurt - Official Trailerremove from playlist
  • LOTR bloopers: This made Viggo Mortensen SCARED of the Uruk-hai
    1:02
    LOTR bloopers: This made Viggo Mortensen SCARED of the Uruk-hairemove from playlist
  • Viggo Mortensen Speaking 9 Languages
    3:17
    Viggo Mortensen Speaking 9 Languagesremove from playlist
  • Viggo Mortensen Speaking 7 Languages
    2:53
    Viggo Mortensen Speaking 7 Languagesremove from playlist
PLAYLIST TIME: 0:00 / 54:34

THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen

THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen, Vicky Krieps, Western Movie HD © 2024 - Shout! Studios
2:40
THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen
THE DEAD DON'T HURT Trailer (2024) Viggo Mortensen, Vicky Krieps, Western Movie HD © 2024 ...
published: 25 Mar 2024
Play in Full Screen
1:54
Viggo Mortensen on Lord of the Rings Reunion
Viggo explains why he recently held a Lord of the Rings cast reunion in Los Angeles. Guil...
published: 03 Feb 2017
Play in Full Screen
35:02
Viggo Mortensen aka Aragorn dans le Seigneur des anneaux, est dans le Video Club 🎬
De Le miroir à Spider : Viggo Mortensen que vous connaissez aussi sous le nom d'Aragorn da...
published: 27 Apr 2024
Play in Full Screen
0:59
LOTR: The funny story of when Viggo Mortensen fell in love with a BEARDED woman!
During the filming of The Lord of the Rings, many of the extras playing the Rohirrim were ...
published: 02 May 2024
Play in Full Screen
1:01
LOTR cast talk about Viggo Mortensen
no copyright intended
published: 03 May 2021
Play in Full Screen
3:16
Viggo Mortensens last day as Aragorn.
Viggo Mortensen saying goodbye to the cast of the lord of the rings. Clips are taken from...
published: 03 Sep 2011
Play in Full Screen
2:30
The Dead Don't Hurt - Official Trailer
https://www.thedeaddonthurt.com/watch-at-home/ WATCH NOW | Official Trailer | The Dead Don...
published: 25 Mar 2024
Play in Full Screen
1:02
LOTR bloopers: This made Viggo Mortensen SCARED of the Uruk-hai
In Fellowship of the Ring, Viggo Mortensen, who played Aragorn, found the portrayal of Uru...
published: 03 May 2024
Play in Full Screen
3:17
Viggo Mortensen Speaking 9 Languages
Viggo Mortensen, renowned for his roles in films like The Lord of the Rings, showcases his...
published: 05 Jun 2021
Play in Full Screen
2:53
Viggo Mortensen Speaking 7 Languages
The Danish-American actor Viggo Mortensen speaks English, Danish, Spanish and French fluen...
published: 16 Jan 2018
Play in Full Screen

Viggo Mortensen

Viggo Peter Mortensen, Jr. (Danish: [viɡ̊o ˈmɒːdnsn]; born October 20, 1958) is an American actor, poet, musician, photographer and painter. He made his film debut in Peter Weir's 1985 thriller Witness, and subsequently appeared in many notable films of subsequent years, including The Indian Runner (1991), Carlito's Way (1993), Crimson Tide (1995), Daylight (1996), The Portrait of a Lady (1996), G.I. Jane (1997), A Perfect Murder (1998), A Walk on the Moon (1999), and 28 Days (2000).

Mortensen grew in prominence in the early 2000s with his role as Aragorn in the epic film trilogy The Lord of the Rings. In 2005, Mortensen won critical acclaim for David Cronenberg's crime thriller A History of Violence. Two years later, another Cronenberg film Eastern Promises (2007) earned him further critical acclaim and a nomination for the Academy Award for Best Actor. A third teaming with Cronenberg in A Dangerous Method (2011) resulted in a nomination for the Golden Globe Award for Best Supporting Actor - Motion Picture. Other well-received films have included Appaloosa (2008), the 2009 film adaptation of Cormac McCarthy's novel The Road, and Far from Men, an adaptation of Albert Camus' short story The Guest.

'); } 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: Viggo Mortensen

Edit

Movies playing in Southeast Michigan, new releases April 4

Press & Guide 02 Apr 2025
Showing at theaters. • “A Minecraft Movie” (PG) ... a bizarre, cubic wonderland ... • “Locked” (R) ... Vivienne Le Coudy (Vicky Krieps) is a fiercely independent woman who must fend for herself when Holger Olsen (Viggo Mortensen) goes to fight in the Civil War.
Edit

Movies playing in Southeast Michigan, new releases March 28

Press & Guide 27 Mar 2025
Showing at theaters. • “A Working Man” (R) ... In theaters, March 28. • “Death of a Unicorn” (R) ... Vivienne Le Coudy (Vicky Krieps) is a fiercely independent woman who must fend for herself when Holger Olsen (Viggo Mortensen) goes to fight in the Civil War.
Edit

Movies playing in Southeast Michigan, new releases March 21

The Oakland Press 19 Mar 2025
Disney’s “Snow White” (PG) ... In theaters, March 21 ... Entertainment . ... Vivienne Le Coudy (Vicky Krieps) is a fiercely independent woman who must fend for herself when Holger Olsen (Viggo Mortensen) goes to fight in the Civil War.
  • 1
×