- published: 21 Jun 2019
- views: 20546619
'+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; })); }); -->
Denzel Hayes Washington, Jr. (born December 28, 1954) is an American actor and filmmaker. He has received three Golden Globe awards, a Tony Award, and two Academy Awards: Best Supporting Actor for the historical war drama film Glory (1989) and Best Actor for his role as a corrupt cop in the crime thriller Training Day (2001).
Washington has received much critical acclaim for his film work since the 1990s, including his portrayals of real-life figures such as South African anti-apartheid activist Steve Biko in Cry Freedom (1987), Muslim minister and human rights activist Malcolm X in Malcolm X (1992), boxer Rubin "Hurricane" Carter in The Hurricane (1999), football coach Herman Boone in Remember the Titans (2000), poet and educator Melvin B. Tolson in The Great Debaters (2007), and drug kingpin Frank Lucas in American Gangster (2007). He has been a featured actor in the films produced by Jerry Bruckheimer and has been a frequent collaborator of directors Spike Lee and the late Tony Scott. In 2016 he was selected as the recipient for the Cecil B. DeMille Lifetime Achievement Award at the 73rd Golden Globe Awards.
The Equalizer is a 2014 American action neo-noir vigilante crime thriller film directed by Antoine Fuqua and written by Richard Wenk, nominally based on the television series of the same name. It stars Denzel Washington, Marton Csokas, Chloë Grace Moretz, David Harbour, Bill Pullman and Melissa Leo.
Principal photography began in June 2013 on location and took place in different cities of Massachusetts. This was the first film to have Village Roadshow Pictures co-finance the deal with Sony Pictures Entertainment since Saving Silverman in 2001. The film had its world premiere at 2014 Toronto International Film Festival on September 7, 2014, and was released worldwide on September 26.
The film received mixed to positive reviews from critics and earned a worldwide box office gross of over $192 million. A sequel has been confirmed, with Washington reprising his role.
The Equalizer is an American crime drama television series, originally airing on CBS from fall 1985 until late-spring 1989. It starred Edward Woodward as a retired espionage/intelligence officer with a mysterious past, who uses the skills from his former career to exact vigilante justice on behalf of innocent people who are hopelessly trapped in dangerous circumstances. The series combined elements of the spy film, private investigator/police procedural drama, and vigilante genres.
A film adaptation of the TV series, starring Denzel Washington, was released in the U.S. on September 26, 2014.
The series featured British actor Edward Woodward as Robert McCall, a former covert operations officer of an unnamed US government intelligence organization, which was often referred to simply as "The Agency" or "The Company" (it is implied that it is the CIA), who tries to atone for his past by offering, free of charge, his services as a troubleshooter, a protector, and an investigator. People in need find him through a newspaper ad: "Got a problem? Odds against you? Call the Equalizer. 212 555 4200." When he begins this business in the pilot episode, it is revealed that the nickname "Equalizer" was bestowed on him by another operative by the name of "Brahms," played by Jerry Stiller.
William "Bill" Danenhauer (born December 1, 1957) is an American retired professional wrestler. He is best known for his appearances with World Championship Wrestling from 1993 to 1996 under the ring name Dave Sullivan, where he played the dyslexic brother of Kevin Sullivan.
Dannenhauer attended Westside High School, where both he and his brother wrestled. He and his brother attended the University of Nebraska Omaha, where they played football for the Omaha Mavericks. Dannenhauer went on to play for the short-lived United States Football League before ending his playing career. He went on to serve as an assistant coach for the Mavericks before joining Washburn University as offensive coordinator for the Washburn Ichabods.
In 1989, Dannehauer decided to become a wrestler after meeting Harley Race at a high school tournament. He trained under Len Denton and debuted later that year.
Danenhauer started wrestling in 1989 in the National Wrestling Alliance territory Pacific Northwest Wrestling under the ring name "The Equalizer". He teamed with The Grappler as "The Wrecking Crew", with the duo winning the NWA Pacific Northwest Tag Team Championship on two occasions.
Watch the AFI Life Achievement Award honoring Denzel Washington on the TNT app and on VOD https://tnt.app.link/ppqX3LhEGX SUBSCRIBE: http://bit.ly/SubscribeTNT Download the TNT App: http://bit.ly/1GcZDJb Watch More: http://bit.ly/20FBQZI About the AFI Life Achievement Award The highest honor given for a career in film, the AFI Life Achievement Award was established by the AFI Board of Trustees in 1973. Denzel Washington will receive the 47th AFI Life Achievement Award, celebrating his life and work. The special will air on TNT on Thursday, June 20, at 10:00 p.m. ET/PT, followed by an encore at 11:30 p.m. ET/PT. Sister network Turner Classic Movies (TCM) will also air the special in September, during a night of programming dedicated to Washington's work. About TNT: TNT is basic cable's #...
In delivering the commencement speech at Dillard University, Academy Award-winning actor Denzel Washington told the college graduates to put God first in everything they do, adding that everything he has accomplished in this life was due to the grace of God. ✩ SUPPORT THE CHANNEL ✩ ✭ SHOP: https://aboveinspiration.myspreadshop.com ✭ JOIN: https://youtube.com/aboveinspiration/join ✭ DONATE: https://bit.ly/2IS5rgs ✩ FOLLOW US ✩ ✭ FACEBOOK: https://facebook.com/ABOVEINSPIRATION ✭ INSTAGRAM: https://instagram.com/above_inspiration ✭ TWITTER: https://twitter.com/ABOVE_INSPIRE ✭ WEBSITE: https://aboveinspiration.org ✭ TIKTOK: https://tiktok.com/@above__inspiration Speaker: Denzel Washington Clips used from the movie WAR ROOM from AFFIRM Films/Sony Pictures: 0:19 - 0:35 6:21 - 6:25 6:38 - 6...
From director Ridley Scott, watch the New Trailer for #GladiatorII starring Paul Mescal, Pedro Pascal, Denzel Washington, Connie Nielsen, Joseph Quinn, and Fred Hechinger - Only in theatres November 22. Connect with #GladiatorII Official Site: gladiator.movie Instagram: https://www.instagram.com/GladiatorMovie/ X: https://x.com/GladiatorMovie Facebook: https://www.facebook.com/GladiatorMovie TikTok: https://www.tiktok.com/@gladiatormovie Threads: https://www.threads.net/@gladiatormovie Paramount Pictures Corporation (PPC), a major global producer and distributor of filmed entertainment, is a unit of Viacom (NASDAQ: VIAB, VIA), home to premier global media brands that create compelling television programs, motion pictures, short-form content, apps, games, consumer products, social media e...
Watch the AFI Life Achievement Award honoring Denzel Washington on the TNT app and on VOD https://tnt.app.link/ppqX3LhEGX SUBSCRIBE: http://bit.ly/SubscribeTNT Download the TNT App: http://bit.ly/1GcZDJb Watch More: http://bit.ly/20FBQZI About the AFI Life Achievement Award: The highest honor given for a career in film, the AFI Life Achievement Award was established by the AFI Board of Trustees in 1973. Denzel Washington will receive the 47th AFI Life Achievement Award, celebrating his life and work. The special will air on TNT on Thursday, June 20, at 10:00 p.m. ET/PT, followed by an encore at 11:30 p.m. ET/PT. Sister network Turner Classic Movies (TCM) will also air the special in September, during a night of programming dedicated to Washington's work. About TNT: TNT is basic cable's ...
The Best Action & Fight Scenes From The Equalizer Movies | Buy or rent The Equalizer here: https://amzo.in/movie/85n/the-equalizer-2014 | Buy or rent The Equalizer 2 here: https://amzo.in/movie/t8i/the-equalizer-2-2018 | Buy or rent The Equalizer 3: The Final Chapter here: https://amzo.in/movie/096/the-equalizer-3-2023 | Subscribe ➤ https://abo.yt/ki | More https://KinoCheck.com?utm_source=youtube&utm_medium=description Note | #TheEqualizer #Compilation courtesy of Sony Pictures. | All Rights Reserved. | https://amzo.in are affiliate-links. That add no additional cost to you, but will support our work through a small commission. | #KinoCheck®
"What Ya Gonna Do? Shoot Me?" is a poor choice of last words... 🔥 Buy or rent the movie NOW ➤ https://bit.ly/4ee5uAt 📢 Don't miss this video ➤ https://www.youtube.com/playlist?list=PLaARvwn7BsAHvhahR0x8FHz9knp1qpWyn ✔️ Follow us on Facebook ➤ https://www.facebook.com/204568612956950 © Universal Pictures - #BoxofficeMovies #GreatMoments
WATCH THIS EVERYDAY AND CHANGE YOUR LIFE - Denzel Washington Motivational Speech 2023 Follow AlexKaltsMotivation: Instagram: https://www.instagram.com/alexkaltsmotivation/ Email(for business inquiries only):[email protected] ----------------------------------------- Music: Mitchell Broom - It's Not Over Mitchell Broom - I Have Hope Mitchell Broom - Aeon Follow Mitchell Broom : Facebook:https://www.facebook.com/MitchellBroomComposer/ Twitter:https://twitter.com/mitchellrbroom SoundCloud:https://soundcloud.com/mitchell-broom-453276890 Spotify:https://open.spotify.com/artist/67b2LjGl1sF7UyxBrRslQ7 Speech by Denzel Washington ----------------------------------------- Video Footage: All Video Footage licensed through Artgrid. -----------------------------------------
Watch The Equalizer Now: http://AAN.SonyPictures.com/TheEqualizer Watch The Equalizer 2 Now: http://AAN.SonyPictures.com/TheEqualizer2 The Equalizer / McCall, who has put his mysterious past behind him, comes out of self-retirement to serve vengeance against anyone who would brutalize the helpless. / McCall (Denzel Washington) has put his mysterious past behind him and is dedicated to living a new, quiet life. But when he meets Teri (Chloë Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he can't stand idly by. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacke...
Gladiator II, del legendario director Ridley Scott, continúa la epopeya de poder, intriga y venganza ambientada en la Antigua Roma. Años después de presenciar la muerte del admirado héroe Máximo a manos de su tío, Lucio (Paul Mescal) se ve forzado a entrar en el Coliseo tras ser testigo de la conquista de su hogar por parte de los tiránicos emperadores que dirigen Roma con puño de hierro. Con un corazón desbordante de furia y el futuro del imperio en juego, Lucio debe rememorar su pasado en busca de la fuerza y el honor que devuelvan al pueblo la gloria perdida de Roma.
Watch the AFI Life Achievement Award honoring Denzel Washington on the TNT app and on VOD https://tnt.app.link/ppqX3LhEGX SUBSCRIBE: http://bit.ly/SubscribeTNT Download the TNT App: http://bit.ly/1GcZDJb Watch More: http://bit.ly/20FBQZI About the AFI Life Achievement Award: The highest honor given for a career in film, the AFI Life Achievement Award was established by the AFI Board of Trustees in 1973. Denzel Washington will receive the 47th AFI Life Achievement Award, celebrating his life and work. The special will air on TNT on Thursday, June 20, at 10:00 p.m. ET/PT, followed by an encore at 11:30 p.m. ET/PT. Sister network Turner Classic Movies (TCM) will also air the special in September, during a night of programming dedicated to Washington's work. About TNT: TNT is basic cable's ...
Robert (Denzel Washington) finds Slavi (David Meunier) and his men at their restaurant and is refused when he offers to buy Alina's (Chloë Grace Moretz) freedom. He judges the room and their weapons, estimates the number of seconds it will take to kill them all, and then does so quickly. Watch The Equalizer Now: http://AAN.SonyPictures.com/TheEqualizer Watch The Equalizer 2 Now: http://AAN.SonyPictures.com/TheEqualizer2 The Equalizer / McCall, who has put his mysterious past behind him, comes out of self-retirement to serve vengeance against anyone who would brutalize the helpless. / McCall (Denzel Washington) has put his mysterious past behind him and is dedicated to living a new, quiet life. But when he meets Teri (Chloë Grace Moretz), a young girl under the control of ultra-violent Ru...
The Equalizer | New Released Hollywood Action English Movie 2024 | Denzel Washington Action Movie
"The two most important days in your life are the day you're born and the day you find out why." Buckle in for Denzel Washington's most intense work as Robert McCall in the first two Equalizer movies! Watch him exact vengeance for him and all those around him who've been wronged. What was your favorite Equalizer scene? Sound off in the comments below! BUY THE MOVIES: https://www.vudu.com/content/movies/details/The-Equalizer-2-Movie-Collection-Bundle-/966221?cmp=Movieclips_YT_Description Watch the best Equalizer scenes & clips: https://www.youtube.com/playlist?list=PL86SiVwkw_of2q1rC_ZQ_Mt4_KOuSZBrx Subscribe and click the bell to be notified of all your favorite movie scenes: http://bit.ly/2CZa490 CREDITS: TM & © Sony Cast: Denzel Washington, Melissa Leo, Chloe Grace Moretz, Pedro...
Release Date: 26 September 2014 (United States) In The Equalizer, Denzel Washington plays McCall, a man who believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when McCall meets Teri (Chloë Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he can't stand idly by -- he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer. Genre: Crime / Action / Thriller Cast: Denzel Washington, Marton Csokas, Chloë Grace...
#theequalizer2023 #theequalizer3 #denzelwashington #actionmovie #hollywoodmovies #englishmovies #usa #unitedstates #movie Please subscribe Our Channel.... After witnessing the execution of serial killer Edgar Reese (Elias Koteas), whom he arrested, police detective John Hobbes (Denzel Washington), and his partner, Jonesy (John Goodman), are soon investigating another murderer whose mode of operation is eerily similar to Reese's. In the course of the investigation, Hobbes meets theology professor Gretta Milano (Embeth Davidtz), who introduces him to the world of the occult and the possibility that an evil spirit is behind the killings.
The Equalizer 3 | New Released Hollywood Action English Movie 2024 | Denzel Washington Action Movie
The Equalizer - Disrespect the Badge: Bob (Denzel Washington) gets Masters (David Harbour) to help him raid Pushkin's cash drop. BUY THE MOVIE: https://www.fandangonow.com/details/movie/the-equalizer-2014/MMV01C5F4BC118B70010E955862313183B3A?cmp=Movieclips_YT_Description Watch the best The Equalizer scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqrutLWB6A7S3gAMnfVkapOm FILM DESCRIPTION: Robert McCall (Denzel Washington), a man of mysterious origin who believes he has put the past behind him, dedicates himself to creating a quiet new life. However, when he meets Teri (Chloë Grace Moretz), a teenager who has been manhandled by violent Russian mobsters, he simply cannot walk away. With his set of formidable skills, McCall comes out of self-imposed retirement and emerges as...
Buy or rent The Equalizer 2 here: https://amzo.in/movie/t8i/the-equalizer-2-2018 Denzel Washington returns to one of his signature roles in the first sequel of his career. Robert McCall serves an unflinching justice for the exploited and oppressed – but how far will he go when that is someone he loves? © Sony Pictures
STAR SCREAM https://www.youtube.com/channel/UC4LDPJbD1MbrQ-i1K5TncTw/videos?sort=da&view=0&flow=grid&view_as=subscriber ATeamDroneMissions https://www.youtube.com/channel/UC6lxLqmUx0FdBZlpEa1XLVw/videos?view=0&sort=da&view_as=subscriber&flow=grid
Watch The Equalizer Now: http://AAN.SonyPictures.com/TheEqualizer Watch The Equalizer 2 Now: http://AAN.SonyPictures.com/TheEqualizer2 The Equalizer / McCall, who has put his mysterious past behind him, comes out of self-retirement to serve vengeance against anyone who would brutalize the helpless. / McCall (Denzel Washington) has put his mysterious past behind him and is dedicated to living a new, quiet life. But when he meets Teri (Chloë Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he can't stand idly by. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacke...
Denzel Hayes Washington, Jr. (born December 28, 1954) is an American actor and filmmaker. He has received three Golden Globe awards, a Tony Award, and two Academy Awards: Best Supporting Actor for the historical war drama film Glory (1989) and Best Actor for his role as a corrupt cop in the crime thriller Training Day (2001).
Washington has received much critical acclaim for his film work since the 1990s, including his portrayals of real-life figures such as South African anti-apartheid activist Steve Biko in Cry Freedom (1987), Muslim minister and human rights activist Malcolm X in Malcolm X (1992), boxer Rubin "Hurricane" Carter in The Hurricane (1999), football coach Herman Boone in Remember the Titans (2000), poet and educator Melvin B. Tolson in The Great Debaters (2007), and drug kingpin Frank Lucas in American Gangster (2007). He has been a featured actor in the films produced by Jerry Bruckheimer and has been a frequent collaborator of directors Spike Lee and the late Tony Scott. In 2016 he was selected as the recipient for the Cecil B. DeMille Lifetime Achievement Award at the 73rd Golden Globe Awards.
[Intro]
Krispy Kreme, and Money Maker Mike, and Denzel Washington
[Hook]
I said he's Denzel Washington, the best actor ever
He's so darn cool, he's so darn clever
I think that you're the man, and Mike does too
Denzel, if you want, you can join our crew
I said he's Denzel Washington, the best actor ever
He's so darn cool, he's so darn clever
I think that you're the man, and Mike does too
Denzel, if you want, you can join our crew
[Verse 1]
I remember when I first seen the movie John Q
His son needed a heart, he knew what he had to do
He went up in the hospital and said: “Here's the deal
My name's Denzel, and I always keep it real
My son needs a heart, so you better get one fast
And if you do not hurry up, I will kick your freakin' butt.”
And guess what happened? His son got a heart
I knew that he could do it cause Denzel is really smart
And how could you ever forget Man on Fire
If you say it's not a good movie, then you're a liar
Let me tell you why Denzel is a superstar
He left the CIA to be a little girl's bodyguard
The girl got stolen, all we could do is pray
But once again Denzel comes to save the day
He gave his own life in exchange for the girl's
If you ain't heard about my homeboy Denzel he's out of this world
[Hook]
I said he's Denzel Washington, the best actor ever
He's so darn cool, he's so darn clever
I think that you're the man, and Mike does too
Denzel, if you want, you can join our crew
I said he's Denzel Washington, the best actor ever
He's so darn cool, he's so darn clever
I think that you're the man, and Mike does too
Denzel, if you want, you can join our crew
[Verse 2]
And how could you forget The Book of Eli
Where Denzel played the superhero blind guy
It was kind of sad cause everyone was bad
Denzel was the only good guy the world had
He had to hide the Bible from the thieves and the crooks
But then at the end Carnegie stole the book
You thought Denzel had lost and you were like “Dang”
But guess what? Eli memorized the whole thing
Did you forget about The Titans? Do you Remember The Titans?
With his back against the wall, Denzel just keeps on fighting
Coach Boone is the new head coach in town
They tried to make him leave, but Denzel ain't no clown
And once again Denzel comes to save the day
He earned the team's respect and he taught them boys to play
With Julius Campbell and Gerry Bertier you better cheer
Because they won the championship on that year
[Hook]
I said he's Denzel Washington, the best actor ever
He's so darn cool, he's so darn clever
I think that you're the man, and Mike does too
Denzel, if you want, you can join our crew
I said he's Denzel Washington, the best actor ever
He's so darn cool, he's so darn clever
I think that you're the man, and Mike does too
Denzel, if you want, you can join our crew