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

Lone Survivor (film)

Lone Survivor is a 2013 American war film written and directed by Peter Berg, and starring Mark Wahlberg, Taylor Kitsch, Emile Hirsch, Ben Foster, and Eric Bana. The film is based on the 2007 nonfiction book of the same name by Marcus Luttrell with Patrick Robinson. Set during the war in Afghanistan, Lone Survivor dramatizes the failed United States Navy SEALs counter-insurgent mission Operation Red Wings, during which a four-man SEAL reconnaissance and surveillance team was tasked to track down and kill Taliban leader Ahmad Shah.

Berg first learned of the book Lone Survivor in 2007, while he was filming Hancock (2008). He arranged several meetings with Luttrell to discuss adapting the book to film. Universal Pictures secured the film rights in August 2007 after bidding against other major film studios. In re-enacting the events of Operation Red Wings, Berg drew much of his screenplay from Luttrell's eyewitness accounts in the book, as well as autopsy and incident reports related to the mission. After directing Battleship (2012) for Universal, Berg returned to work on Lone Survivor. Principal photography began in October 2012 and concluded in November after 42 days; filming took place on location in New Mexico, using digital cinematography. Luttrell and several other Navy SEAL veterans acted as technical advisors, while multiple branches of the United States Armed Forces aided the film's production.

Lone Survivor

