2021 Netflix Movie Release Dates: The Full Schedule Of New
2021 Netflix Movie Release Dates: The Full Schedule Of New Movies Premiering This Year – CINEMABLEND jwplayer bidding plugin changed and no longer has this value defined, so making match optional */ }catch(e){ logError(‘while finding jw ad_schedule (auctionEnd)’, e); } return tags_match && units_match && positions_match; }); amazonAuction.jw.player = player; amazonAuction.jw.bid_request = jw_bidrequest; amazonAuction.jw.bidding_plugin = bidding; amazonAuction.jw.ad_schedule = ad_schedule; try{ amazonAuction.jw.bid_request.params.tag = resetAmazonVastCustParams(amazonAuction.jw.bid_request.params.tag); amazonAuction.jw.ad_schedule.tag = resetAmazonVastCustParams(amazonAuction.jw.ad_schedule.tag); }catch(e){ logError(‘resetting vast tags’, e); } var amazonSlots = codes.map(function(code){ return { slotID: ‘videoSlot’, mediaType: ‘video’ } }); try{ if (amazonSlots.length && window.apstag) { var apstag_fetchBids_config = { slots:amazonSlots, timeout: data.timeout ? parseInt(data.timeout / 2) : 1000 }; log(‘amazon.fetchBids’, { apstag: window.apstag, apstag_fetchBids_config: apstag_fetchBids_config }); apstag.fetchBids(apstag_fetchBids_config, function(bids){ amazonAuction.bids = bids; amazonAllBids = amazonAllBids.concat(bids); log(‘amazonResponse’, { lateResponse: amazonAuction.ended ? “true, prebid auction ended first – won’t use amazon bids” : false, amazonAuction: amazonAuction, bids: bids, allBids: amazonAllBids, usedBids: amazonAllBids.filter(function(b) { return b.__used; }) }); addAmazonCustParamsToVast(amazonAuction, amazonAllBids); }); } else { log(‘amazonLoaded?’, { amazonSlots: amazonSlots, apstag: window.apstag, amazonAuction: amazonAuction }); } }catch(e){ logError(‘fetching bids’, e); } log(‘jw prebid auctionInit – post’, { data: data, amazonAuction: amazonAuction, amazonAllBids: amazonAllBids }); }); jwpb.onEvent(‘auctionEnd’, function(data){ try{ var amazonAuction = amazonAuctions[data.auctionId] = amazonAuctions[data.auctionId] || { auctionId: data.auctionId }; amazonAuction.ended = true; var codes = (data.adUnits || []).map(function(adUnit){ return adUnit.code }); var prebidBids = jwpb.getHighestCpmBids(codes); log(‘jw prebid auctionEnd’, { amazonAuction: amazonAuction, prebidBids: prebidBids, data: data, amazonAuctions: amazonAuctions, amazonAllBids: amazonAllBids }); }catch(e){ logError(‘prebid auctionEnd’, e); } }); }); function resetAmazonVastCustParams(tag) { try{ var matches = tag.match(/(?:&|?)cust_params=(.*?)(?:&|$|#)/); if (matches && matches.length > 1 && matches[1].length) { var qs = decodeURIComponent(matches[1]); qs = qs.split(‘&’) .filter(function(kv){ return !kv.match(/^amzn(bid|iid|p)=/); }) .join(‘&’); if (matches[1] !== encodeURIComponent(qs)) { log(‘resetAmazonVastCustParams’, { old: matches[1], new: encodeURIComponent(qs), tag: tag }); return tag .replace(matches[1], encodeURIComponent(qs)) .replace(/cust_params=(%26)+/,’cust_params=’) .replace(/(%26){2,}/, ‘%26’); } return tag; } }catch(e){ logError(‘resetAmazonVastCustParams’, e); } return tag; } function addAmazonCustParamsToVast(auction, allBids){ try{ log(“addAmazonCustParamsToVast”, {auction:auction}); var bid; var unusedBids = allBids.filter(function(b){ return !b.__used && b.encodedQsParams; }); if (auction.bids && auction.bids.length) { bid = auction.bids[0]; } else if (unusedBids.length) { bid = unusedBids[0]; } if (!bid || !bid.encodedQsParams) { log(“addAmazonCustParamsToVast no bid”, bid); return; } // mark bid as used bid.__used = true; if (!auction.jw.bid_request.params.tag.match(/cust_params=/)) { auction.jw.bid_request.params.tag += ‘&cust_params=’; } if (!auction.jw.ad_schedule.tag.match(/cust_params=/)) {auction.jw.ad_schedule.tag += ‘&cust_params=’;} // remove any previous amazon key/vals auction.jw.bid_request.params.tag = resetAmazonVastCustParams(auction.jw.bid_request.params.tag); auction.jw.ad_schedule.tag = resetAmazonVastCustParams(auction.jw.ad_schedule.tag); // add amazon bid key/vals // have to alter both, if there are prebid bids jw uses the bid request tag, otherwise fallsback on the ad schedule tag auction.jw.bid_request.params.tag = auction.jw.bid_request.params.tag .replace(/cust_params=/, ‘cust_params=’ + bid.encodedQsParams + ‘%26′) .replace(/cust_params=(%26)+/,’cust_params=’) .replace(/(%26){2,}/, ‘%26’); auction.jw.ad_schedule.tag = auction.jw.ad_schedule.tag .replace(/cust_params=/, ‘cust_params=’ + bid.encodedQsParams + ‘%26′) .replace(/cust_params=(%26)+/,’cust_params=’) .replace(/(%26){2,}/, ‘%26’); }catch(e){ logError(“addAmazonCustParamsToVast”, e); } } function getAdUnitFromVastTag(tag) { var matches = tag.match(/[&?]iu=(/.*?)($|&|#)/); if (matches && matches.length > 1) { return matches[1]; } return ”; } function getJwPlayers(){ var i=0, players=[], player; try{ while ((player = jwplayer(i++)) && player.id) { players.push(player); } }catch(e){ logError(“getJwPlayers”, e); } return players; } var logStyle = ‘display: inline-block; color: #FF9900; background: #131A22; padding: 1px 4px 0; border-radius: 3px;’; function log(){ if (!debug) return; var args = Array.prototype.slice.call(arguments); args.unshift(logStyle); args.unshift(‘%cAmazonVideoBidding’); console.log.apply(console, args); } function logError(){ if (!debug) return; var args = Array.prototype.slice.call(arguments); args.unshift(logStyle); args.unshift(‘%cAmazonVideoBidding Error’); console.error.apply(console, args); } function polyfill(){ Array.prototype.find||Object.defineProperty(Array.prototype,”find”,{value:function(r){if(null==this)throw TypeError(‘”this” is null or not defined’);var t=Object(this),e=t.length>>>0;if(“function”!=typeof r)throw TypeError(“predicate must be a function”);for(var i=arguments[1],o=0;o = yesterday) { log(‘cached geo data retrieved’, {geo_data:geo_data, server_country:config.country}); if (geo_data.country == config.country) { config.region = geo_data.region; } } else { log(‘cached geo data expired – removing’, {geo_data:geo_data}); // expire cached geo after a day localStorage.removeItem(‘consent_geo’); } } if (config.country && config.region) { __consentwrapper_init_once(); return; } else { var geo_timeout_setting = 1000; init_timeoutID = setTimeout(function(){ log(“geo lookup timeout – running __consentwrapper.init()”); __consentwrapper_init_once(); }, geo_timeout_setting); var geoip_url; geoip_url = ‘https://apis.quantcast.mgr.consensu.org/geoip’; if (geoip_url) { try{ var start = parseInt(performance.now()); var xhr = window.XMLHttpRequest ? new window.XMLHttpRequest() : new ActiveXObject(‘MSXML2.XMLHTTP.3.0’); xhr.open(‘GET’, geoip_url, true); xhr.onloadend = function(e){ var geo = false; try{ if (xhr.response) geo = JSON.parse(xhr.response); }catch(e){} log(‘geo data response’, {geo:geo}); if (geo && geo.country && geo.region) { var country = geo.country.toUpperCase(); if (country == ‘USA’ || country == ‘US’) { config.region = geo.region.toUpperCase(); } } __consentwrapper_init_once(); if (config.region) { geo_data = { country: ‘US’, region: config.region, timestamp: (new Date()).getTime() }; localStorage.setItem(‘consent_geo’, JSON.stringify(geo_data)); } }; xhr.send(null); }catch(e){ console.error(“[Consent] wasn’t able to determine geo region – running __consentwrapper_init()”, e); __consentwrapper_init_once(); } } else { __consentwrapper_init_once(); } } }); })(); ]]> 3 && args[2] === 2 && typeof args[3] === ‘boolean’ ) { gdprApplies = args[3]; if (typeof args[2] === ‘function’) { args[2](‘set’, true); } } } else if (args[0] === ‘ping’) { var retr = { gdprApplies: gdprApplies, cmpLoaded: false, cmpStatus: ‘stub’ }; if (typeof args[2] === ‘function’) { args[2](retr); } } else { queue.push(args); } } function postMessageEventHandler(event) { var msgIsString = typeof event.data === ‘string’; var json = {}; try { if (msgIsString) { json = JSON.parse(event.data); } else { json = event.data; } } catch (ignore) {} var payload = json.__tcfapiCall; if (payload) { window.__tcfapi( payload.command, payload.version, function(retValue, success) { var returnMsg = { __tcfapiReturn: { returnValue: retValue, success: success, callId: payload.callId } }; if (msgIsString) { returnMsg = JSON.stringify(returnMsg); } event.source.postMessage(returnMsg, ‘*’); }, payload.parameter ); } } while (win) { try { if (win.frames[TCF_LOCATOR_NAME]) { cmpFrame = win; break; } } catch (ignore) {} if (win === window.top) { break; } win = win.parent; } if (!cmpFrame) { addFrame(); win.__tcfapi = tcfAPIHandler; win.addEventListener(‘message’, postMessageEventHandler, false); } }; makeStub(); var uspStubFunction = function() { var arg = arguments; if (typeof window.__uspapi !== uspStubFunction) { setTimeout(function() { if (typeof window.__uspapi !== ‘undefined’) { window.__uspapi.apply(window.__uspapi, arg); } }, 500); } }; var checkIfUspIsReady = function() { uspTries++; if (window.__uspapi === uspStubFunction && uspTries -1 && data.jurisdiction.indexOf(data.location.toUpperCase()) > -1) { window.__uspapi(‘setUspDftData’, 1, function(data, status) { if (!status) { console.log(“Consent error: default USP string not set correctly”, {data:data, status:status}); } }); } } }); } ]]>
Published: Jan. 10. 2021 7:00 AM
It is safe to say that the world got some of the best original Netflix movies in 2020. With black-and-white period dramas like David Fincher’s Mank, the critically acclaimed Ma Rainey’s Black Bottom and its multiple Oscar-worthy performances from Viola Davis and the late Chadwick Boseman, and the thought-provoking and unique documentary The Social Dilemma, Netflix movies were all anyone could talk about in a year that was filled with some of the most insane and attention-grabbing news of our generation. But with 2020 firmly in our rearview mirror, the time has come to take a look at the 2021 movie premiere dates for all the original films that will be coming to Netflix in the next 12 months.
And boy, Netflix didn’t waste any time at all preparing for yet another year of highly anticipated dramas, comedies, big-budget action thrillers, and dozens upon dozens of international releases from countries like South Korea, France, and everywhere around the world. But before we get started with this breakdown of all the original Netflix movies coming out this year, please note that each of these titles will be available at 3:01 a.m. ET (12:01 a.m. PT) on the day of their respective releases.
January 2021 Netflix Movie Releases
From gut-wrenching dramas generating a great deal of Oscar buzz like Vanessa Kirby’s performance in Pieces of a Woman to another great addition to Anthony Mackie’s stellar library of sci-fi action thrillers in Outside the Wire, the Netflix movies coming out in January 2021 are a varied bunch. Below is a breakdown of each of the original movies you will be able to watch on the OG streamer in the first month of the year.
January 1, 2021
What Happened To Mr. Cha?
The Minimalists: Less Is Now
January 6, 2021
Tony Parker: The Final Shot
January 7, 2021
January 8, 2021
Stuck Apart
January 11, 2021
Crack: Cocaine, Corruption and Conspiracy
January 14, 2021
The Heartbreak Club
January 15, 2021
Double Dad
Outside The Wire
Tribhanga
January 22, 2021
The White Tiger
January 27, 2021
Penguin Bloom
January 28, 2021
June and Kopi
January 29, 2021
Finding Ohana
The Dig
Below Zero
February 2021 Netflix Movie Releases
John David Washington, coming off his phenomenal performance as “The Protagonist” in Christopher Nolan’s Tenet, and Zendaya, who will soon reprise her role as MJ in the upcoming untitled Spider-Man movie, will be in just one of the Netflix movies coming out in February 2021 with the release of the tense drama about a filmmaker and his girlfriend titled Malcolm and Marie. And while it might be the shortest month of the year, February is loaded with potentially great movies.
February 3, 2021
All My Friends Are Dead
Black Beach
February 5, 2021
Malcolm and Marie
Space Sweepers
The Yin Yang Master: Dream of Eternity
The Last Paradiso
Little Big Women
Strip Down, Rise Up
February 10, 2021
The Misadventures of Hedi and Cokeman
February 11, 2021
Red Dot
Layla Majnun
Squared Love
February 12, 2021
To All The Boys: Always And Forever
February 16, 2021
Animals on the Loose: A You vs. Wild Movie
February 19, 2021
I Care a Lot
February 20, 2021
Classmates Minus
February 23, 2021
Pelé
February 25, 2021
Geez & Ann
February 26, 2021
Crazy About Her
Caught by a Wave
March 2021 Netflix Movie Releases
March 2021 is still a couple of months away, but there are already a few announced Netflix movies slated to be released during the third month of the year. One of those movies is Monster, an American drama first showcased at the Sundance Film Festival in 2018 that stars Jennifer Hudson, Kelvin Harrison Jr., Jennifer Ehle, Jeffrey Wright, John David Washington, and several others. And while the release date hasn’t been finalized quite yet, expect more on Monster in the coming weeks.
There are other titles being released, and more to be added, so make sure to check back for all the latest information.
March 1, 2021
Biggie: I Got A Story To Tell (Documentary)
March 3, 2021
Moxie
March 5, 2021
Sentinelle
March 8, 2021
Bombay Rose
March 12, 2021
Yes Day
Paper Lives
March 15, 2021
Struggle Alley
March 17, 2021
Operation Varsity Blues: The College Admissions Scandal (Documentary
March 18, 2021
Get the Goat
March 26, 2021
Bad Trip
Release Date TBD
Monster
April 2021 Netflix Movie Releases
April will see some of the biggest Netflix movies of the year. With everything from Concrete Cowboy to Thunder Force landing on the streaming service throughout the fourth month of 2021, there’s a lot to look forward to here.
There are other titles being released, and more to be added, so make sure to check back for all the latest information.
April 1, 2021
Tersanjung the Movie
April 2, 2021
Concrete Cowboy
Just Say Yes
Madame Claude
Sky High
April 7, 2021
This Is A Robbery: The World’s Biggest Art Heist
April 9, 2021
Night in Paradise
Thunder Force
Have You Ever Seen Fireflies?
April 12, 2021
New Gods: Nezha Reborn
April 14, 2021
The Soul
Why Did You Kill Me?
April 15, 2021
Ride or Die
April 16, 2021
Ajeeb Daastaans
Into the Beat
April 22, 2021
Life in Color with David Attenborough
Stowaway
April 23, 2021
Tell Me When
April 29, 2021
Things Heard & Seen
April 30, 2021
The Mitchells vs. The Machines
May Netflix Movie Releases
The March 2021 release of Zack Snyder’s Justice League is getting a lot of attention right now, but the recut of the 2017 DCEU crossover event film isn’t the only project coming out from the visionary director this year. In May, Army of the Dead, a project Snyder has been working on for more than a decade will finally be released.
There are other titles being released, and more to be added, so make sure to check back for all the latest information.
May 14, 2021
The Woman in the Window
May 21, 2021
Army of the Dead
Netflix Movies Coming In 2021 – No Date Set
And those are just the Netflix movies with specific release dates. Throughout 2021, Netflix will become the home to films like Zack Snyder’s long-awaited zombie movie Army of the Dead, the Dave Bautista-led action thriller following a group of mercenaries plotting a heist in the middle of Las Vegas as the dead return to walk the earth.
Another movie from an iconic director that will make its debut on Netflix later this year will be Guillermo del Toro’s adaptation of the classic Italian fairytale Pinocchio. A project that has been in the works for years now, del Toro’s take on the timeless fable will include a killer cast made up of Gregory Mann, Ewan McGregor, David Bradley, Ron Perlman, Tilda Swinton, Christoph Waltz, Tim Blake Nelson, Cate Blanchett, and many others.
Spring 2021
A Week Away
Summer 2021
Summer ’96
Mid 2021
Fear Street
Fear Street 2
Fear Street 3
The Kissing Booth 3
Late 2021
Back to the Outback
Untitled Telfaz11 film
2021
8 Rue de l’Humanité
A Castle for Christmas
A Winter’s Tale from Shaun the Sheep
Afterlife of the Party
America: The Motion Picture
Apollo 10 1/2
Arlo the Alligator Boy
Awake
Battle: Freestyle
Beauty
Beckett
Blonde
Blood Red Sky
Born to be Murdered
Bruised
Caught by a Wave
Chicken Run 2
Dancing Queens
Desert Dolphin
Diana: A New Musical
Don’t Look Up
Escape from Spiderhead
Fever Dream
Forever Rich
Fuimos Canciones
Intrusion
Kate
King of Boys 2
Loud House
Love Hard
Lulli
Munich
My Father’s Dragon
My Wife and I Bought a Ranch
Nightbooks
Night Teeth
No One Gets Out Alive
O2
Pinocchio
Red Notice
Ride or Die
Rise of the Teenage Mutant Ninja Turtles
Robin Robin
Skater Girl
Stowaway
Sweet Girl
The Divine Ponytail
The Guilty
The Hand Of God
The Harder They Fall
The Last Letter from Your Lover
The Last Mercenary
The Loud House Movie
The Power Of The Dog
The Princess Switch 3
The Starling
The Swarm
There’s Someone Inside Your House
Things Heard And Seen
Tick, Tick… Boom!
Trollhunters: Rise of the Titans
Untitled Alicia Keys Rom-Com
Untitled Alexandre Moratto Film
Untitled Graham King
Untitled Noah Baumbach film
Untitled Nora Fingscheidt project
Vinterviken 2021
We Couldn’t Become Adults
Wendell and Wild
Wish Dragon
Without a doubt, this list of original Netflix movies will for sure go through plenty of changes over the course of the next 12 months. With release dates getting fleshed out, movies getting shifted around, and new additions being made as we push through 2021, it wouldn’t be the worst idea to bookmark this list and other similar lists so you don’t miss out if Netflix decides to randomly drop a movie in the middle of the night on some random Tuesday in September. Speaking of which, go ahead and check out CinemaBlend’s 2021 Netflix TV Series Premiere Schedule, which like this guide, will be updated whenever a new title is announced.
-
-
Philip Sledge View Profile
Philip grew up in Louisiana (not New Orleans) before moving to St. Louis after graduating from Louisiana State University-Shreveport. When he’s not writing about movies or television, Philip can be found being chased by his three kids, telling his dogs to stop yelling at the mailman, or yelling about professional wrestling to his wife. If the stars properly align, he will talk about For Love Of The Game being the best baseball movie of all time.
-
<![CDATA[ (function() { var _comscore_ids = [{"c1": "2", "c2": "10055482"}]; window._comscore = window._comscore || []; for (var i = 0; i