Lone Survivor may refer to:

  • Lone Survivor (book), a 2007 book by Marcus Luttrell with Patrick Robinson
  • Lone Survivor Foundation, an organization founded by Marcus Luttrell
  • Lone Survivor (film), a 2013 film based on Luttrell's book, written and directed by Peter Berg
  • Lone Survivor (video game), a 2012 survival horror video game
  • See also

  • Sole Survivor (disambiguation)
  • Lone Survivor (video game)

    Lone Survivor is an independent survival horror video game developed by Superflat Games. It was originally released for Microsoft Windows and OS X in 2012. It was later ported to the PlayStation 3 and PlayStation Vita and released on the PlayStation Network in 2013 as Lone Survivor: The Director's Cut. The Director's Cut came out on Microsoft Windows and OS X as a free update on 31 October 2013. In October 2014 the game was also made available for the PlayStation 4 and Wii U.

    Gameplay

    Lone Survivor is a post-apocalyptic survival horror game with retro-styled 2D graphics in which the player controls a nameless protagonist following directions provided by the character's apparent hallucinations. When exploring the game world the player will discover items, keys and food. The correct use of each item and key must be determined in order to solve the game's puzzles. Certain food types can be improved by cooking and/or combining them with others. Two-way mirrors found in the game world are used to teleport back to the survivor's apartment. Players possess a flashlight with which to navigate the game world; using the flashlight drains batteries; replacements can be found by scavenging. Mutants must be avoided or killed; a pistol must be found in order to attack mutants, but ammunition is scarce. When the pistol's magazine is empty the survivor automatically loads a new magazine, leaving him open to attack during the process. Mutants are attracted to light and noises, but the player can sneak past by hiding in the shadows. The game features a map for players to navigate with, however the game does not pause when the game's menus or map are accessed, leaving the survivor vulnerable.

    Lone Survivor (book)

    Lone Survivor: The Eyewitness Account of Operation Red wings and the Lost Heroes of SEAL Team 10 (2007) is a non-fiction book written by Marcus Luttrell with assistance from novelist and ghostwriter Patrick Robinson and published by Little, Brown and Company. The narrative takes place in Afghanistan, where the reader follows Marcus Luttrell and a group of U.S. Navy SEALs. It has since seen a 2013 film adaptation of the same name, with Mark Wahlberg starring as Luttrell.

    Synopsis

    At the beginning of the book, Marcus Luttrell describes his childhood and his training to prepare for the Navy SEALs with Billy Shelton. After joining the U.S. Navy and completing SEAL training, Luttrell describes his posting in Afghanistan, in the Hindu Kush mountains of the Kunar province. With him are the rest of SDVT-1, except Shane E. Patton, for whom Danny Dietz was substituted. Their mission, Operation Red Wings, was to observe a village and capture or kill a leading Taliban member thought to be allied with Osama bin Laden.

    Podcasts:

    • Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD

      Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://goo.gl/dHs73 Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD Based on the failed June 28, 2005 mission "Operation Red Wings." Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shahd. Marcus Luttrell was the only member of his team to survive. The Movieclips Trailers channel is your destination for the hottest new trailers the second they drop. Whether it's the latest studio release, an indie horror flick, an evocative documentary, or that new RomCom you've been waiting for, the Movieclips team is here day and night to make sure all the best new movie trailers are here for you the moment they're...

      published: 31 Jul 2013
    • Lone Survivor 2013 Forest Battle Scene 1080p

      Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. Copyright Discla...

      published: 21 Apr 2020
    • Lone Survivor - Best Scene 2 (HD) (War) (Movie)

      Lone Survivor - Best Scene 2 (HD) (War) (Movie) All rights belong to MoviePass Films.

      published: 06 Nov 2019
    • Lone Survivor Battle Scene 2

      Lone Survivor Battle Scene 2 Part 3 : https://www.youtube.com/watch?v=UimyPgEJwmM

      published: 02 Jul 2019
    • Lone Survivor Intro - Navy Seals training

      The intro scene from the movie 'Lone Survivor'. The Seal selection and training is one of the hardest military trainings in the world.

      published: 13 Sep 2014
    • Lone Survivor Mike Murphy's last scene

      Mike Murphy was a US Navy Seal officer who was awarded " MEDAL OF HONOR" for his ultimate sacrifice in an operation "Red Wings" in Afghanistan

      published: 13 Mar 2018
    • Lone Survivor - Trailer

      Coming Soon www.lonesurvivorfilm.com

      published: 01 Aug 2013
    • The Making of 'Lone Survivor'

      Author and Subject of Lone Survivor, Decorated Navy SEAL Marcus Luttrell takes viewers behind the scenes of the heart-wrenching story that inspired the best-selling book and blockbuster film, Lone Survivor. Learn more about Marcus Luttrell at https://www.unitedtalent.com/speaker/marcusluttrell/ See a speaker you'd love to bring to your organization or event? For the the most remarkable speakers, the most requested keynotes, and the most inspiring storytellers, contact a GTN representative today. https://www.unitedtalent.com/speakers/

      published: 25 Nov 2015
    • My favourite scene from Lone Survivor.

      published: 20 Mar 2015
    • lone survivor 1 //best action full movie💥💥war film

      published: 04 May 2020
    Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD
    2:31

    Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD

    • Order:
    • Duration: 2:31
    • Uploaded Date: 31 Jul 2013
    • views: 20817720
    Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://goo.gl/dHs73 Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD Based on the failed June 28, 2005 mission "Operation Red Wings." Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shahd. Marcus Luttrell was the only member of his team to survive. The Movieclips Trailers channel is your destination for the hottest new trailers the second they drop. Whether it's the latest studio release, an indie horror flick, an evocative documentary, or that new RomCom you've been waiting for, the Movieclips team is here day and night to make sure all the best new movie trailers are here for you the moment they're released. In addition to being the #1 Movie Trailers Channel on YouTube, we deliver amazing and engaging original videos each week. Watch our exclusive Ultimate Trailers, Showdowns, Instant Trailer Reviews, Monthly MashUps, Movie News, and so much more to keep you in the know. Here at Movieclips, we love movies as much as you!
    https://wn.com/Lone_Survivor_Official_Trailer_1_(2013)_Mark_Wahlberg_Movie_Hd
    Lone Survivor 2013 Forest Battle Scene 1080p
    6:59

    Lone Survivor 2013 Forest Battle Scene 1080p

    • Order:
    • Duration: 6:59
    • Uploaded Date: 21 Apr 2020
    • views: 452474
    Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended.
    https://wn.com/Lone_Survivor_2013_Forest_Battle_Scene_1080P
    Lone Survivor - Best Scene 2 (HD) (War) (Movie)
    6:55

    Lone Survivor - Best Scene 2 (HD) (War) (Movie)

    • Order:
    • Duration: 6:55
    • Uploaded Date: 06 Nov 2019
    • views: 103913
    Lone Survivor - Best Scene 2 (HD) (War) (Movie) All rights belong to MoviePass Films.
    https://wn.com/Lone_Survivor_Best_Scene_2_(Hd)_(War)_(Movie)
    Lone Survivor Battle Scene 2
    3:59

    Lone Survivor Battle Scene 2

    • Order:
    • Duration: 3:59
    • Uploaded Date: 02 Jul 2019
    • views: 117375
    Lone Survivor Battle Scene 2 Part 3 : https://www.youtube.com/watch?v=UimyPgEJwmM
    https://wn.com/Lone_Survivor_Battle_Scene_2
    Lone Survivor Intro - Navy Seals training
    2:58

    Lone Survivor Intro - Navy Seals training

    • Order:
    • Duration: 2:58
    • Uploaded Date: 13 Sep 2014
    • views: 3187889
    The intro scene from the movie 'Lone Survivor'. The Seal selection and training is one of the hardest military trainings in the world.
    https://wn.com/Lone_Survivor_Intro_Navy_Seals_Training
    Lone Survivor Mike Murphy's last scene
    5:31

    Lone Survivor Mike Murphy's last scene

    • Order:
    • Duration: 5:31
    • Uploaded Date: 13 Mar 2018
    • views: 185698
    Mike Murphy was a US Navy Seal officer who was awarded " MEDAL OF HONOR" for his ultimate sacrifice in an operation "Red Wings" in Afghanistan
    https://wn.com/Lone_Survivor_Mike_Murphy's_Last_Scene
    Lone Survivor - Trailer
    2:30

    Lone Survivor - Trailer

    • Order:
    • Duration: 2:30
    • Uploaded Date: 01 Aug 2013
    • views: 269909
    Coming Soon www.lonesurvivorfilm.com
    https://wn.com/Lone_Survivor_Trailer
    The Making of  'Lone Survivor'
    28:06

    The Making of 'Lone Survivor'

    • Order:
    • Duration: 28:06
    • Uploaded Date: 25 Nov 2015
    • views: 5627889
    Author and Subject of Lone Survivor, Decorated Navy SEAL Marcus Luttrell takes viewers behind the scenes of the heart-wrenching story that inspired the best-selling book and blockbuster film, Lone Survivor. Learn more about Marcus Luttrell at https://www.unitedtalent.com/speaker/marcusluttrell/ See a speaker you'd love to bring to your organization or event? For the the most remarkable speakers, the most requested keynotes, and the most inspiring storytellers, contact a GTN representative today. https://www.unitedtalent.com/speakers/
    https://wn.com/The_Making_Of_'Lone_Survivor'
    My favourite scene from Lone Survivor.
    3:01

    My favourite scene from Lone Survivor.

    • Order:
    • Duration: 3:01
    • Uploaded Date: 20 Mar 2015
    • views: 4615465
    https://wn.com/My_Favourite_Scene_From_Lone_Survivor.
    lone survivor 1 //best action full movie💥💥war film
    1:01:01

    lone survivor 1 //best action full movie💥💥war film

    • Order:
    • Duration: 1:01:01
    • Uploaded Date: 04 May 2020
    • views: 232197
    https://wn.com/Lone_Survivor_1_Best_Action_Full_Movie💥💥War_Film
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 2:03:31

    Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD

    Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://goo.gl/dHs73 Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD Based on the failed June 28, 2005 mission "Operation Red Wings." Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shahd. Marcus Luttrell was the only member of his team to survive. The Movieclips Trailers channel is your destination for the hottest new trailers the second they drop. Whether it's the latest studio release, an indie horror flick, an evocative documentary, or that new RomCom you've been waiting for, the Movieclips team is here day and night to make sure all the best new movie trailers are here for you the moment they're released. In addition to being the #1 Movie Trailers Channel on YouTube, we deliver amazing and engaging original videos each week. Watch our exclusive Ultimate Trailers, Showdowns, Instant Trailer Reviews, Monthly MashUps, Movie News, and so much more to keep you in the know. Here at Movieclips, we love movies as much as you!
    2:31
    Lone Survivor Official Trailer #1 (2013) - Mark Wahlberg Movie HD
    Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn...
    published: 31 Jul 2013
    Play in Full Screen
    6:59
    Lone Survivor 2013 Forest Battle Scene 1080p
    Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "f...
    published: 21 Apr 2020
    Play in Full Screen
    6:55
    Lone Survivor - Best Scene 2 (HD) (War) (Movie)
    Lone Survivor - Best Scene 2 (HD) (War) (Movie) All rights belong to MoviePass Films.
    published: 06 Nov 2019
    Play in Full Screen
    3:59
    Lone Survivor Battle Scene 2
    Lone Survivor Battle Scene 2 Part 3 : https://www.youtube.com/watch?v=UimyPgEJwmM
    published: 02 Jul 2019
    Play in Full Screen
    2:58
    Lone Survivor Intro - Navy Seals training
    The intro scene from the movie 'Lone Survivor'. The Seal selection and training is one of...
    published: 13 Sep 2014
    Play in Full Screen
    5:31
    Lone Survivor Mike Murphy's last scene
    Mike Murphy was a US Navy Seal officer who was awarded " MEDAL OF HONOR" for his ultimat...
    published: 13 Mar 2018
    Play in Full Screen
    2:30
    Lone Survivor - Trailer
    Coming Soon www.lonesurvivorfilm.com
    published: 01 Aug 2013
    Play in Full Screen
    28:06
    The Making of 'Lone Survivor'
    Author and Subject of Lone Survivor, Decorated Navy SEAL Marcus Luttrell takes viewers beh...
    published: 25 Nov 2015
    Play in Full Screen
    3:01
    My favourite scene from Lone Survivor.
    published: 20 Mar 2015
    Play in Full Screen
    1:01:01
    lone survivor 1 //best action full movie💥💥war film
    published: 04 May 2020
    Play in Full Screen

    Lone Survivor (film)

    Lone Survivor is a 2013 American war film written and directed by Peter Berg, and starring Mark Wahlberg, Taylor Kitsch, Emile Hirsch, Ben Foster, and Eric Bana. The film is based on the 2007 nonfiction book of the same name by Marcus Luttrell with Patrick Robinson. Set during the war in Afghanistan, Lone Survivor dramatizes the failed United States Navy SEALs counter-insurgent mission Operation Red Wings, during which a four-man SEAL reconnaissance and surveillance team was tasked to track down and kill Taliban leader Ahmad Shah.

    Berg first learned of the book Lone Survivor in 2007, while he was filming Hancock (2008). He arranged several meetings with Luttrell to discuss adapting the book to film. Universal Pictures secured the film rights in August 2007 after bidding against other major film studios. In re-enacting the events of Operation Red Wings, Berg drew much of his screenplay from Luttrell's eyewitness accounts in the book, as well as autopsy and incident reports related to the mission. After directing Battleship (2012) for Universal, Berg returned to work on Lone Survivor. Principal photography began in October 2012 and concluded in November after 42 days; filming took place on location in New Mexico, using digital cinematography. Luttrell and several other Navy SEAL veterans acted as technical advisors, while multiple branches of the United States Armed Forces aided the film's production.

    '); } 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: lone survivor (film)

    Edit

    Alex Garland on making Warfare – and some new enemies

    The Daily Telegraph 28 Mar 2025
    Mendoza had started consulting on film sets while he was still on active duty, offering guidance on projects ranging from Lone Survivor (2013) to 2015’s Jurassic World ... Surely, even if secretly, the film was on their side?.
    • 1
    ×