From e456858b6ceea98037a253b010c45aa4734a4c70 Mon Sep 17 00:00:00 2001 From: rooyca Date: Wed, 13 Mar 2024 00:54:43 -0500 Subject: [PATCH] update: first working release --- .github/workflows/deploy.yaml | 20 +- builder/builder.js | 40 + builder/movies.json | 10435 ++++++++++++++++++++++++++++++++ src/img_movie.jpg | Bin 31527 -> 0 bytes 4 files changed, 10494 insertions(+), 1 deletion(-) create mode 100644 builder/builder.js create mode 100644 builder/movies.json delete mode 100644 src/img_movie.jpg diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 23d1a8a..25bd0c0 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -1,8 +1,26 @@ name: Build and Deploy -on: [push] +on: + push: + schedule: + - cron: '0 00 * * *' # At 00:00 everyday + workflow_dispatch: + permissions: contents: write jobs: + create-current: + # the job runs a js script to create a current.json file + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Create current.json 📝 + run: node ./builder/builder.js + + - name: Move current.json 📝 + run: mv current.json src/current.json + build-and-deploy: concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. runs-on: ubuntu-latest diff --git a/builder/builder.js b/builder/builder.js new file mode 100644 index 0000000..832d8d0 --- /dev/null +++ b/builder/builder.js @@ -0,0 +1,40 @@ +// Function to generate sequential numbers +function generateSequentialNumbers(startDate, endDate) { + let result = []; + let currentDate = new Date(startDate); + + while (currentDate <= endDate) { + result.push(currentDate.getTime()); + currentDate.setDate(currentDate.getDate() + 1); + } + return result; +} + +function getMovieFromJsonAtIndex(index){ + const movies = require('./movies.json'); + return movies['movies'][index]; +} + +// Set the start and end dates +const startDate = new Date('2024-03-13'); // Current date +const endDate = new Date('2027-05-15'); // End date + +// Generate sequential numbers +const sequentialNumbers = generateSequentialNumbers(startDate, endDate); + +const today = new Date(); +const formattedDate = today.toISOString().split('T')[0]; + +for (let index = 0; index < sequentialNumbers.length; index++) { + const number = sequentialNumbers[index]; + const date = new Date(number); + if (date.toISOString().split('T')[0] === formattedDate) { + console.log(`Today's number is: ${index+1}`); + const movieToday = getMovieFromJsonAtIndex(index); + console.log(`Today's movie: ${movieToday}`); + const fs = require('fs'); + const content = JSON.stringify(movieToday); + fs.writeFileSync('current.json', content); + break; + } +} diff --git a/builder/movies.json b/builder/movies.json new file mode 100644 index 0000000..c10de57 --- /dev/null +++ b/builder/movies.json @@ -0,0 +1,10435 @@ +{ + "movies": [ + { + "title": "Le Voyage Dans La Lune", + "director": "Georges M\u00e9li\u00e8s", + "year": "2011", + "tags": "Adventure", + "desc": "Professor Barbenfouillis and five of his colleagues from the Academy of Astronomy travel to the Moon aboard a rocket propelled by a giant cannon. Once on the lunar surface, the bold explorers face the many perils hidden in the caves of the mysterious planet.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9o0v5LLFk51nyTBHZSre6OB37n2.jpg", + "length": "0h 15m" + }, + { + "title": "The Great Train Robbery", + "director": "Edwin S. Porter", + "year": "1903", + "tags": "Crime", + "desc": "After the train station clerk is assaulted and left bound and gagged, then the departing train and its passengers robbed, a posse goes in hot pursuit of the fleeing bandits.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vEYr1sJR1dOFGXwXawpBN6hDRGF.jpg", + "length": "0h 12m" + }, + { + "title": "The Birth of a Nation", + "director": "D.W. Griffith", + "year": "1915", + "tags": "Drama", + "desc": "Two families, abolitionist Northerners the Stonemans and Southern landowners the Camerons, intertwine. When Confederate colonel Ben Cameron is captured in battle, nurse Elsie Stoneman petitions for his pardon. In Reconstruction-era South Carolina, Cameron founds the Ku Klux Klan, battling Elsie's congressman father and his African-American prot\u00e9g\u00e9, Silas Lynch.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pNpOXpQI5GSUfiWypubYtMh9928.jpg", + "length": "3h 13m" + }, + { + "title": "Les Vampires", + "director": "Louis Feuillade", + "year": "1916", + "tags": "Drama", + "desc": "Paris is prey to an invisible terror against which the police can do nothing: a sinister organization that sows chaos and death. The intrepid journalist Philippe Gu\u00e9rande and his partner embark on a long crusade to put an end to the crimes of the Great Vampire and Irma Vep, his dangerous accomplice. (A ten episode movie serial.)", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8jO0Zmd468zS9WRLHpwsKUowZAX.jpg", + "length": "7h 2m" + }, + { + "title": "Intolerance", + "director": "Volodymyr Bakum", + "year": "1916", + "tags": "#Movie", + "desc": "", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/scUM2zsxbUHPLKqJAMAdMYxlDVN.jpg", + "length": "0h 16m" + }, + { + "title": "The Cabinet of Dr. Caligari", + "director": "Robert Wiene", + "year": "1920", + "tags": "Drama", + "desc": "Francis, a young man, recalls in his memory the horrible experiences he and his fianc\u00e9e Jane recently went through. Francis and his friend Alan visit The Cabinet of Dr. Caligari, an exhibit where the mysterious doctor shows the somnambulist Cesare, and awakens him for some moments from his death-like sleep.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/myK9DeIsXWGKgUTZyGXg2IfFk0W.jpg", + "length": "1h 18m" + }, + { + "title": "Broken Blossoms", + "director": "D.W. Griffith", + "year": "1919", + "tags": "Drama", + "desc": "The love story of an abused English girl and a Chinese Buddhist in a time when London was a brutal and harsh place to live.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/l9rHRp7Yb2PVy5Qd5wUR9coXZoy.jpg", + "length": "1h 29m" + }, + { + "title": "Way Down East", + "director": "D.W. Griffith", + "year": "1920", + "tags": "Drama", + "desc": "A naive country girl is tricked into a sham marriage by a wealthy womanizer, then must rebuild her life despite the taint of having borne a child out of wedlock.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xzrSiQuiSb5hKePkU9AFuCcgRxE.jpg", + "length": "2h 30m" + }, + { + "title": "Within Our Gates", + "director": "Oscar Micheaux", + "year": "1920", + "tags": "Drama", + "desc": "Abandoned by her fianc\u00e9, an educated black woman with a traumatizing past dedicates herself to helping a near bankrupt school for impoverished black children.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uz1ONg4DXS9VulSlgF7SOzY7Hz1.jpg", + "length": "1h 14m" + }, + { + "title": "The Phantom Carriage", + "director": "Victor Sj\u00f6str\u00f6m", + "year": "1921", + "tags": "Drama", + "desc": "An alcoholic, abusive ne'er-do-well is shown the error of his ways through a legend that dooms the last person to die on New Year's Eve before the clock strikes twelve to take the reins of Death's chariot and work tirelessly collecting fresh souls for the next year.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vmhMEj2d8JnKS5jzqJf4kYypKWN.jpg", + "length": "2h 46m" + }, + { + "title": "Orphans of the Storm", + "director": "D.W. Griffith", + "year": "1921", + "tags": "Drama", + "desc": "France, on the eve of the French Revolution. Henriette and Louise have been raised together as sisters. When the plague that takes their parents' lives causes Louise's blindness, they decide to travel to Paris in search of a cure, but they separate when a lustful aristocrat crosses their path.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gbBzFuiVnuSPYZRXRArILc3Ywz3.jpg", + "length": "2h 30m" + }, + { + "title": "The Smiling Madame Beudet", + "director": "Germaine Dulac", + "year": "1923", + "tags": "Drama", + "desc": "An unhappily married woman devises a scheme to get rid of her husband.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xUdd29vYVJKjDUrjdYfpxytQIdf.jpg", + "length": "1h 42m" + }, + { + "title": "Dr. Mabuse, the Gambler", + "director": "Fritz Lang", + "year": "1922", + "tags": "Crime", + "desc": "Dr. Mabuse and his organization of criminals are in the process of completing their latest scheme, a theft of information that will allow Mabuse to make huge profits on the stock exchange. Afterwards, Mabuse disguises himself and attends the Folies Berg\u00e8res show, where Cara Carozza, the main attraction of the show, passes him information on Mabuse's next intended victim, the young millionaire Edgar Hull. Mabuse then uses psychic manipulation to lure Hull into a card game where he loses heavily. When Police Commissioner von Wenk begins an investigation of this mysterious crime spree, he has little to go on, and he needs to find someone who can help him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ysHJDo9do2USU1BhWxcT0WO9WTO.jpg", + "length": "5h 31m" + }, + { + "title": "Nanook of the North", + "director": "Robert Flaherty", + "year": "1922", + "tags": "Documentary", + "desc": "This pioneering documentary film depicts the lives of the indigenous Inuit people of Canada's northern Quebec region. Although the production contains some fictional elements, it vividly shows how its resourceful subjects survive in such a harsh climate, revealing how they construct their igloo homes and find food by hunting and fishing. The film also captures the beautiful, if unforgiving, frozen landscape of the Great White North, far removed from conventional civilization.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9WAboi1QbKu41WkyGxQVNpXwwxx.jpg", + "length": "1h 19m" + }, + { + "title": "Nosferatu", + "director": "F. W. Murnau", + "year": "1922", + "tags": "Horror", + "desc": "In this highly influential silent horror film, the mysterious Count Orlok (Max Schreck) summons Thomas Hutter (Gustav von Wangenheim) to his remote Transylvanian castle in the mountains. The eerie Orlok seeks to buy a house near Hutter and his wife, Ellen (Greta Schroeder). After Orlok reveals his vampire nature, Hutter struggles to escape the castle, knowing that Ellen is in grave danger. Meanwhile Orlok's servant, Knock (Alexander Granach), prepares for his master to arrive at his new home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zv7J85D8CC9qYagAEhPM63CIG6j.jpg", + "length": "2h 35m" + }, + { + "title": "Foolish Wives", + "director": "Erich von Stroheim", + "year": "1922", + "tags": "Drama", + "desc": "A con artist masquerades as Russian nobility and attempts to seduce the wife of an American diplomat.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/q8HI0WqwLKY2O1JYyFUF9awi3br.jpg", + "length": "2h 23m" + }, + { + "title": "H\u00e4", + "director": "Evann Chantrel", + "year": "1922", + "tags": "Comedy", + "desc": "", + "img": "600x900.svg", + "length": "0h 0m" + }, + { + "title": "Our Hospitality", + "director": "Buster Keaton", + "year": "1923", + "tags": "Comedy", + "desc": "A young man falls for a young woman on his trip home; unbeknownst to him, her family has vowed to kill every member of his family.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cAEdL6RzfDSbPO51izl01Njzikx.jpg", + "length": "1h 13m" + }, + { + "title": "La Roue", + "director": "Abel Gance", + "year": "1923", + "tags": "Drama", + "desc": "Sisif, a railwayman, saves a young girl named Norma orphaned by a train crash and raises her as his own daughter alongside his son, Elie. As she becomes an adult, Sisif grapples with whether to tell Norma the truth about her parentage.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5ed3ywd7lmDPhsCXmcdSih9SxP2.jpg", + "length": "7h 58m" + }, + { + "title": "The Thief of Bagdad", + "director": "Raoul Walsh", + "year": "1924", + "tags": "Romance", + "desc": "A recalcitrant thief vies with a duplicitous Mongol ruler for the hand of a beautiful princess.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8t4CJ591N2FATf2yUiQNQk9p0tB.jpg", + "length": "2h 29m" + }, + { + "title": "Strike", + "director": "Sarah Kernochan", + "year": "1925", + "tags": "Drama", + "desc": "In the 1960s, a group of friends at an all girls school learn that their school is going to be combined with a nearby all boys school. They concoct a plan to save their school while dealing with everyday problems along the way.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cCr8mLqIVkbjBNs1uaZPvkXYnWA.jpg", + "length": "2h 37m" + }, + { + "title": "Greed", + "director": "Erich von Stroheim", + "year": "1924", + "tags": "Drama", + "desc": "A lottery win of $5,000 forever changes the lives of a miner turned dentist and his wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zT8XclM0tX5nVsnU3Idsn2Nzdo5.jpg", + "length": "2h 20m" + }, + { + "title": "Sherlock, Jr.", + "director": "Buster Keaton", + "year": "1924", + "tags": "Action", + "desc": "A film projectionist longs to be a detective, and puts his meagre skills to work when he is framed by a rival for stealing his girlfriend's father's pocketwatch.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1G9r3rqtbFAQuyWKOZm4Y5J5s7Q.jpg", + "length": "1h 45m" + }, + { + "title": "The Last Laugh", + "director": "F. W. Murnau", + "year": "1924", + "tags": "Drama", + "desc": "An aging doorman, after being fired from his prestigious job at a luxurious hotel is forced to face the scorn of his friends, neighbours and society.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7Y6Dxr3oYt1w7ew70YNdLLDYEjk.jpg", + "length": "2h 30m" + }, + { + "title": "The Great White Silence", + "director": "Herbert G. Ponting", + "year": "1924", + "tags": "Documentary", + "desc": "Herbert Ponting travelled to Antarctica as part of Captain Scott's ill-fated South pole expedition and shot the footage that makes up this extraordinary documentary.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iO2AtpH1M85hg6QYgnM5srHRlPC.jpg", + "length": "2h 48m" + }, + { + "title": "Seven Chances", + "director": "Buster Keaton", + "year": "1925", + "tags": "Comedy", + "desc": "Struggling stockbroker Jimmie Shannon learns that, if he gets married by 7 p.m. on his 27th birthday -- which is today -- he'll inherit $7 million from an eccentric relative.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fH9woIxzqVtyv6S711vSVlS12eA.jpg", + "length": "1h 56m" + }, + { + "title": "The Phantom of the Opera", + "director": "Rupert Julian", + "year": "1925", + "tags": "Drama", + "desc": "The deformed Phantom who haunts the Paris Opera House causes murder and mayhem in an attempt to make the woman he loves a star.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mvaYpAYj957C2tlq3vVJPSzGJXK.jpg", + "length": "2h 47m" + }, + { + "title": "Battleship Potemkin", + "director": "Sergei Eisenstein", + "year": "1925", + "tags": "Drama", + "desc": "A dramatized account of a great Russian naval mutiny and a resultant public demonstration, showing support, which brought on a police massacre. The film had an incredible impact on the development of cinema and is a masterful example of montage editing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tjnaRiHUsxBADaOwrQpnTnjHVwi.jpg", + "length": "1h 15m" + }, + { + "title": "The Gold Rush", + "director": "Charlie Chaplin", + "year": "1925", + "tags": "Adventure", + "desc": "A gold prospector in Alaska struggles to survive the elements and win the heart of a dance hall girl.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eQRFo1qwRREYwj47Yoe1PisgOle.jpg", + "length": "2h 35m" + }, + { + "title": "The Big Parade", + "director": "King Vidor", + "year": "1925", + "tags": "Romance", + "desc": "The story of an idle rich boy who joins the US Army's Rainbow Division and is sent to France to fight in World War I, becomes friends with two working class men, experiences the horrors of trench warfare, and finds love with a French girl.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8aBXJEkAHcwG2ghNYh6GIFd9ool.jpg", + "length": "3h 31m" + }, + { + "title": "The Adventures of Prince Achmed", + "director": "Lotte Reiniger", + "year": "1926", + "tags": "Animation", + "desc": "Based on stories from \"The Arabian Nights\". A wicked sorcerer tricks Prince Achmed into riding a magical flying horse. The heroic prince is able to subdue the magical horse, which he uses to fly off to many adventures. While travelling, he falls in love with the beautiful Princess Peri Banu, and must defeat an army of demons to win her heart. The film is animated using the silhouette technique.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c3OKMlt9QxpPeSfpyViqYkYFvUz.jpg", + "length": "1h 6m" + }, + { + "title": "Metropolis", + "director": "Fritz Lang", + "year": "1927", + "tags": "Drama", + "desc": "In a futuristic city sharply divided between the rich and the poor, the son of the city's mastermind meets a prophet who predicts the coming of a savior to mediate their differences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pxbGZewX327IbTvrCVRJgcLJTSQ.jpg", + "length": "2h 29m" + }, + { + "title": "Sunrise: A Song of Two Humans", + "director": "F. W. Murnau", + "year": "1927", + "tags": "Drama", + "desc": "A married farmer falls under the spell of a slatternly woman from the city, who tries to convince him to drown his wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oj8ZW8jKXBSs8F1e5iWsTUeXSJW.jpg", + "length": "2h 34m" + }, + { + "title": "The General", + "director": "Buster Keaton", + "year": "1926", + "tags": "Comedy", + "desc": "During America\u2019s Civil War, Union spies steal engineer Johnny Gray's beloved locomotive, 'The General'\u2014with Johnnie's lady love aboard an attached boxcar\u2014and he single-handedly must do all in his power to both get The General back and to rescue Annabelle.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nIp4gIXogCjfB1QABNsWwa9gSca.jpg", + "length": "1h 19m" + }, + { + "title": "The Unknown", + "director": "Tod Browning", + "year": "1927", + "tags": "Drama", + "desc": "A criminal on the run hides in a circus and seeks to possess the daughter of the ringmaster at any cost.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c9R1wE1vMJWMZNdmqXUV8oTaCPQ.jpg", + "length": "1h 8m" + }, + { + "title": "October: Ten Days That Shook the World", + "director": "Sergei Eisenstein", + "year": "1928", + "tags": "Drama", + "desc": "Sergei M. Eisenstein's docu-drama about the 1917 October Revolution in Russia. Made ten years after the events and edited in Eisenstein's 'Soviet Montage' style, it re-enacts in celebratory terms several key scenes from the revolution.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tsfz9Ak1slSnxr6mSmRD3Wj7YZS.jpg", + "length": "2h 55m" + }, + { + "title": "The Jazz Singer", + "director": "Alan Crosland", + "year": "1927", + "tags": "Drama", + "desc": "A young Jewish man is torn between tradition and individuality when his old-fashioned family objects to his career as a jazz singer. This is the first full length feature film to use synchronized sound, and is the original film musical.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ruQGTDWt6aVzLPfr0uPm3KjQK3b.jpg", + "length": "1h 29m" + }, + { + "title": "Napoleon", + "director": "Abel Gance", + "year": "1927", + "tags": "Drama", + "desc": "A biopic of Napoleon Bonaparte, tracing the Corsican's career from his schooldays (where a snowball fight is staged like a military campaign) to his flight from Corsica, through the French Revolution (where a real storm is intercut with a political storm) and the Terror, culminating in his triumphant invasion of Italy in 1797.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/x0duTwP9rjVpa2O13r1GK8j61qG.jpg", + "length": "6h 33m" + }, + { + "title": "The Kid Brother", + "director": "Ted Wilde", + "year": "1927", + "tags": "Comedy", + "desc": "The most important family in Hickoryville is (not surprisingly) the Hickorys, with sheriff Jim and his tough manly sons Leo and Olin. The timid youngest son, Harold, doesn't have the muscles to match up to them, so he has to use his wits to win the respect of his strong father and also the love of beautiful Mary.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wH5VcRHUdR0ZIb938mVEbPzF13c.jpg", + "length": "1h 22m" + }, + { + "title": "The Crowd", + "director": "King Vidor", + "year": "1928", + "tags": "Drama", + "desc": "John, an ambitious but undisciplined New York City office worker, meets and marries Mary. They start a family, struggle to cope with marital stress, financial setbacks, and tragedy, all while lost amid the anonymous, pitiless throngs of the big city.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jftzHLCZLE2DOLQWY0mENOIPjxc.jpg", + "length": "2h 38m" + }, + { + "title": "The Docks of New York", + "director": "Josef von Sternberg", + "year": "1928", + "tags": "Drama", + "desc": "A blue-collar worker on New York's depressed waterfront finds his life changed after he saves a woman attempting suicide.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rCMZpfPAHeuy02nMCttEX3OJt4B.jpg", + "length": "1h 16m" + }, + { + "title": "Un Chien Andalou", + "director": "Luis Bu\u00f1uel", + "year": "1929", + "tags": "Horror", + "desc": "Un Chien Andalou is an European avant-garde surrealist film, a collaboration between director Luis Bu\u00f1uel and Salvador Dali.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/e4NcFlKkyTBN9ZtBuK4RUiEzouw.jpg", + "length": "0h 21m" + }, + { + "title": "The Passion of Joan of Arc", + "director": "Carl Theodor Dreyer", + "year": "1928", + "tags": "Drama", + "desc": "A classic of the silent age, this film tells the story of the doomed but ultimately canonized 15th-century teenage warrior. On trial for claiming she'd spoken to God, Jeanne d'Arc is subjected to inhumane treatment and scare tactics at the hands of church court officials. Initially bullied into changing her story, Jeanne eventually opts for what she sees as the truth. Her punishment, a famously brutal execution, earns her perpetual martyrdom.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8OYGtQlO8k9PcOm49apV62eVJQo.jpg", + "length": "1h 22m" + }, + { + "title": "Steamboat Bill, Jr.", + "director": "Charles Reisner", + "year": "1928", + "tags": "Comedy", + "desc": "The just-out-of-college, effete son of a no-nonsense steamboat captain comes to visit his father whom he's not seen since he was a child.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zygJMsmXxeyDc1N67OCZc8xtq4I.jpg", + "length": "1h 10m" + }, + { + "title": "Storm Over Asia", + "director": "Vsevolod Pudovkin", + "year": "1928", + "tags": "Drama", + "desc": "In 1918 a young and simple Mongol herdsman and trapper is cheated out of a valuable fox fur by a European capitalist fur trader. Ostracized from the trading post, he escapes to the hills after brawling with the trader who cheated him. In 1920 he becomes a Soviet partisan, and helps the partisans fight for the Soviets against the occupying British army. However he is captured by the British when they try to requisition cattle from the herdsmen at the same time as the commandant meets with a reincarnated Grand Lama. After the trapper is shot, the army discovers an amulet that suggests he is a direct descendant of Genghis Khan. They find him still alive, so the army restores his health and plans to use him as the head of a puppet regime. The trapper is thus thrust into prominence as he is placed in charge of the puppet government. By the end, however, the \"puppet\" turns against his masters in an outburst of fury.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ymzADiDk85KsI683tI21A4oaWT7.jpg", + "length": "2h 7m" + }, + { + "title": "Blackmail", + "director": "Alfred Hitchcock", + "year": "1929", + "tags": "Drama", + "desc": "London, 1929. Frank Webber, a very busy Scotland Yard detective, seems to be more interested in his work than in Alice White, his girlfriend. Feeling herself ignored, Alice agrees to go out with an elegant and well-mannered artist who invites her to visit his fancy apartment.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7ioNEKouUkkWyv5tUDwVUd7BDRR.jpg", + "length": "1h 26m" + }, + { + "title": "Man With a Movie Camera", + "director": "Dziga Vertov", + "year": "1929", + "tags": "Documentary", + "desc": "A cameraman wanders around with a camera slung over his shoulder, documenting urban life with dazzling inventiveness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vJgAdgJWX54v0oXfIvhwjlZnmgn.jpg", + "length": "1h 8m" + }, + { + "title": "Pandora's Box", + "director": "G.W. Pabst", + "year": "1929", + "tags": "Drama", + "desc": "Lulu is a young woman so beautiful and alluring that few can resist her siren charms. The men drawn into her web include respectable newspaper publisher Dr. Ludwig Sch\u00f6n, his musical producer son Alwa, circus performer Rodrigo Quast, and seedy old Schigolch. When Lulu's charms inevitably lead to tragedy, the downward spiral encompasses them all.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xw5KFcTBYyvu4IzQY5ErgBQ73Eq.jpg", + "length": "2h 13m" + }, + { + "title": "Throw of the Dice", + "director": "Not known", + "year": "1930", + "tags": "#Movie", + "desc": "Not known", + "img": "600x900.svg", + "length": "0h 0m" + }, + { + "title": "The Blue Angel", + "director": "Josef von Sternberg", + "year": "1930", + "tags": "Drama", + "desc": "Prim professor Immanuel Rath finds some of his students ogling racy photos of cabaret performer Lola Lola and visits a local club, The Blue Angel, in an attempt to catch them there. Seeing Lola perform, the teacher is filled with lust, eventually resigning his position at the school to marry the young woman. However, his marriage to a coquette -- whose job is to entice men -- proves to be more difficult than Rath imagined.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3FStCU5ipNGmwASfHVP282IO39z.jpg", + "length": "2h 48m" + }, + { + "title": "L'\u00e2ge D'Or", + "director": "Luis Bu\u00f1uel", + "year": "1930", + "tags": "Romance", + "desc": "The film consists of a series of tightly interlinked vignettes, the most sustained of which details the story of a man and a woman who are passionately in love. Their attempts to consummate their passion are constantly thwarted, by their families, by the Church and bourgeois society in general.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/q3OH9Yk3hOE5uYEK55ASjEtsPfE.jpg", + "length": "1h 3m" + }, + { + "title": "Zemlya", + "director": "Valentin Vinogradov", + "year": "1930", + "tags": "Romance", + "desc": "Ivan Gromov receives a telegram about his father's imminent death. He returns to his hometown in the country after many years away in the big city. However, he misses the funeral, arriving instead at his empty childhood home. He meets with his brother Semyon and his brother's longtime neighbor and love interest, Valentina, who won't return the latter's affections. A feud over Valentina ensues.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5sCh7E3tBNzvl0mnDSqY33a6wMD.jpg", + "length": "1h 27m" + }, + { + "title": "Little Caesar", + "director": "Mervyn LeRoy", + "year": "1931", + "tags": "Drama", + "desc": "A small-time hood shoots his way to the top, but how long can he stay there?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1K3Q1tAHHA5Sdtja2pPALBQevA7.jpg", + "length": "1h 19m" + }, + { + "title": "All Quiet on the Western Front", + "director": "Lewis Milestone", + "year": "1930", + "tags": "Drama", + "desc": "When a group of idealistic young men join the German Army during World War I, they are assigned to the Western Front, where their patriotism is destroyed by the harsh realities of combat.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1wZUB08igw8iLUgF1r4T6aJD65b.jpg", + "length": "2h 13m" + }, + { + "title": "\u00c0 Nous La Libert\u00e9", + "director": "Ren\u00e9 Clair", + "year": "1931", + "tags": "Comedy", + "desc": "In this classic French satire, Louis, a convict, escapes from prison and takes on legitimate work, making his way up in the business world. Eventually becoming the head of a successful factory, Louis opts to modernize his company with mechanical innovations. But when his friend \u00c9mile finally leaves jail years later and reunites with Louis, the past catches up with them. The two, worried about being apprehended by police, long to flee the confines of industry.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z6XdIxE1CRqSgfOJxX1nGik6CGm.jpg", + "length": "2h 35m" + }, + { + "title": "Le Million", + "director": "Ren\u00e9 Clair", + "year": "1931", + "tags": "Comedy", + "desc": "Debt-ridden painter Michel is overcome with joy at discovering that he has just won 1 million florins in the Dutch lottery, but almost immediately, he discovers that his softhearted girlfriend, B\u00e9atrice, has given away his jacket containing the winning ticket to an elderly petty thief. Soon Michel, Beatrice and Michel's artistic rival, Prosper, are hurtling through the streets of Paris on the trail of the missing jacket.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tNxaR9GBrQVBsGVc5CUxXrUWWxd.jpg", + "length": "1h 23m" + }, + { + "title": "Tabu", + "director": "F. W. Murnau", + "year": "1931", + "tags": "Romance", + "desc": "On the South Pacific island of Bora Bora, a young couple's love is threatened when the tribal chief declares the girl a sacred virgin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c4zfawkB8Jsp5lhWl62QCzczR3M.jpg", + "length": "1h 26m" + }, + { + "title": "Dracula", + "director": "Karl Freund", + "year": "1931", + "tags": "Horror", + "desc": "British estate agent Renfield travels to Transylvania to meet with the mysterious Count Dracula, who is interested in leasing a castle in London and is, unbeknownst to Renfield, a vampire. After Dracula enslaves Renfield and drives him to insanity, the pair sail to London together, and as Dracula begins preying on London socialites, the two become the subject of study for a supernaturalist professor, Abraham Van Helsing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ueVSPt7vAba0XScHWTDWS5tNxYX.jpg", + "length": "1h 14m" + }, + { + "title": "Frankenstein", + "director": "James Whale", + "year": "1931", + "tags": "Drama", + "desc": "Tampering with life and death, Henry Frankenstein pieces together salvaged body parts to bring a human monster to life; the mad scientist's dreams are shattered by his creation's violent rage as the monster awakens to a world in which he is unwelcome.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mu6wHwH0IwCCaEYtpqujuPJYat1.jpg", + "length": "1h 11m" + }, + { + "title": "City Lights", + "director": "Charlie Chaplin", + "year": "1931", + "tags": "Comedy", + "desc": "In this sound-era silent film, a tramp falls in love with a beautiful blind flower seller.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bXNvzjULc9jrOVhGfjcc64uKZmZ.jpg", + "length": "1h 27m" + }, + { + "title": "The Public Enemy", + "director": "William A. Wellman", + "year": "1931", + "tags": "Crime", + "desc": "Two young Chicago hoodlums, Tom Powers and Matt Doyle, rise up from their poverty-stricken slum life to become petty thieves, bootleggers and cold-blooded killers. But with street notoriety and newfound wealth, the duo feels the heat from the cops and rival gangsters both. Despite his ruthless criminal reputation, Tom tries to remain connected to his family, however, gang warfare and the need for revenge eventually pull him away.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vVxdaRMprQO2DM4AFyJ6C4qZSFO.jpg", + "length": "1h 23m" + }, + { + "title": "M", + "director": "Sara Forestier", + "year": "1931", + "tags": "Drama", + "desc": "Lila and Mo meet at a bus stop. Lila has a paralyzing speech impediment. Mo is chatty and exuberant. Lila is preparing for her exams. Mo illegally races cars for a living. Opposites attract, and they fall in love. But Mo carries a secret burden\u2026", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jZscdAHWyTKo2FpwHgIud22ErgW.jpg", + "length": "2h 40m" + }, + { + "title": "La Chienne", + "director": "Jean Renoir", + "year": "1931", + "tags": "Drama", + "desc": "Cashier Maurice Legrand is married to Adele, a terror. By chance, he meets Lucienne, \"Lulu\", and make her his mistress. He thinks he finally met love, but Lulu is nothing but a streetwalker, in love with Dede, her pimp. She only accepts Legrand to satisfy Dede's needs of money.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oX2W3mkHCrG9VRlbzB0MD8GeAcB.jpg", + "length": "2h 36m" + }, + { + "title": "Limite", + "director": "M\u00e1rio Peixoto", + "year": "1931", + "tags": "Drama", + "desc": "Adrift in the vast expanse of the ocean, a solitary boat carries three castaways\u2014a man and two women. Stranded and devoid of any glimmer of rescue, they find solace in recounting the tales of their lives to one another. As they delve into their personal narratives, reminiscing about the circumstances that led them to this desolate predicament, they navigate through the depths of three distinct destinies. Bound by the confines of their shared space, every aspect of their existence becomes a boundary, underscoring their plight.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/niPtTQV4zuzWZl4xvKNGJYpHLDu.jpg", + "length": "2h 0m" + }, + { + "title": "Vampyr", + "director": "Carl Theodor Dreyer", + "year": "1932", + "tags": "Horror", + "desc": "A student of the occult encounters supernatural haunts and local evildoers in a village outside of Paris.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yt3JS5JSoZseSohYkhs6FLU9B0O.jpg", + "length": "1h 13m" + }, + { + "title": "Love Me Tonight", + "director": "Rouben Mamoulian", + "year": "1932", + "tags": "Comedy", + "desc": "A Parisian tailor finds himself posing as a baron in order to collect a sizeable bill from an aristocrat, only to fall in love with an aloof young princess.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3wjHj3LmmezUsBHxFL8xpRdMxVX.jpg", + "length": "1h 29m" + }, + { + "title": "Boudu Saved From Drowning", + "director": "Jean Renoir", + "year": "1932", + "tags": "Comedy", + "desc": "Michel Simon gives one of the most memorable performances in screen history as Boudu, a Parisian tramp who takes a suicidal plunge into the Seine and is rescued by a well-to-do bookseller, Edouard Lestingois. The Lestingois family decides to take in the irrepressible bum, and he shows his gratitude by shaking the household to its foundations. With Boudu Saved from Drowning, legendary director Jean Renoir takes advantage of a host of Parisian locations and the anarchic charms of his lead actor to create an effervescent satire of the bourgeoisie.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hCRUtli9TCrekxSysHJ15QhMk44.jpg", + "length": "1h 24m" + }, + { + "title": "I Am a Fugitive From a Chain Gang", + "director": "Mervyn LeRoy", + "year": "1932", + "tags": "Drama", + "desc": "A World War I veteran\u2019s dreams of becoming a master architect evaporate in the cold light of economic realities. Things get even worse when he\u2019s falsely convicted of a crime and sent to work on a chain gang.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jer6lim61i8V6a5HOZq2i07UQQf.jpg", + "length": "2h 32m" + }, + { + "title": "Trouble in Paradise", + "director": "Ernst Lubitsch", + "year": "1932", + "tags": "Comedy", + "desc": "Thief Gaston Monescu and pickpocket Lily are partners in crime and love. Working for perfume company executive Mariette Colet, the two crooks decide to combine their criminal talents to rob their employer. Under the alias of Monsieur Laval, Gaston uses his position as Mariette's personal secretary to become closer to her. However, he takes things too far when he actually falls in love with Mariette, and has to choose between her and Lily.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/FBxuoLRD3Biyul14unT5m3PYNS.jpg", + "length": "1h 23m" + }, + { + "title": "Scarface", + "director": "Howard Hawks", + "year": "1932", + "tags": "Crime", + "desc": "In 1920s Chicago, Italian immigrant and notorious thug, Antonio \"Tony\" Camonte, shoots his way to the top of the mobs while trying to protect his sister from the criminal life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/y4E5oRiHMTFkEB12IIcpbKbKzDW.jpg", + "length": "2h 33m" + }, + { + "title": "Shanghai Express", + "director": "Josef von Sternberg", + "year": "1932", + "tags": "Drama", + "desc": "A beautiful temptress re-kindles an old romance while trying to escape her past during a tension-packed train journey.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z0ea6xM3HhIZi7zApDVsxewv9R8.jpg", + "length": "1h 22m" + }, + { + "title": "Freaks", + "director": "Tod Browning", + "year": "1932", + "tags": "Drama", + "desc": "A circus' beautiful trapeze artist agrees to marry the leader of side-show performers, but his deformed friends discover she is only marrying him for his inheritance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fX2Wxd0W9E7eVClUd8kJTfennoV.jpg", + "length": "1h 6m" + }, + { + "title": "Me and My Gal", + "director": "Raoul Walsh", + "year": "1932", + "tags": "Comedy", + "desc": "Jaunty young policeman Danny Dolan falls in love with waterfront cafe waitress Helen Riley.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pAPxl1vECf3hmyX1W4juWd2Fzil.jpg", + "length": "1h 19m" + }, + { + "title": "Zero for Conduct", + "director": "Jean Vigo", + "year": "1933", + "tags": "Comedy", + "desc": "In a repressive boarding school with rigid rules of behavior, four boys decide to rebel against the director on a celebration day.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oQcGB9BGj9LPTWcEdij47McotKY.jpg", + "length": "1h 49m" + }, + { + "title": "42nd Street", + "director": "Lloyd Bacon", + "year": "1933", + "tags": "Comedy", + "desc": "A producer puts on what may be his last Broadway show, and at the last moment a chorus girl has to replace the star.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/q4UEd8BL74zVsOOaJkKVMLMmdTg.jpg", + "length": "1h 29m" + }, + { + "title": "Footlight Parade", + "director": "Lloyd Bacon", + "year": "1933", + "tags": "Comedy", + "desc": "A fledgling producer finds himself at odds with his workers, financiers and his greedy ex-wife when he tries to produce live musicals for movie-going audiences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4mrL1qVnQXjl6NDfhnp1LjGlqis.jpg", + "length": "2h 44m" + }, + { + "title": "Gold Diggers of", + "director": "Mervyn LeRoy", + "year": "1933", + "tags": "Comedy", + "desc": "Things get tough for Carol and her showgirl pals, Trixie and Polly, when the Great Depression kicks in and all the Broadway shows close down. Wealthy songwriter Brad saves the day by funding a new Depression-themed musical for the girls to star in, but when his stuffy high-society brother finds out and threatens to disown Brad, Carol and her gold-digging friends scheme to keep the show going, hooking a couple of millionaires along the way.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sXsUJsW9fcVT15hfBu9LyU22qmG.jpg", + "length": "2h 37m" + }, + { + "title": "She Done Him Wrong", + "director": "Lowell Sherman", + "year": "1933", + "tags": "Comedy", + "desc": "New York singer and nightclub owner Lady Lou has more men friends than you can imagine. One of them is a vicious criminal who\u2019s escaped and is on the way to see \u201chis\u201d girl, not realising she hasn\u2019t exactly been faithful in his absence. Help is at hand in the form of young Captain Cummings, a local temperance league leader.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kwxAUj8tf9kO2ESAriD8foYN28q.jpg", + "length": "1h 6m" + }, + { + "title": "Duck Soup", + "director": "Leo McCarey", + "year": "1933", + "tags": "Comedy", + "desc": "Rufus T. Firefly is named president/dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of wealthy Mrs. Teasdale.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/31t63plEGKHhYuuCpC9bFWO9SBS.jpg", + "length": "1h 9m" + }, + { + "title": "Queen Christina", + "director": "Rouben Mamoulian", + "year": "1933", + "tags": "Romance", + "desc": "Queen Christina of Sweden is a popular monarch who is loyal to her country. However, when she falls in love with a Spanish envoy, she must choose between the throne and the man she loves.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lGGYwoBp21CzF7cMzNPcOr6i6iw.jpg", + "length": "2h 39m" + }, + { + "title": "Land Without Bread", + "director": "Luis Bu\u00f1uel", + "year": "1933", + "tags": "Documentary", + "desc": "An exploration \u2014manipulated and staged\u2014 of life in Las Hurdes, in the province of C\u00e1ceres, in Extremadura, Spain, as it was in 1932. Insalubrity, misery and lack of opportunities provoke the emigration of young people and the solitude of those who remain in the desolation of one of the poorest and least developed Spanish regions at that time. (Silent short, voiced in 1937 and 1996.)", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iQM715v277SIw66Y1bJ1KiK5WNx.jpg", + "length": "0h 29m" + }, + { + "title": "King Kong", + "director": "Merian C. Cooper", + "year": "1933", + "tags": "Adventure", + "desc": "Adventurous filmmaker Carl Denham sets out to produce a motion picture unlike anything the world has seen before. Alongside his leading lady Ann Darrow and his first mate Jack Driscoll, they arrive on an island and discover a legendary creature said to be neither beast nor man. Denham captures the monster to be displayed on Broadway as King Kong, the eighth wonder of the world.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lHlnxKL5GbgRibyRFI7n1Ey850i.jpg", + "length": "2h 44m" + }, + { + "title": "The Bitter Tea of General Yen", + "director": "Frank Capra", + "year": "1933", + "tags": "Drama", + "desc": "An American missionary is gradually seduced by a courtly warlord holding her in Shanghai.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fqFOHLqvqcaCIaMy4ZK9NNkf4jV.jpg", + "length": "1h 28m" + }, + { + "title": "Sons of the Desert", + "director": "William A. Seiter", + "year": "1933", + "tags": "Comedy", + "desc": "Ollie and Stan deceive their wives into thinking they are taking a medically necessary cruise when they are really going to a lodge convention.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4ojrxP6qiyDOQ5jHQlh7Yn59wJt.jpg", + "length": "1h 5m" + }, + { + "title": "It's a Gift", + "director": "Norman Z. McLeod", + "year": "1934", + "tags": "Comedy", + "desc": "After he inherits some money, Harold Bissonette (\"pronounced bis-on-ay\") decides to give up the grocery business, move to California and run an orange grove. Despite his family's objections and the news that the land he bought is worthless, Bissonette packs up and drives out to California with his nagging wife Amelia and children.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3DlYiSh3S7A9GO15gUu7zg92bD0.jpg", + "length": "1h 8m" + }, + { + "title": "Triumph of the Will", + "director": "Leni Riefenstahl", + "year": "1935", + "tags": "Documentary", + "desc": "A showcase of German chancellor and Nazi Party leader Adolf Hitler at the 1934 Nuremberg Rally.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hyXCugoQzJ85mdrdz4dboqP8FoX.jpg", + "length": "2h 54m" + }, + { + "title": "L'atalante", + "director": "Jean Vigo", + "year": "1934", + "tags": "Romance", + "desc": "Capricious small-town girl Juliette and barge captain Jean marry after a whirlwind courtship, and she comes to live aboard his boat, L'Atalante. As they make their way down the Seine, Jean grows weary of Juliette's flirtations with his all-male crew, and Juliette longs to escape the monotony of the boat and experience the excitement of a big city. When she steals away to Paris by herself, her husband begins to think their marriage was a mistake.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sDkQyZnFvHdnp5ZP21RG4teLiDy.jpg", + "length": "1h 29m" + }, + { + "title": "The Black Cat", + "director": "Edgar G. Ulmer", + "year": "1934", + "tags": "Horror", + "desc": "After a road accident in Hungary, the American honeymooners Joan and Peter and the enigmatic Dr. Werdegast find refuge in the house of the famed architect Hjalmar Poelzig, who shares a dark past with the doctor.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/QTH3dkeDGTBRBmsY0A7STpsNN4.jpg", + "length": "1h 3m" + }, + { + "title": "Judge Priest", + "director": "John Ford", + "year": "1934", + "tags": "Comedy", + "desc": "Judge Priest, a proud Confederate veteran, restores the justice in a small town in the Post-Bellum Kentucky using his common sense and his great sense of humanity.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vo7jPkmVR4M0rlw4wwM31bUopyK.jpg", + "length": "1h 20m" + }, + { + "title": "It Happened One Night", + "director": "Frank Capra", + "year": "1934", + "tags": "Comedy", + "desc": "A renegade reporter and a young heiress meet on a bus heading for New York, and end up stuck with each other when the bus leaves them behind at one of the stops.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2PNUGWAflH6UUumas0POMmokHlc.jpg", + "length": "2h 45m" + }, + { + "title": "The Thin Man", + "director": "W.S. Van Dyke", + "year": "1934", + "tags": "Comedy", + "desc": "A husband and wife detective team takes on the search for a missing inventor and almost get killed for their efforts.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6cL89ok9t8xEKboOjOVga2W66jj.jpg", + "length": "2h 31m" + }, + { + "title": "The Goddess", + "director": "Yonggang Wu", + "year": "1934", + "tags": "Drama", + "desc": "A young prostitute, who is trying to give her infant son a good start in life, must contend with a coercive pimp and the prejudices of others.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mhKVL4m9anBX0S8N6SWqsXx6W2S.jpg", + "length": "1h 25m" + }, + { + "title": "Captain Blood", + "director": "Michael Curtiz", + "year": "1935", + "tags": "Adventure", + "desc": "Dr. Peter Blood, unjustly convicted of treason and exiled from England, becomes a notorious pirate.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/Ae0ltppMl66pAH1odgDU1C4H1iq.jpg", + "length": "2h 59m" + }, + { + "title": "Mutiny on the Bounty", + "director": "Frank Lloyd", + "year": "1935", + "tags": "Adventure", + "desc": "Fletcher Christian successfully leads a revolt against the ruthless Captain Bligh on the HMS Bounty. However, Bligh returns one year later, hell bent on revenge.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/GD98ozz6F6tSu8BWGulpseEKhv.jpg", + "length": "2h 12m" + }, + { + "title": "A Night at the Opera", + "director": "Edmund Goulding", + "year": "1935", + "tags": "Comedy", + "desc": "The Marx Brothers take on high society and the opera world to bring two lovers together. A sly business manager and two wacky friends of two opera singers help them achieve success while humiliating their stuffy and snobbish enemies.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/A4YDGfJwaG7aMxDVrVJsOHJ7ufK.jpg", + "length": "2h 36m" + }, + { + "title": "The 39 Steps", + "director": "Alfred Hitchcock", + "year": "1935", + "tags": "Mystery", + "desc": "Richard Hanney has a rude awakening when a glamorous female spy falls into his bed - with a knife in her back. Having a bit of trouble explaining it all to Scotland Yard, he heads for the hills of Scotland to try to clear his name by locating the spy ring known as The 39 Steps.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/paI9Tmqm2cZG6xy4Tnjw3Ydjuw5.jpg", + "length": "1h 26m" + }, + { + "title": "Bride of Frankenstein", + "director": "James Whale", + "year": "1935", + "tags": "Horror", + "desc": "Dr. Pretorius, a deranged scientist, forces Henry Frankenstein to help him create a companion for the monster.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5241zUwe7rC17MNc2QpCBKKdp1N.jpg", + "length": "1h 15m" + }, + { + "title": "Top Hat", + "director": "Mark Sandrich", + "year": "1935", + "tags": "Comedy", + "desc": "Showman Jerry Travers is working for producer Horace Hardwick in London. Jerry demonstrates his new dance steps late one night in Horace's hotel room, much to the annoyance of sleeping Dale Tremont below. She goes upstairs to complain and the two are immediately attracted to each other. Complications arise when Dale mistakes Jerry for Horace.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qoPBiN6PBs2NsP7BNOJGCnmwruG.jpg", + "length": "2h 41m" + }, + { + "title": "Peter Ibbetson", + "director": "Henry Hathaway", + "year": "1935", + "tags": "Drama", + "desc": "When his mother dies, young Peter Ibbetson leaves Paris and his best friend, Mary, behind to live with a severe uncle in England. Years later, Peter is an architect with little time for women, until he begins a project with the Duke and Duchess of Towers. When Peter and the duchess become great friends, she reveals that she is Mary \u2014 but the duke soon suspects his wife of infidelity and challenges Peter to a duel, threatening the pair's second chance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/i7SHcawBVUwh2SMfc17dBBue3Nd.jpg", + "length": "1h 28m" + }, + { + "title": "Une Partie De Chapagne", + "director": "Not known", + "year": "1936", + "tags": "#Movie", + "desc": "Not known", + "img": "600x900.svg", + "length": "0h 0m" + }, + { + "title": "Modern Times", + "director": "Charlie Chaplin", + "year": "1936", + "tags": "Comedy", + "desc": "A bumbling tramp desires to build a home with a young woman, yet is thwarted time and time again by his lack of experience and habit of being in the wrong place at the wrong time..", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uEMekS25hwXrCJOZZ3NKMGcAFJo.jpg", + "length": "1h 27m" + }, + { + "title": "Swing Time", + "director": "George Stevens", + "year": "1936", + "tags": "Music", + "desc": "Lucky is tricked into missing his own wedding again and has to make $25,000 so her father allows him to marry Margaret. He and business partner Pop go to New York where they run into dancing instructor Penny. She and Lucky form a successful dance partnership, but romance is blighted by his old attachment to Margaret and hers for Ricky Romero.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cECQGtw13ooPIuEpVWOUlUXaAnO.jpg", + "length": "2h 43m" + }, + { + "title": "My Man Godfrey", + "director": "Gregory La Cava", + "year": "1936", + "tags": "Comedy", + "desc": "Fifth Avenue socialite Irene Bullock needs a \"forgotten man\" to win a scavenger hunt, and no one is more forgotten than Godfrey Park, who resides in a dump by the East River. Irene hires Godfrey as a servant for her riotously unhinged family, to the chagrin of her spoiled sister, Cornelia, who tries her best to get Godfrey fired. As Irene falls for her new butler, Godfrey turns the tables and teaches the frivolous Bullocks a lesson or two.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wtfOW7fIxBZWY78rvUoPpWhMSiR.jpg", + "length": "2h 35m" + }, + { + "title": "Mr. Deeds Goes to Town", + "director": "Frank Capra", + "year": "1936", + "tags": "Comedy", + "desc": "Longfellow Deeds lives in a small town, leading a small town kind of life. When a relative dies and leaves Deeds a fortune, Longfellow moves to the big city where he becomes an instant target for everyone. Deeds outwits them all until Babe Bennett comes along. When small-town boy meets big-city girl anything can, and does, happen.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9xBuHtiB4CwtEciWdUd28VvhkJO.jpg", + "length": "2h 55m" + }, + { + "title": "Camille", + "director": "George Cukor", + "year": "1936", + "tags": "Drama", + "desc": "Life in 1847 Paris is as spirited as champagne and as unforgiving as the gray morning after. In gambling dens and lavish soirees, men of means exert their wills and women turned courtesans exult in pleasure. One such woman is Marguerite Gautier, who begins a sumptuous romance with Armand Duval.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/78p9egiU16QpJNvmSVa4Vnr0JUK.jpg", + "length": "2h 49m" + }, + { + "title": "Sabotage", + "director": "Alfred Hitchcock", + "year": "1936", + "tags": "Drama", + "desc": "Karl Anton Verloc and his wife own a small cinema in a quiet London suburb where they live seemingly happily. But Mrs. Verloc does not know that her husband has a secret that will affect their relationship and threaten her teenage brother's life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/A6cyOt9mhmvWA2uHcVsGkcCaHCz.jpg", + "length": "1h 17m" + }, + { + "title": "Dodsworth", + "director": "William Wyler", + "year": "1936", + "tags": "Drama", + "desc": "A retired auto manufacturer and his wife take a long-planned European vacation only to find that they want very different things from life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qpd9P54mLYvzdC6rBz56is8aeDB.jpg", + "length": "2h 41m" + }, + { + "title": "Things to Come", + "director": "William Cameron Menzies", + "year": "1936", + "tags": "Drama", + "desc": "The story of a century: a decades-long second World War leaves plague and anarchy, then a rational state rebuilds civilization and attempts space travel.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/AqDTWCGOogxtIVKa6RAOhOaHkS.jpg", + "length": "2h 40m" + }, + { + "title": "The Story of a Cheat", + "director": "Sacha Guitry", + "year": "1936", + "tags": "Comedy", + "desc": "Life story of a charming scoundrel, with little dialogue other than the star/director's witty narration. As a boy, only he survives a family tragedy when he's deprived of supper (poisonous mushrooms!) for stealing...concluding that dishonesty pays. Through years of dabbling in crime and amusing adventures, two women appear and reappear in his life, a dazzling blonde jewel thief and a stunning brunette gambler. Finally, he meets the mysterious Charbonnier who had saved his life in World War I, leading to the surprising next phase in his career...", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uJ2Dh5XIFbCkkzT9lwJQmhL1DFc.jpg", + "length": "1h 21m" + }, + { + "title": "Captains Courageous", + "director": "Victor Fleming", + "year": "1937", + "tags": "Adventure", + "desc": "Harvey, the arrogant and spoiled son of an indulgent absentee-father, falls overboard from a transatlantic steamship and is rescued by a fishing vessel on the Grand Banks. Harvey fails to persuade them to take him ashore, nor convince the crew of his wealth. The captain offers him a low-paid job, until they return to port, as part of the crew that turns him into a mature, considerate young man.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qhJNHLwIcMqDKBwsr9uMDOumO33.jpg", + "length": "2h 55m" + }, + { + "title": "Song at Midnight", + "director": "Weibang Ma-Xu", + "year": "1937", + "tags": "Horror", + "desc": "In this Chinese version of The Phantom of the Opera, the mysterious Song Danping terrorizes the newly rebuilt opera house and its young star.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8m1WagD1a631gz9Iwbg3IDrbaI4.jpg", + "length": "2h 53m" + }, + { + "title": "Grand Illusion", + "director": "Jean Renoir", + "year": "1937", + "tags": "Drama", + "desc": "A group of French soldiers, including the patrician Captain de Boeldieu and the working-class Lieutenant Mar\u00e9chal, grapple with their own class differences after being captured and held in a World War I German prison camp. When the men are transferred to a high-security fortress, they must concoct a plan to escape beneath the watchful eye of aristocratic German officer von Rauffenstein, who has formed an unexpected bond with de Boeldieu.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lWg41zE0FVixkNsFgxnlRyvDYv9.jpg", + "length": "2h 54m" + }, + { + "title": "Stella Dallas", + "director": "King Vidor", + "year": "1937", + "tags": "Drama", + "desc": "After divorcing a society man, a small-town woman tries to build a better life for their daughter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/spcGWnz05deoY7gAl0EvrBelzPa.jpg", + "length": "2h 46m" + }, + { + "title": "The Life of Emile Zola", + "director": "William Dieterle", + "year": "1937", + "tags": "Drama", + "desc": "Biopic of the famous French writer Emile Zola and his involvement in the Dreyfus Affair.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gsEa6ZU1zHhjTYneNNBQApzl8Vu.jpg", + "length": "2h 56m" + }, + { + "title": "Make Way for Tomorrow", + "director": "Leo McCarey", + "year": "1937", + "tags": "Drama", + "desc": "At a family reunion, the Cooper clan find that their parents' home is being foreclosed. \"Temporarily,\" Ma moves in with son George's family, Pa with daughter Cora. But the parents are like sand in the gears of their middle-aged children's well regulated households. Can the old folks take matters into their own hands?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zPl6TfnIIJzdPXk9g6QPwFwTIt.jpg", + "length": "2h 32m" + }, + { + "title": "Snow White and the Seven Dwarfs", + "director": "David Hand", + "year": "1937", + "tags": "Fantasy", + "desc": "A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \"the fairest in the land,\" and Snow White's beauty surpasses her own.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yJSMnMBtcHSub75p1dmdyqnQloa.jpg", + "length": "1h 23m" + }, + { + "title": "The Awful Truth", + "director": "Leo McCarey", + "year": "1937", + "tags": "Comedy", + "desc": "Unfounded suspicions lead a married couple to begin divorce proceedings, whereupon they start undermining each other's attempts to find new romance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2VtsJoxvjpcMpwh0gweS8IMfHxO.jpg", + "length": "2h 31m" + }, + { + "title": "P\u00e9p\u00e9 Le Moko", + "director": "Julien Duvivier", + "year": "1937", + "tags": "Crime", + "desc": "P\u00e9p\u00e9 le Moko, one of France's most wanted criminals, hides out in the Casbah section of Algiers. He knows police will be waiting for him if he tries to leave the city. When P\u00e9p\u00e9 meets Gaby, a gorgeous woman from Paris who is lost in the Casbah, he falls for her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/RqwmPaeb7IPBxrWOLlGLVUqB7k.jpg", + "length": "2h 34m" + }, + { + "title": "Jezebel", + "director": "William Wyler", + "year": "1938", + "tags": "Drama", + "desc": "In 1850s Louisiana, the willfulness of a tempestuous Southern belle threatens to destroy all who care for her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xewvSLrr0Ru6qVMwVqVheFLaGm4.jpg", + "length": "2h 43m" + }, + { + "title": "The Adventures of Robin Hood", + "director": "Michael Curtiz", + "year": "1938", + "tags": "Adventure", + "desc": "Robin Hood fights nobly for justice against the evil Sir Guy of Gisbourne while striving to win the hand of the beautiful Maid Marian.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c7LX3GMf9uXQTgVm3uxpm7E6Woc.jpg", + "length": "2h 42m" + }, + { + "title": "Angels With Dirty Faces", + "director": "Michael Curtiz", + "year": "1938", + "tags": "Crime", + "desc": "Childhood chums Rocky Sullivan and Jerry Connelly grow up on opposite sides of the fence: Rocky matures into a prominent gangster, while Jerry becomes a priest, tending to the needs of his old tenement neighborhood.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k23E4UAcow8eczLRmVCMdukL4Mx.jpg", + "length": "2h 37m" + }, + { + "title": "Olympia Part One: Festival of the Nations", + "director": "Leni Riefenstahl", + "year": "1938", + "tags": "Documentary", + "desc": "The First part of Olympia, a documentary about the 1936 Olympic games in Berlin by German Director Leni Riefenstahl. The film played in theaters in 1938 and again in 1952 after the fall of the Nazi Regime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/49KaePhxdoM3TkJHo8zaoCFEJ6X.jpg", + "length": "2h 6m" + }, + { + "title": "The Baker's Wife", + "director": "Marcel Pagnol", + "year": "1938", + "tags": "Comedy", + "desc": "In this little Provencal village, a new baker, Aimable, settles down. His wife Aurelie is beautiful and much younger than he. She departs with a shepherd the night after Aimable produces his first breads. Aimable is so afflicted that he can not work anymore. Therefore, the villagers, who initially laughed at his cuckoldry, take the matter very seriously (they want the bread) and organize a plan to find Aurelie and to bring her back to the bakery.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/a1vdBRiPrtZwsCbGjTkg9WPwpkX.jpg", + "length": "2h 13m" + }, + { + "title": "The Lady Vanishes", + "director": "Alfred Hitchcock", + "year": "1938", + "tags": "Mystery", + "desc": "On a train headed for England a group of travelers is delayed by an avalanche. Holed up in a hotel in a fictional European country, young Iris befriends elderly Miss Froy. When the train resumes, Iris suffers a bout of unconsciousness and wakes to find the old woman has disappeared. The other passengers ominously deny Miss Froy ever existed, so Iris begins to investigate with another traveler and, as the pair sleuth, romantic sparks fly.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c1t9LB76LvEARPanfEzXmkm7fwY.jpg", + "length": "2h 36m" + }, + { + "title": "Stagecoach", + "director": "John Ford", + "year": "1939", + "tags": "Western", + "desc": "A group of people traveling on a stagecoach find their journey complicated by the threat of Geronimo, and learn something about each other in the process.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/b4RUzWOalyPbUu66TT147b5iR0M.jpg", + "length": "2h 36m" + }, + { + "title": "The Story of the Last Chrysanthemum", + "director": "Kenji Mizoguchi", + "year": "1939", + "tags": "Romance", + "desc": "In late 19th century Tokyo, Kikunosuke Onoue, the adopted son of a legendary actor, himself an actor specializing in female roles, discovers that he is only praised for his acting due to his status as his father's heir. Devastated by this, he turns to Otoku, a servant of his family, for comfort, and they fall in love. Kikunosuke becomes determined to leave home and develop as an actor on his own merits, and Otoku faithfully follows him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m43EBVmYBiNC2RtcMUAag4IWsZS.jpg", + "length": "2h 24m" + }, + { + "title": "Babes in Arms", + "director": "Busby Berkeley", + "year": "1939", + "tags": "Comedy", + "desc": "Mickey Moran, son of two vaudeville veterans, decides to put up his own vaudeville show with his girlfriend Patsy Barton. But child actress Rosalie wants to make a comeback and replace Patsy both professionally and as Mickey's girl.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hCE0OHNjMI2LNpoqJxDX4Otb06X.jpg", + "length": "2h 33m" + }, + { + "title": "Mr. Smith Goes to Washington", + "director": "Frank Capra", + "year": "1939", + "tags": "Comedy", + "desc": "Naive and idealistic Jefferson Smith, leader of the Boy Rangers, is appointed to the United States Senate by the puppet governor of his state. He soon discovers, upon going to Washington, many shortcomings of the political process as his earnest goal of a national boys' camp leads to a conflict with the state political boss.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nDjg1fbNyq15excNDl3acd2IqAk.jpg", + "length": "2h 9m" + }, + { + "title": "The Wizard of Oz", + "director": "Victor Fleming", + "year": "1939", + "tags": "Adventure", + "desc": "Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/OvNYthaTP7z2F4MyU65Hkia9sE.jpg", + "length": "2h 42m" + }, + { + "title": "Destry Rides Again", + "director": "George Marshall", + "year": "1939", + "tags": "Action", + "desc": "When a tough western town needs taming, the mild-mannered son of a hard-nosed sheriff gets the job.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zEycmpHvzi60EJpbZCKbTc32AT7.jpg", + "length": "2h 34m" + }, + { + "title": "Only Angels Have Wings", + "director": "Howard Hawks", + "year": "1939", + "tags": "Romance", + "desc": "A traveling performer arrives at a remote South American port town where the head of an air freight service must risk his pilots' lives to earn a major contract.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lqcwiWancAkjtAQPHr9V3SfJjBM.jpg", + "length": "2h 1m" + }, + { + "title": "Gone With the Wind", + "director": "Victor Fleming", + "year": "1939", + "tags": "Drama", + "desc": "The spoiled daughter of a Georgia plantation owner conducts a tumultuous romance with a cynical profiteer during the American Civil War and Reconstruction Era.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lNz2Ow0wGCAvzckW7EOjE03KcYv.jpg", + "length": "4h 53m" + }, + { + "title": "Le Jour Se Leve", + "director": "Marcel Carn\u00e9", + "year": "1939", + "tags": "Crime", + "desc": "After committing a murder, a man locks himself in his apartment and recollects the events the led him to the killing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pnyHLvLKl18py7OKCWHMs0FdYW7.jpg", + "length": "2h 33m" + }, + { + "title": "Gunga Din", + "director": "George Stevens", + "year": "1939", + "tags": "Adventure", + "desc": "British army sergeants Ballantine, Cutter and MacChesney serve in India during the 1880s, along with their native water-bearer, Gunga Din. While completing a dangerous telegraph-repair mission, they unearth evidence of the suppressed Thuggee cult. When Gunga Din tells the sergeants about a secret temple made of gold, the fortune-hunting Cutter is captured by the Thuggees, and it's up to his friends to rescue him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sORSoVVed7MuKUmebUbQv6AxMUx.jpg", + "length": "2h 57m" + }, + { + "title": "Ninotchka", + "director": "Ernst Lubitsch", + "year": "1939", + "tags": "Comedy", + "desc": "A stern Russian woman sent to Paris on official business finds herself attracted to a man who represents everything she is supposed to detest.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v4MkgNqZyodYwBDNbZ64MF9tVEL.jpg", + "length": "2h 50m" + }, + { + "title": "Le Jour Se L\u00e8ve", + "director": "Marcel Carn\u00e9", + "year": "1939", + "tags": "Crime", + "desc": "After committing a murder, a man locks himself in his apartment and recollects the events the led him to the killing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pnyHLvLKl18py7OKCWHMs0FdYW7.jpg", + "length": "2h 33m" + }, + { + "title": "Wuthering Heights", + "director": "William Wyler", + "year": "1939", + "tags": "Drama", + "desc": "The Earnshaws are Yorkshire farmers during the early 19th Century. One day, Mr. Earnshaw returns from a trip to the city, bringing with him a ragged little boy called Heathcliff. Earnshaw's son, Hindley, resents the child, but Heathcliff becomes companion and soulmate to Hindley's sister, Catherine. After her parents die, Cathy and Heathcliff grow up wild and free on the moors and despite the continued enmity between Hindley and Heathcliff they're happy -- until Cathy meets Edgar Linton, the son of a wealthy neighbor.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tA3ZaItWqhoruqhvbnJM4WWrHfF.jpg", + "length": "2h 44m" + }, + { + "title": "His Girl Friday", + "director": "Howard Hawks", + "year": "1940", + "tags": "Comedy", + "desc": "Walter Burns is an irresistibly conniving newspaper publisher desperate to woo back his paper\u2019s star reporter, who also happens to be his estranged wife. She\u2019s threatening to quit and settle down with a new beau, but, as Walter knows, she has a weakness: she can\u2019t resist a juicy scoop.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/da95rurNghmKWmraPyqP6IsnAt1.jpg", + "length": "2h 32m" + }, + { + "title": "Rebecca", + "director": "Alfred Hitchcock", + "year": "1940", + "tags": "Mystery", + "desc": "Story of a young woman who marries a fascinating widower only to find out that she must live in the shadow of his former wife, Rebecca, who died mysteriously several years earlier. The young wife must come to grips with the terrible secret of her handsome, cold husband, Max De Winter. She must also deal with the jealous, obsessed Mrs. Danvers, the housekeeper, who will not accept her as the mistress of the house.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1qz3qUOHnVy7dL7M7G8jSErxE4b.jpg", + "length": "2h 10m" + }, + { + "title": "Fantasia", + "director": "David Hand", + "year": "1940", + "tags": "Animation", + "desc": "Walt Disney's timeless masterpiece is an extravaganza of sight and sound! See the music come to life, hear the pictures burst into song and experience the excitement that is Fantasia over and over again.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5m9njnidjR0syG2gpVPVgcEMB2X.jpg", + "length": "2h 4m" + }, + { + "title": "The Philadelphia Story", + "director": "George Cukor", + "year": "1940", + "tags": "Comedy", + "desc": "When a rich woman's ex-husband and a tabloid-type reporter turn up just before her planned remarriage, she begins to learn the truth about herself.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dKUubjvxO78XDts6VP1Ggcp4R9O.jpg", + "length": "2h 53m" + }, + { + "title": "The Grapes of Wrath", + "director": "John Ford", + "year": "1940", + "tags": "Drama", + "desc": "Tom Joad returns to his home after a jail sentence to find his family kicked out of their farm due to foreclosure. He catches up with them on his Uncle\u2019s farm, and joins them the next day as they head for California and a new life... Hopefully.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eUcxMVBIA0Jg8l1RGUqycrc3eIQ.jpg", + "length": "2h 9m" + }, + { + "title": "Dance, Girl, Dance", + "director": "Dorothy Arzner", + "year": "1940", + "tags": "Drama", + "desc": "Judy O'Brien is an aspiring ballerina in a dance troupe. Also in the company is Bubbles, a brash mantrap who leaves the struggling troupe for a career in burlesque. When the company disbands, Bubbles gives Judy a thankless job as her stooge. The two eventually clash when both fall for the same man.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1gJuUG7SeVAbhmO9qXvkEVKY3Pq.jpg", + "length": "2h 30m" + }, + { + "title": "Pinocchio", + "director": "Ben Sharpsteen", + "year": "1940", + "tags": "Animation", + "desc": "When loving Geppetto creates a wooden puppet, his wish is granted when it comes to life as a little wooden boy named Pinocchio. With his faithful friend and conscience Jiminy Cricket by his side, Pinocchio, embarks on fantastic adventures that his bravery, loyalty and honesty until triumphs in his triumphs in his quest for his heart's desire: to become a real boy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bnZJrLRnoQHpzEJdka1KYfsAF3N.jpg", + "length": "1h 28m" + }, + { + "title": "The Mortal Storm", + "director": "Frank Borzage", + "year": "1940", + "tags": "Drama", + "desc": "The Roth family leads a quiet life in a small village in the German Alps during the early 1930s. When the Nazis come to power, the family is divided and Martin Brietner, a family friend is caught up in the turmoil.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xPvS7UVrJuCyE5NsiDkW39ABLGX.jpg", + "length": "2h 40m" + }, + { + "title": "The Bank Dick", + "director": "Edward F. Cline", + "year": "1940", + "tags": "Comedy", + "desc": "Egbert Sous\u00e9 becomes an unexpected hero when a bank robber falls over a bench he's occupying. Now considered brave, Egbert is given a job as a bank guard. Soon, he is approached by charlatan J. Frothingham Waterbury about buying shares in a mining company. Egbert persuades teller Og Oggilby to lend him bank money, to be returned when the scheme pays off. Unfortunately, bank inspector Snoopington then makes a surprise appearance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3XrqHTrJpTaUeyqXqb4fVacYWpf.jpg", + "length": "1h 12m" + }, + { + "title": "Citizen Kane", + "director": "Orson Welles", + "year": "1941", + "tags": "Mystery", + "desc": "Newspaper magnate Charles Foster Kane is taken from his mother as a boy and made the ward of a rich industrialist. As a result, every well-meaning, tyrannical or self-destructive move he makes for the rest of his life appears in some way to be a reaction to that deeply wounding event.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sav0jxhqiH0bPr2vZFU0Kjt2nZL.jpg", + "length": "2h 59m" + }, + { + "title": "The Lady Eve", + "director": "Preston Sturges", + "year": "1941", + "tags": "Comedy", + "desc": "It's no accident when wealthy Charles falls for Jean. Jean is a con artist with her sights set on Charles' fortune. Matters complicate when Jean starts falling for her mark. When Charles suspects Jean is a gold digger, he dumps her. Jean, fixated on revenge and still pining for the millionaire, devises a plan to get back in Charles' life. With love and payback on her mind, she re-introduces herself to Charles, this time as an aristocrat named Lady Eve Sidwich.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lJYD3CMgKtv12hazSHc7xt3i2uq.jpg", + "length": "2h 37m" + }, + { + "title": "The Wolf Man", + "director": "George Waggner", + "year": "1941", + "tags": "Horror", + "desc": "After his brother's death, Larry Talbot returns home to his father and the family estate. Events soon take a turn for the worse when Larry is bitten by a werewolf.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dXM0qoqk7SmDzSyRHCn3Hc08CKw.jpg", + "length": "1h 10m" + }, + { + "title": "The Maltese Falcon", + "director": "John Huston", + "year": "1941", + "tags": "Mystery", + "desc": "A private detective takes on a case that involves him with three eccentric criminals, a beautiful liar, and their quest for a priceless statuette.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bf4o6Uzw5wqLjdKwRuiDrN1xyvl.jpg", + "length": "2h 40m" + }, + { + "title": "Sergeant York", + "director": "Howard Hawks", + "year": "1941", + "tags": "War", + "desc": "Alvin York a hillbilly sharpshooter transforms himself from ruffian to religious pacifist. He is then called to serve his country and despite deep religious and moral objections to fighting becomes one of the most celebrated American heroes of WWI.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/54LTgyRHSixyeeFhLtCFj0SMAQ3.jpg", + "length": "2h 14m" + }, + { + "title": "Dumbo", + "director": "Samuel Armstrong", + "year": "1941", + "tags": "Animation", + "desc": "Dumbo is a baby elephant born with over-sized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy Timothy the Mouse, the pint-sized pachyderm learns to surmount all obstacles.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xElwvLH9stNdduVnx9hx5UqEUwv.jpg", + "length": "1h 4m" + }, + { + "title": "High Sierra", + "director": "Raoul Walsh", + "year": "1941", + "tags": "Crime", + "desc": "Given a pardon from jail, Roy Earle gets back into the swing of things as he robs a swanky resort.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fkP6yy25Wja6Sn3AIlZ4F1BWsy0.jpg", + "length": "2h 40m" + }, + { + "title": "Sullivan's Travels", + "director": "Preston Sturges", + "year": "1941", + "tags": "Comedy", + "desc": "Successful movie director John L. Sullivan, convinced he won't be able to film his ambitious masterpiece until he has suffered, dons a hobo disguise and sets off on a journey, aiming to \"know trouble\" first-hand. When all he finds is a train ride back to Hollywood and a beautiful blonde companion, he redoubles his efforts, managing to land himself in more trouble than he bargained for when he loses his memory and ends up a prisoner on a chain gang.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z5cqIM0ysVjkCmaDfyTQnlozdIp.jpg", + "length": "2h 31m" + }, + { + "title": "How Green Was My Valley", + "director": "John Ford", + "year": "1941", + "tags": "Drama", + "desc": "A man in his fifties reminisces about his childhood growing up in a Welsh mining village at the turn of the 20th century.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8N7OmxBqjRVUrqergUduGgr6exy.jpg", + "length": "2h 58m" + }, + { + "title": "The Palm Beach Story", + "director": "Preston Sturges", + "year": "1942", + "tags": "Comedy", + "desc": "A New York inventor, Tom Jeffers, needs cash to develop his big idea, so his adoring wife, Gerry (Geraldine), decides to raise it by divorcing him and marrying an eccentric Florida millionaire, J. D. Hackensacker III.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3NtOMzHZIn0VGTpsx9NpvuhHsYN.jpg", + "length": "1h 28m" + }, + { + "title": "Now, Voyager", + "director": "Irving Rapper", + "year": "1942", + "tags": "Romance", + "desc": "A woman suffers a nervous breakdown and an oppressive mother before being freed by the love of a man she meets on a cruise.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kWtJ1C98fQB1fUDSfqb1NGBPPK8.jpg", + "length": "2h 57m" + }, + { + "title": "Casablanca", + "director": "Michael Curtiz", + "year": "1942", + "tags": "Drama", + "desc": "In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5K7cOHoay2mZusSLezBOY0Qxh8a.jpg", + "length": "2h 42m" + }, + { + "title": "To Be or Not to Be", + "director": "Ernst Lubitsch", + "year": "1942", + "tags": "Comedy", + "desc": "During the Nazi occupation of Poland, an acting troupe becomes embroiled in a Polish soldier's efforts to track down a German spy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dDQRpEoyjHT4fzw9cNklIvZuXYg.jpg", + "length": "2h 39m" + }, + { + "title": "Cat People", + "director": "Jacques Tourneur", + "year": "1942", + "tags": "Mystery", + "desc": "A Serbian \u00e9migr\u00e9 in Manhattan believes that, because of an ancient curse, any physical intimacy with the man she loves will turn her into a feline predator.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zSNTDd5Q6No5BmY39Zp5BVgl8XE.jpg", + "length": "1h 13m" + }, + { + "title": "The Magnificent Ambersons", + "director": "Orson Welles", + "year": "1942", + "tags": "Drama", + "desc": "The spoiled young heir to the decaying Amberson fortune comes between his widowed mother and the man she has always loved.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4QvsFW2cRY20GVpMQNcG406YVxP.jpg", + "length": "1h 28m" + }, + { + "title": "Yankee Doodle Dandy", + "director": "Michael Curtiz", + "year": "1942", + "tags": "Drama", + "desc": "A film of the life of the renowned musical composer, playwright, actor, dancer and singer George M. Cohan.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cqLLIyJFjLr6jGOxWVEHG11WGzB.jpg", + "length": "2h 6m" + }, + { + "title": "Mrs. Miniver", + "director": "William Wyler", + "year": "1942", + "tags": "Drama", + "desc": "Middle-class housewife Kay Miniver deals with petty problems. She and her husband Clem watch her Oxford-educated son Vin court Carol Beldon, the charming granddaughter of the local nobility as represented by Lady Beldon. Then the war comes and Vin joins the RAF.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fjPjx6FTaoTussbqoLj6OYTtUyi.jpg", + "length": "2h 14m" + }, + { + "title": "Meshes of the Afternoon", + "director": "Maya Deren", + "year": "1943", + "tags": "Mystery", + "desc": "A woman returning home falls asleep and has vivid dreams that may or may not be happening in reality. Through repetitive images and complete mismatching of the objective view of time and space, her dark inner desires play out on-screen.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/osgk0vJvlyb43fLBpnJClwdPDSX.jpg", + "length": "0h 14m" + }, + { + "title": "Fires Were Started", + "director": "Humphrey Jennings", + "year": "1943", + "tags": "Drama", + "desc": "British film written and directed by Humphrey Jennings, filmed in documentary style showing the lives of firefighters through the Blitz in World War II.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/A5qsYacdvEZhbLfiz4qtdoYeG6V.jpg", + "length": "1h 10m" + }, + { + "title": "The Man in Grey", + "director": "Leslie Arliss", + "year": "1943", + "tags": "Drama", + "desc": "After marrying a dour and disinterested lord for status, a young woman falls in love with a stage actor while her best friend from boarding school enters an affair with her husband.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/byqKdKW2XgVoQ1nhJYEuzAuyYwV.jpg", + "length": "2h 56m" + }, + { + "title": "The Life and Death of Colonel Blimp", + "director": "Emeric Pressburger", + "year": "1943", + "tags": "Drama", + "desc": "General Candy, who's overseeing an English squad in 1943, is a veteran leader who doesn't have the respect of the men he's training and is considered out-of-touch with what's needed to win the war. But it wasn't always this way. Flashing back to his early career in the Boer War and World War I, we see a dashing young officer whose life has been shaped by three different women, and by a lasting friendship with a German soldier.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kgyd5uyndsXiLYKlVgH0sm7Jfkv.jpg", + "length": "3h 43m" + }, + { + "title": "I Walked With a Zombie", + "director": "Jacques Tourneur", + "year": "1943", + "tags": "Mystery", + "desc": "A nurse in the Caribbean turns to voodoo in hopes of curing her patient, a mindless woman whose husband she's fallen in love with.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uoyBR8XNxPQRojujtczfG1qJezY.jpg", + "length": "1h 9m" + }, + { + "title": "The Seventh Victim", + "director": "Mark Robson", + "year": "1943", + "tags": "Horror", + "desc": "A woman in search of her missing sister uncovers a Satanic cult in New York's Greenwich Village and finds that they could have something to do with her sibling's random disappearance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cvck16EWDqWK6x4p78N8KyJyJNJ.jpg", + "length": "1h 11m" + }, + { + "title": "The Ox-Bow Incident", + "director": "William A. Wellman", + "year": "1943", + "tags": "Western", + "desc": "A posse discovers a trio of men they suspect of murder and cow theft and are split between handing them over to the law or lynching them on the spot.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mAiDUTELbMUJKOTroJLrbYMBk3i.jpg", + "length": "1h 16m" + }, + { + "title": "Shadow of a Doubt", + "director": "Alfred Hitchcock", + "year": "1943", + "tags": "Thriller", + "desc": "Just when Charlotte \u2018Charlie\u2019 Newton, is feeling especially frustrated by the lack of excitement in her small town in California, she receives wonderful news: Her uncle and namesake, Charlie Oakley, is coming to visit. However, as secrets about him come to the fore, Charlotte\u2019s admiration turns into suspicion.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ptyWagbWE8jSGyV2tGEzAdVbRCj.jpg", + "length": "2h 48m" + }, + { + "title": "Ossessione", + "director": "Luchino Visconti", + "year": "1943", + "tags": "Crime", + "desc": "Gino, a drifter, begins an affair with inn-owner Giovanna as they plan to get rid of her older husband.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qgDF8yuJa9eEcfBqEQrqbJuxe5z.jpg", + "length": "2h 20m" + }, + { + "title": "Meet Me in St. Louis", + "director": "Vincente Minnelli", + "year": "1944", + "tags": "Comedy", + "desc": "The life of a St. Louis family in the year before the 1904 St. Louis World's Fair.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ekVeUvG81pidsv2LMtWf5yYcNbq.jpg", + "length": "2h 53m" + }, + { + "title": "To Have and Have Not", + "director": "Howard Hawks", + "year": "1944", + "tags": "Adventure", + "desc": "A Martinique charter boat skipper gets mixed up with the underground French resistance operatives during WWII.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9LaNn1wMcuyWmi8IiSuoorfjO90.jpg", + "length": "2h 40m" + }, + { + "title": "Laura", + "director": "Otto Preminger", + "year": "1944", + "tags": "Drama", + "desc": "A police detective falls in love with the woman whose murder he's investigating.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/j0zEiFFrdbZnMXqD3piOtZBJeNB.jpg", + "length": "1h 28m" + }, + { + "title": "Gaslight", + "director": "George Cukor", + "year": "1944", + "tags": "Thriller", + "desc": "A newlywed fears she's going mad when strange things start happening at the family mansion.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gXKszCl5Q1KrgWRWpPcqn94CP58.jpg", + "length": "2h 54m" + }, + { + "title": "Henry V", + "director": "Laurence Olivier", + "year": "1944", + "tags": "Drama", + "desc": "In the midst of the Hundred Years' War, the young King Henry V of England embarks on the conquest of France in 1415.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eAisr20DvaKJeHvjDN0oHSx0l7u.jpg", + "length": "2h 17m" + }, + { + "title": "Ivan the Terrible, Part I", + "director": "Sergei Eisenstein", + "year": "1945", + "tags": "Drama", + "desc": "Set during the early part of his reign, Ivan faces betrayal from the aristocracy and even his closest friends as he seeks to unite the Russian people. Sergei Eisenstein's final film, this is the first part of a three-part biopic of Tsar Ivan IV of Russia, which was never completed due to the producer's dissatisfaction with Eisenstein's attempts to use forbidden experimental filming techniques and excessive cost overruns. The second part was completed but not released for a decade after Eisenstein's death and a change of heart in the USSR government toward his work; the third part was only in its earliest stage of filming when shooting was stopped altogether.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rzFWfdq6CXLCnlfXTTZs9W9dMR2.jpg", + "length": "2h 39m" + }, + { + "title": "Ivan the Terrible, Part II: The Boyars' Plot", + "director": "Sergei Eisenstein", + "year": "1958", + "tags": "History", + "desc": "This is the second part of a projected three-part epic biopic of Russian Czar Ivan Grozny, undertaken by Soviet film-maker Sergei Eisenstein at the behest of Josef Stalin. Production of the epic was stopped before the third part could be filmed, due to producer dissatisfaction with Eisenstein's introducing forbidden experimental filming techniques into the material, more evident in this part than the first part. As it was, this second part was banned from showings until after the deaths of both Eisenstein and Stalin, and a change of attitude by the subsequent heads of the Soviet government. In this part, as Ivan the Terrible attempts to consolidate his power by establishing a personal army, his political rivals, the Russian boyars, plot to assassinate him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9VufNqHN0EIkZAsJIv5vDYIitPo.jpg", + "length": "1h 26m" + }, + { + "title": "Double Indemnity", + "director": "Billy Wilder", + "year": "1944", + "tags": "Crime", + "desc": "A rich woman and a calculating insurance agent plot to kill her unsuspecting husband after he signs a double indemnity policy. Against a backdrop of distinctly Californian settings, the partners in crime plan the perfect murder to collect the insurance, which pays double if the death is accidental.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n8Mfx7JNbj6lo24laFL1sZYEKHs.jpg", + "length": "2h 47m" + }, + { + "title": "Murder, My Sweet", + "director": "Edward Dmytryk", + "year": "1944", + "tags": "Mystery", + "desc": "After being hired to find an ex-con's former girlfriend, Philip Marlowe is drawn into a deeply complex web of mystery and deceit.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tbyzfN1AUKTvzh058L9ZcOpS9Vn.jpg", + "length": "2h 35m" + }, + { + "title": "San Pietro", + "director": "John Huston", + "year": "1945", + "tags": "War", + "desc": "This documentary movie is about the battle of San Pietro, a small village in Italy. Over 1,100 US soldiers were killed while trying to take this location, that blocked the way for the Allied forces from the Germans.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9iCxTXRUrCpOVrc5lMQCT9E9IBV.jpg", + "length": "1h 38m" + }, + { + "title": "Spellbound", + "director": "Alfred Hitchcock", + "year": "1945", + "tags": "Thriller", + "desc": "When Dr. Anthony Edwardes arrives at a Vermont mental hospital to replace the outgoing hospital director, Dr. Constance Peterson, a psychoanalyst, discovers Edwardes is actually an impostor. The man confesses that the real Dr. Edwardes is dead and fears he may have killed him, but cannot recall anything. Dr. Peterson, however is convinced his impostor is innocent of the man's murder, and joins him on a quest to unravel his amnesia through psychoanalysis.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dPAox7jGScLBvxKLeRptJIBF7v.jpg", + "length": "2h 51m" + }, + { + "title": "Mildred Pierce", + "director": "Michael Curtiz", + "year": "1945", + "tags": "Crime", + "desc": "A hard-working mother inches towards disaster as she divorces her husband and starts a successful restaurant business to support her spoiled daughter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iSXi0xvPUPwEI2xxWZrcKJXpUYc.jpg", + "length": "2h 51m" + }, + { + "title": "Children of Paradise", + "director": "Marcel Carn\u00e9", + "year": "1945", + "tags": "Drama", + "desc": "Nathalie falls for Baptiste Debureau, a mime. But his heart is set on Garance, who is also coveted by Frederick Lemaitre and the Count of Montray.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yiy9stl1jjVhW44ypkWMFDT8Ix3.jpg", + "length": "3h 11m" + }, + { + "title": "Rome, Open City", + "director": "Roberto Rossellini", + "year": "1945", + "tags": "Drama", + "desc": "During the Nazi occupation of Rome in 1944, the leader of the Resistance is chased by the Nazis as he seeks refuge and a way to escape.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ijGV4v8JxgbNzgEhqKdzHdaZn8a.jpg", + "length": "2h 43m" + }, + { + "title": "The Lost Weekend", + "director": "Billy Wilder", + "year": "1945", + "tags": "Drama", + "desc": "Don Birnam, a long-time alcoholic, has been sober for ten days and appears to be over the worst... but his craving has just become more insidious. Evading a country weekend planned by his brother and girlfriend, he begins a four-day bender that just might be his last - one way or another.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8ggIOoCzt8xT2ePl8DdlRtXgcOh.jpg", + "length": "2h 41m" + }, + { + "title": "Detour", + "director": "Edgar G. Ulmer", + "year": "1945", + "tags": "Drama", + "desc": "The life of Al Roberts, a pianist in a New York nightclub, turns into a nightmare when he decides to hitchhike to Los Angeles to visit his girlfriend.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gJb9HRAs1V4bA0VKsWpT6mhv2RT.jpg", + "length": "1h 8m" + }, + { + "title": "I Know Where I'm Going!", + "director": "Emeric Pressburger", + "year": "1945", + "tags": "Drama", + "desc": "Plucky Englishwoman Joan Webster travels to the remote islands of the Scottish Hebrides in order to marry a wealthy industrialist. Trapped by inclement weather on the Isle of Mull and unable to continue to her destination, Joan finds herself charmed by the straightforward, no-nonsense islanders around her, and becomes increasingly attracted to naval officer Torquil MacNeil, who holds a secret that may change her life forever.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/i0Tq9xHqjlm3TjMYAJEq3hFnpQb.jpg", + "length": "2h 31m" + }, + { + "title": "Brief Encounter", + "director": "David Lean", + "year": "1945", + "tags": "Drama", + "desc": "Returning home from a shopping trip to a nearby town, bored suburban housewife Laura Jesson is thrown by happenstance into an acquaintance with virtuous doctor Alec Harvey. Their casual friendship soon develops during their weekly visits into something more emotionally fulfilling than either expected, and they must wrestle with the potential havoc their deepening relationship would have on their lives and the lives of those they love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jC9EwLJcGhYMSQAHu2LxkKN5v7O.jpg", + "length": "1h 26m" + }, + { + "title": "The Best Years of Our Lives", + "director": "William Wyler", + "year": "1946", + "tags": "Drama", + "desc": "It's the hope that sustains the spirit of every GI: the dream of the day when he will finally return home. For three WWII veterans, the day has arrived. But for each man, the dream is about to become a nightmare.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gd5EoAU4MM57sW3vlWxJ0NMM8cV.jpg", + "length": "3h 51m" + }, + { + "title": "Paisan", + "director": "Roberto Rossellini", + "year": "1946", + "tags": "Drama", + "desc": "Six vignettes follow the Allied invasion from July 1943 to winter 1944, from Sicily north to Venice.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r5IGAFASCXmp8m51vUbER3WwVcB.jpg", + "length": "2h 5m" + }, + { + "title": "The Postman Always Rings Twice", + "director": "Tay Garnett", + "year": "1946", + "tags": "Drama", + "desc": "A married woman and a drifter fall in love, then plot to murder her husband.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3qdX948vUXi4q8raUUOHHlbP9q8.jpg", + "length": "2h 53m" + }, + { + "title": "My Darling Clementine", + "director": "John Ford", + "year": "1946", + "tags": "Western", + "desc": "Wyatt Earp and his brothers Morgan and Virgil ride into Tombstone and leave brother James in charge of their cattle herd. On their return they find their cattle stolen and James dead. Wyatt takes on the job of town marshal, making his brothers deputies, and vows to stay in Tombstone until James' killers are found. He soon runs into the brooding, coughing, hard-drinking Doc Holliday as well as the sullen and vicious Clanton clan. Wyatt discovers the owner of a trinket stolen from James' dead body and the stage is set for the Earps' long-awaited revenge.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/o7G5klSt9i8LQZdUNvrWUJbbxAO.jpg", + "length": "2h 37m" + }, + { + "title": "The Stranger", + "director": "Orson Welles", + "year": "1946", + "tags": "Thriller", + "desc": "An investigator from the War Crimes Commission travels to Connecticut to find an infamous Nazi, who may be hiding out in a small town in the guise of a distinguished professor engaged to the Supreme Court Justice\u2019s daughter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bzjoPScBLUWpSu10m3GbSbSwVhS.jpg", + "length": "2h 35m" + }, + { + "title": "Beauty and the Beast", + "director": "Jean Cocteau", + "year": "1946", + "tags": "Drama", + "desc": "The story of a gentle-hearted beast in love with a simple and beautiful girl. She is drawn to the repellent but strangely fascinating Beast, who tests her fidelity by giving her a key, telling her that if she doesn't return it to him by a specific time, he will die of grief. She is unable to return the key on time, but it is revealed that the Beast is the genuinely handsome one. A simple tale of tragic love that turns into a surreal vision of death, desire, and beauty.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iYSe3yrkma0e1B0wWPXgr8w5sDN.jpg", + "length": "2h 36m" + }, + { + "title": "The Big Sleep", + "director": "Howard Hawks", + "year": "1946", + "tags": "Mystery", + "desc": "Private Investigator Philip Marlowe is hired by wealthy General Sternwood regarding a matter involving his youngest daughter Carmen. Before the complex case is over, Marlowe sees murder, blackmail, deception, and what might be love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lraHo9D8c0YWfxsKqT5P5sVqMKN.jpg", + "length": "2h 54m" + }, + { + "title": "The Killers", + "director": "Robert Siodmak", + "year": "1946", + "tags": "Crime", + "desc": "Two hit men walk into a diner asking for a man called \"the Swede\". When the killers find the Swede, he's expecting them and doesn't put up a fight. Since the Swede had a life insurance policy, an investigator, on a hunch, decides to look into the murder. As the Swede's past is laid bare, it comes to light that he was in love with a beautiful woman who may have lured him into pulling off a bank robbery overseen by another man.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uXnuc6pW01s1MDwb6QwBWg2JQeX.jpg", + "length": "2h 43m" + }, + { + "title": "A Matter of Life and Death", + "director": "Emeric Pressburger", + "year": "1946", + "tags": "Comedy", + "desc": "When a young RAF pilot miraculously survives bailing out of his aeroplane without a parachute, he falls in love with an American radio operator. But the officials in the other world realise their mistake and dispatch an angel to collect him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/H74LWKnhOeIFSk9gNjBcPjIov3.jpg", + "length": "2h 44m" + }, + { + "title": "Great Expectations", + "director": "David Lean", + "year": "1946", + "tags": "Drama", + "desc": "In this Dickens adaptation, orphan Pip discovers through lawyer Mr. Jaggers that a mysterious benefactor wishes to ensure that he becomes a gentleman. Reunited with his childhood patron, Miss Havisham, and his first love, the beautiful but emotionally cold Estella, he discovers that the elderly spinster has gone mad from having been left at the altar as a young woman, and has made her charge into a warped, unfeeling heartbreaker.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ynaFuVvW2jaG06pMV67dOhzMYfJ.jpg", + "length": "2h 58m" + }, + { + "title": "Notorious", + "director": "Alfred Hitchcock", + "year": "1946", + "tags": "Thriller", + "desc": "In order to help bring Nazis to justice, U.S. government agent T.R. Devlin recruits Alicia Huberman, the American daughter of a convicted German war criminal, as a spy. As they begin to fall for one another, Alicia is instructed to win the affections of Alexander Sebastian, a Nazi hiding out in Brazil. When Sebastian becomes serious about his relationship with Alicia, the stakes get higher, and Devlin must watch her slip further undercover.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yUjKnpColooH88BFQJwwgNOQ56N.jpg", + "length": "2h 43m" + }, + { + "title": "Black Narcissus", + "director": "Emeric Pressburger", + "year": "1947", + "tags": "Drama", + "desc": "A group of Anglican nuns, led by Sister Clodagh, are sent to a mountain in the Himalayas. The climate in the region is hostile and the nuns are housed in an odd old palace. They work to establish a school and a hospital, but slowly their focus shifts. Sister Ruth falls for a government worker, Mr. Dean, and begins to question her vow of celibacy. As Sister Ruth obsesses over Mr. Dean, Sister Clodagh becomes immersed in her own memories of love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/37TXnILqURzYqpFjLY5qzLgEF0n.jpg", + "length": "2h 40m" + }, + { + "title": "It's a Wonderful Life", + "director": "Frank Capra", + "year": "1946", + "tags": "Drama", + "desc": "A holiday favourite for generations... George Bailey has spent his entire life giving to the people of Bedford Falls. All that prevents rich skinflint Mr. Potter from taking over the entire town is George's modest building and loan company. But on Christmas Eve the business's $8,000 is lost and George's troubles begin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mV3VcmMJN6Zwahj42dy9WwPUyRI.jpg", + "length": "2h 10m" + }, + { + "title": "Gilda", + "director": "Charles Vidor", + "year": "1946", + "tags": "Romance", + "desc": "A gambler discovers an old flame while in Argentina, but she's married to his new boss.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/46eKPjoWEyNBAQKDoXEcDFBcaUw.jpg", + "length": "2h 50m" + }, + { + "title": "Monsieur Verdoux", + "director": "Charlie Chaplin", + "year": "1947", + "tags": "Comedy", + "desc": "The film is about an unemployed banker, Henri Verdoux, and his sociopathic methods of attaining income. While being both loyal and competent in his work, Verdoux has been laid-off. To make money for his wife and child, he marries wealthy widows and then murders them. His crime spree eventually works against him when two particular widows break his normal routine.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mUPXIinTQsBdLlDaWiSl7GwQXVs.jpg", + "length": "2h 4m" + }, + { + "title": "Out of the Past", + "director": "Jacques Tourneur", + "year": "1947", + "tags": "Crime", + "desc": "Jeff Bailey seems to be a mundane gas station owner in remote Bridgeport, California. He is dating local girl Ann Miller and lives a quiet life. But Jeff has a secret past, and when a mysterious stranger arrives in town, Jeff is forced to return to the dark world he had tried to escape.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xkP7PHExdCDzcBemGaiZCk6oCtZ.jpg", + "length": "2h 37m" + }, + { + "title": "The Ghost and Mrs. Muir", + "director": "Joseph L. Mankiewicz", + "year": "1947", + "tags": "Romance", + "desc": "A young British widow rents a seaside cottage and soon becomes haunted by the ghost of its former owner.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/idoD3cwfwj86BPvVoWVgWhnT2xq.jpg", + "length": "2h 45m" + }, + { + "title": "Odd Man Out", + "director": "Carol Reed", + "year": "1947", + "tags": "Crime", + "desc": "Belfast police conduct a door-to-door manhunt for an IRA gunman wounded in a daring robbery.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1xZkTIATlTtyd7Ybphev8ZTmJA0.jpg", + "length": "2h 56m" + }, + { + "title": "Bicycle Thieves", + "director": "Vittorio De Sica", + "year": "1948", + "tags": "Drama", + "desc": "Unemployed Antonio is elated when he finally finds work hanging posters around war-torn Rome. However on his first day, his bicycle\u2014essential to his work\u2014gets stolen. His job is doomed unless he can find the thief. With the help of his son, Antonio combs the city, becoming desperate for justice.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rLpveWO1hTNYF9LUZJZgTdq5nyf.jpg", + "length": "1h 29m" + }, + { + "title": "Letter From an Unknown Woman", + "director": "Max Oph\u00fcls", + "year": "1948", + "tags": "Drama", + "desc": "A pianist about to flee from a duel receives a letter from a woman he cannot remember. As she tells the story of her lifelong love for him, he is forced to reinterpret his own past.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gRGRW7DKyK8qBtKJTWguULMGbHG.jpg", + "length": "1h 27m" + }, + { + "title": "Secret Beyond the Door", + "director": "Fritz Lang", + "year": "1948", + "tags": "Mystery", + "desc": "After a whirlwind romance in Mexico, a beautiful heiress marries a man she barely knows with hardly a second thought. She finds his New York home full of his strange relations, and macabre rooms that are replicas of famous murder sites. One locked room contains the secret to her husband's obsession, and the truth about what happened to his first wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uVBEwjzXweHWjCFjAs7eJzH9in6.jpg", + "length": "2h 39m" + }, + { + "title": "Force of Evil", + "director": "Abraham Polonsky", + "year": "1948", + "tags": "Crime", + "desc": "Lawyer Joe Morse wants to consolidate all the small-time numbers racket operators into one big powerful operation. But his elder brother Leo is one of these small-time operators who wants to stay that way, preferring not to deal with the gangsters who dominate the big-time.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/x33LVKf4yWdjMeczJkzE5sIw4VG.jpg", + "length": "1h 19m" + }, + { + "title": "Spring in a Small Town", + "director": "Mu Fei", + "year": "1948", + "tags": "Drama", + "desc": "A married couple living in a desolate small town in post-WWII China are paid a surprise visit by an old friend of the husband's.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r4CDZsZsOY2YXHjiVq9AnAo4CHx.jpg", + "length": "2h 34m" + }, + { + "title": "Red River", + "director": "Howard Hawks", + "year": "1948", + "tags": "Western", + "desc": "Headstrong Thomas Dunson starts a thriving Texas cattle ranch with the help of his faithful trail hand, Groot, and his prot\u00e9g\u00e9, Matthew Garth, an orphan Dunson took under his wing when Matt was a boy. In need of money following the Civil War, Dunson and Matt lead a cattle drive to Missouri, where they will get a better price than locally, but the crotchety older man and his willful young partner begin to butt heads on the exhausting journey.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jyNTsAzrIWB441OtvfbgKtx1kFS.jpg", + "length": "2h 13m" + }, + { + "title": "Rope", + "director": "Alfred Hitchcock", + "year": "1948", + "tags": "Thriller", + "desc": "Two men murder a man in cold blood for the thrill and invite his parents over for a celebration to prove they have committed the perfect crime, but they also have to deal with their former schoolmaster, who becomes suspicious.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/b26XeLSqZpC807rPvAvGgQM2c3c.jpg", + "length": "1h 21m" + }, + { + "title": "The Snake Pit", + "director": "Anatole Litvak", + "year": "1948", + "tags": "Drama", + "desc": "Virginia Cunningham is confused upon finding herself in a mental hospital, with no memory of her arrival at the institution. Tormented by delusions and unable to even recognize her husband, Robert, she is treated by Dr. Mark Kik, who is determined to get to the root of her mental illness. As her treatment progresses, flashbacks depict events in Virginia's life that may have contributed to her instability.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7NkGhyPfLoPHiFzXVUXU91nMeLb.jpg", + "length": "2h 48m" + }, + { + "title": "The Lady From Shanghai", + "director": "Orson Welles", + "year": "1947", + "tags": "Mystery", + "desc": "A romantic drifter gets caught between a corrupt tycoon and his voluptuous wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vDN6ue4RF85raOeU2aannFGfxlA.jpg", + "length": "1h 27m" + }, + { + "title": "The Paleface", + "director": "Norman Z. McLeod", + "year": "1948", + "tags": "Comedy", + "desc": "Bob Hope stars in this laugh-packed wild west spoof co-starring Jane Russell as a sexy Calamity Jane, Hope is a meek frontier dentist, \"Painless\" Peter Potter, who finds himself gunslinging alongside the fearless Calamity as she fights off outlaws and Indians.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dyB8CdPQTv12k5Jkk3Rx257jxRw.jpg", + "length": "2h 31m" + }, + { + "title": "The Red Shoes", + "director": "Emeric Pressburger", + "year": "1948", + "tags": "Drama", + "desc": "In this classic drama, Vicky Page is an aspiring ballerina torn between her dedication to dance and her desire to love. While her imperious instructor, Boris Lermontov, urges to her to forget anything but ballet, Vicky begins to fall for the charming young composer Julian Craster. Eventually Vicky, under great emotional stress, must choose to pursue either her art or her romance, a decision that carries serious consequences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vPvpBWFWDvEXuQBkoYgA6A89GVp.jpg", + "length": "2h 13m" + }, + { + "title": "The Treasure of the Sierra Madre", + "director": "John Huston", + "year": "1948", + "tags": "Adventure", + "desc": "Fred C. Dobbs and Bob Curtin, both down on their luck in Tampico, Mexico in 1925, meet up with a grizzled prospector named Howard and decide to join with him in search of gold in the wilds of central Mexico. Through enormous difficulties, they eventually succeed in finding gold, but bandits, the elements, and most especially greed threaten to turn their success into disaster.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pWcst7zVbi8Z8W6GFrdNE7HHRxL.jpg", + "length": "2h 6m" + }, + { + "title": "Louisiana Story", + "director": "Robert Flaherty", + "year": "1948", + "tags": "Adventure", + "desc": "The idyllic life of a young Cajun boy and his pet raccoon is disrupted when the tranquility of the bayou is broken by an oil well drilling near his home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kwEbsHAvdY9G2gJKRKYmxJ6IB6L.jpg", + "length": "1h 18m" + }, + { + "title": "The Heiress", + "director": "William Wyler", + "year": "1949", + "tags": "Drama", + "desc": "Dull and plain Catherine lives with her emotionally distant father, Dr. Sloper, in 1840s New York. Her days are empty \u2014 filled with little more than needlepoint. Enter handsome Morris Townsend, a dashing social climber with his eye on the spinster's heart and substantial inheritance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zcut0Y6PfcjBJKIyOpc0QDFS9jK.jpg", + "length": "2h 55m" + }, + { + "title": "Kind Hearts and Coronets", + "director": "Robert Hamer", + "year": "1949", + "tags": "Comedy", + "desc": "When his mother eloped with an Italian opera singer, Louis Mazzini was cut off from her aristocratic family. After the family refuses to let her be buried in the family mausoleum, Louis avenges his mother's death by attempting to murder every family member who stands between himself and the family fortune. But when he finds himself torn between his longtime love and the widow of one of his victims, his plans go awry.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eBvpyRjD3DcCsWgdV6Y9oqPS7dO.jpg", + "length": "2h 44m" + }, + { + "title": "Gun Crazy", + "director": "Joseph H. Lewis", + "year": "1950", + "tags": "Crime", + "desc": "Bart Tare is an ex-Army man who has a lifelong fixation with guns, he meets a kindred spirit in sharpshooter Annie Starr and goes to work at a carnival. After upsetting the carnival owner who lusts after Starr, they both get fired. Soon, on Starr's behest, they embark on a crime spree for cash.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kC1IIitCJTZLwZyuQnKw4zaOaXc.jpg", + "length": "1h 27m" + }, + { + "title": "Adam's Rib", + "director": "George Cukor", + "year": "1949", + "tags": "Comedy", + "desc": "When a woman attempts to kill her uncaring husband, prosecutor Adam Bonner gets the case. Unfortunately for him his wife Amanda (who happens to be a lawyer too) decides to defend the woman in court. Amanda uses everything she can to win the case and Adam gets mad about it. As a result, their perfect marriage is disturbed by everyday quarrels.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k9gT6d2sDT9Jd4dvzHowTt3l6Zg.jpg", + "length": "2h 40m" + }, + { + "title": "Whisky Galore!", + "director": "Alexander Mackendrick", + "year": "1949", + "tags": "Comedy", + "desc": "Based on a true story. The name of the real ship, that sunk Feb 5 1941 - during WWII - was S/S Politician. Having left Liverpool two days earlier, heading for Jamaica, it sank outside Eriskay, The Outer Hebrides, Scotland, in bad weather, containing 250,000 bottles of whisky. The locals gathered as many bottles as they could, before the proper authorities arrived, and even today, bottles are found in the sand or in the sea every other year.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4qz5Oc3hgXx4eBx7vkqLfG58J9X.jpg", + "length": "1h 22m" + }, + { + "title": "White Heat", + "director": "Raoul Walsh", + "year": "1949", + "tags": "Crime", + "desc": "A psychopathic criminal with a mother complex makes a daring break from prison and then leads his old gang in a chemical plant payroll heist. After the heist, events take a crazy turn.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4ekAK25fz1FDzRUHuJs171uiVaI.jpg", + "length": "2h 54m" + }, + { + "title": "The Reckless Moment", + "director": "Max Oph\u00fcls", + "year": "1949", + "tags": "Drama", + "desc": "After discovering the dead body of her teenage daughter's lover, a housewife takes desperate measures to protect her family from scandal.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8IuAjOKH6EIUfE4UWf7ooQUL9xl.jpg", + "length": "1h 22m" + }, + { + "title": "The Third Man", + "director": "Carol Reed", + "year": "1949", + "tags": "Thriller", + "desc": "In postwar Vienna, Austria, Holly Martins, a writer of pulp Westerns, arrives penniless as a guest of his childhood chum Harry Lime, only to learn he has died. Martins develops a conspiracy theory after learning of a \"third man\" present at the time of Harry's death, running into interference from British officer Major Calloway, and falling head-over-heels for Harry's grief-stricken lover, Anna.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oIF3l7Dxp7Eyye10BNyM611wtKa.jpg", + "length": "2h 44m" + }, + { + "title": "On the Town", + "director": "Stanley Donen", + "year": "1949", + "tags": "Music", + "desc": "Three sailors wreak havoc as they search for love during a whirlwind 24-hour leave in New York City.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lEU8QQmIayAtPZrCDf2czQgTjQ1.jpg", + "length": "2h 38m" + }, + { + "title": "Orpheus", + "director": "Jean Cocteau", + "year": "1950", + "tags": "Romance", + "desc": "A poet in love with Death follows his unhappy wife into the underworld.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wcUmMtipWBBx7lpsfpPsUM4Snh1.jpg", + "length": "2h 35m" + }, + { + "title": "The Asphalt Jungle", + "director": "John Huston", + "year": "1950", + "tags": "Crime", + "desc": "Recently paroled from prison, legendary burglar \"Doc\" Riedenschneider, with funding from Alonzo Emmerich, a crooked lawyer, gathers a small group of veteran criminals together in the Midwest for a big jewel heist.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gECEOjjLjuHi9DDHeDLj28SXLHE.jpg", + "length": "2h 52m" + }, + { + "title": "Rashomon", + "director": "Akira Kurosawa", + "year": "1950", + "tags": "Crime", + "desc": "Brimming with action while incisively examining the nature of truth, \"Rashomon\" is perhaps the finest film ever to investigate the philosophy of justice. Through an ingenious use of camera and flashbacks, Kurosawa reveals the complexities of human nature as four people recount different versions of the story of a man's murder and the rape of his wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vL7Xw04nFMHwnvXRFCmYYAzMUvY.jpg", + "length": "1h 28m" + }, + { + "title": "Winchester '73", + "director": "Anthony Mann", + "year": "1950", + "tags": "Western", + "desc": "Lin McAdam rides into town on the trail of Dutch Henry Brown, only to find himself in a shooting competition against him. McAdam wins the prize, a one-in-a-thousand Winchester rifle, but Dutch steals it and leaves town. McAdam follows, intent on settling his old quarrel, while the rifle keeps changing hands and touching a number of lives.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iP2G8d36sC89CnU7TLaNOdD5Io8.jpg", + "length": "2h 32m" + }, + { + "title": "Rio Grande", + "director": "John Ford", + "year": "1950", + "tags": "Western", + "desc": "Lt. Col. Kirby Yorke is posted on the Texas frontier to defend settlers against depredations of marauding Apaches. Col. Yorke is under considerable stress by a serious shortage of troops of his command. Tension is added when Yorke's son (whom he hasn't seen in fifteen years), Trooper Jeff Yorke, is one of 18 recruits sent to the regiment.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zYoK2RkBCmyhIV6UUb6EZLqxmZq.jpg", + "length": "2h 45m" + }, + { + "title": "All About Eve", + "director": "Joseph L. Mankiewicz", + "year": "1950", + "tags": "Drama", + "desc": "From the moment she glimpses her idol at the stage door, Eve Harrington is determined to take the reins of power away from the great actress Margo Channing. Eve maneuvers her way into Margo's Broadway role, becomes a sensation and even causes turmoil in the lives of Margo's director boyfriend, her playwright and his wife. Only the cynical drama critic sees through Eve, admiring her audacity and perfect pattern of deceit.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6numIZH6uR3NlJgY9m7nGH0jhs.jpg", + "length": "2h 19m" + }, + { + "title": "Sunset Boulevard", + "director": "Billy Wilder", + "year": "1950", + "tags": "Drama", + "desc": "A hack screenwriter writes a screenplay for a former silent film star who has faded into Hollywood obscurity.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sC4Dpmn87oz9AuxZ15Lmip0Ftgr.jpg", + "length": "2h 50m" + }, + { + "title": "Los Olvidados", + "director": "Manuel Le\u00f3n Caballero", + "year": "1950", + "tags": "Drama", + "desc": "They hide in the woods and need us dead to continue their reign. Cris and Jose don\u2019t know it yet, but they\u2019re about to enter the dominions of The Reverend. Running won\u2019t help at all.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fGbddRfSapdLzL0ugIe3DldXR2z.jpg", + "length": "0h 0m" + }, + { + "title": "In a Lonely Place", + "director": "Nicholas Ray", + "year": "1950", + "tags": "Drama", + "desc": "An aspiring actress begins to suspect that her temperamental and mentally impaired boyfriend is a murderer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mR72XsO7EQu3uH8TeqPxMd9V8mW.jpg", + "length": "2h 34m" + }, + { + "title": "Ace in the Hole", + "director": "Billy Wilder", + "year": "1951", + "tags": "Drama", + "desc": "An arrogant reporter exploits a story about a man trapped in a cave to revitalize his career.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gPVPzHEsJBX02HtBtIQgYnfeqNQ.jpg", + "length": "2h 51m" + }, + { + "title": "A Streetcar Named Desire", + "director": "Elia Kazan", + "year": "1951", + "tags": "Drama", + "desc": "A fading southern belle tries to build a new life with her sister in New Orleans.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aicdlO5vt7z2ARm279eGzJeYCLQ.jpg", + "length": "2h 5m" + }, + { + "title": "Strangers on a Train", + "director": "Alfred Hitchcock", + "year": "1951", + "tags": "Crime", + "desc": "Two strangers meet on a train. They\u2019ve never met before. Both of whom have someone they\u2019d like to murder. So, they swap murders. A psychopath shares this concept with tennis star Guy Haines, whose wife refuses to get a divorce. He agrees, thinking it is a joke. But now his wife is dead, Haines finds himself a prime suspect and the man wants Guy to kill his father.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ihC083U7ef56Ui4x0P0dobojrZ1.jpg", + "length": "2h 41m" + }, + { + "title": "The Lavender Hill Mob", + "director": "Charles Crichton", + "year": "1951", + "tags": "Comedy", + "desc": "A meek bank clerk who oversees the shipments of bullion joins with an eccentric neighbor to steal gold bars and smuggle them out of the country.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k0MfdrAshO2247Z9xu1FyulK5i9.jpg", + "length": "1h 18m" + }, + { + "title": "Pandora and the Flying Dutchman", + "director": "Albert Lewin", + "year": "1951", + "tags": "Romance", + "desc": "Pandora Reynolds is a woman who has never fallen in love \u2013 but one who men kill and die for. When she meets dashing and mysterious ship's captain Hendrik van der Zee, he pushes her to commit the ultimate act of love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ysTr7nqKvB2YS6Xdcr7tTrc4aPl.jpg", + "length": "2h 4m" + }, + { + "title": "The African Queen", + "director": "John Huston", + "year": "1951", + "tags": "Romance", + "desc": "At the start of the First World War, in the middle of Africa\u2019s nowhere, a gin soaked riverboat captain is persuaded by a strong-willed missionary to go down river and face-off a German warship.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2Ypg0KhQfFYWILelvHGtSHHR0dk.jpg", + "length": "2h 45m" + }, + { + "title": "Diary of a Country Priest", + "director": "Robert Bresson", + "year": "1951", + "tags": "Drama", + "desc": "An inexperienced, sickly priest shows up in the rural French community of Ambricourt, where he joins the community's clergy. But the locals don't take kindly to the priest, and his ascetic ways and unsociable demeanor make him an outcast. During Bible studies at the nearby girls school, he is continually mocked by his students. Then his attempt to intervene in a family feud backfires into a scandal. His failures, compounded with his declining health, begin to erode his faith.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mft7ZJqHxUyFaLL3ZYXX1MN2Gro.jpg", + "length": "2h 55m" + }, + { + "title": "An American in Paris", + "director": "Vincente Minnelli", + "year": "1951", + "tags": "Music", + "desc": "Jerry Mulligan is an exuberant American expatriate in Paris trying to make a reputation as a painter. His friend Adam is a struggling concert pianist who's a long time associate of a famous French singer, Henri Baurel. A lonely society woman, Milo Roberts, takes Jerry under her wing and supports him, but is interested in more than his art.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lyDXkvG53ldz6Cf7dbjJl7TaoP5.jpg", + "length": "2h 53m" + }, + { + "title": "A Place in the Sun", + "director": "George Stevens", + "year": "1951", + "tags": "Drama", + "desc": "An ambitious young man wins an heiress's heart but has to cope with his former girlfriend's pregnancy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3tKYbChwIRYCwFrMUDBkbZyDIoN.jpg", + "length": "2h 2m" + }, + { + "title": "The Day the Earth Stood Still", + "director": "Robert Wise", + "year": "1951", + "tags": "Science Fiction", + "desc": "An alien and a robot land on Earth after World War II and tell mankind to be peaceful or face destruction.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/x2DquTpLTq54aPFDnqlwY7apCC3.jpg", + "length": "2h 32m" + }, + { + "title": "The Quiet Man", + "director": "John Ford", + "year": "1952", + "tags": "Romance", + "desc": "An American man returns to the village of his birth in Ireland, where he finds love and conflict.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u3B1hVKHE56yBRoxF3Nk9uxHdYN.jpg", + "length": "2h 9m" + }, + { + "title": "Forbidden Games", + "director": "Ren\u00e9 Cl\u00e9ment", + "year": "1952", + "tags": "Drama", + "desc": "Orphaned after a Nazi air raid, Paulette, a young Parisian girl, runs into Michel, an older peasant boy, and the two quickly become close. Together, they try to make sense of the chaotic and crumbling world around them, attempting to cope with death as they create a burial ground for Paulette's deceased pet dog. Eventually, however, Paulette's stay with Michel's family is threatened by the harsh realities of wartime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nby91GNVXQAv1NmKvqlpEEdhcMQ.jpg", + "length": "1h 27m" + }, + { + "title": "Angel Face", + "director": "Otto Preminger", + "year": "1952", + "tags": "Drama", + "desc": "An ambulance driver gets involved with a rich girl that might have a darker side.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c4wrCYEgEtLXxoyEZf4pBl6XD4V.jpg", + "length": "2h 31m" + }, + { + "title": "Singin' in the Rain", + "director": "Stanley Donen", + "year": "1952", + "tags": "Comedy", + "desc": "In 1927 Hollywood, a silent film production company and cast make a difficult transition to sound.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/w03EiJVHP8Un77boQeE7hg9DVdU.jpg", + "length": "2h 43m" + }, + { + "title": "Ikiru", + "director": "Akira Kurosawa", + "year": "1952", + "tags": "Drama", + "desc": "Kanji Watanabe is a middle-aged man who has worked in the same monotonous bureaucratic position for decades. Learning he has cancer, he starts to look for the meaning of his life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dgNTS4EQDDVfkzJI5msKuHu2Ei3.jpg", + "length": "2h 23m" + }, + { + "title": "Europe '51", + "director": "Roberto Rossellini", + "year": "1952", + "tags": "Drama", + "desc": "A wealthy, self-absorbed Rome socialite is racked by guilt over the death of her young son. As a way of dealing with her grief and finding meaning in her life, she decides to devote her time and money to the city\u2019s poor and sick. Her newfound, single-minded activism leads to conflicts with her husband and questions about her sanity.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hw9MEW5kslyRwpJp8AgpIlBxtmr.jpg", + "length": "2h 58m" + }, + { + "title": "The Bad and the Beautiful", + "director": "Vincente Minnelli", + "year": "1952", + "tags": "Drama", + "desc": "Told in flashback form, the film traces the rise and fall of a tough, ambitious Hollywood producer, Jonathan Shields, as seen through the eyes of various acquaintances, including a writer, James Lee Bartlow; a star, Georgia Lorrison; and a director, Fred Amiel. He is a hard-driving, ambitious man who ruthlessly uses everyone on the way to becoming one of Hollywood's top movie makers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ajAXzTiPkL7JxeCRw5lQBqrKNGx.jpg", + "length": "2h 58m" + }, + { + "title": "The Big Sky", + "director": "Howard Hawks", + "year": "1952", + "tags": "Adventure", + "desc": "Two tough Kentucky mountaineers join a trading expedition from St. Louis up the Missouri River to trade whisky for furs with the Blackfoot Indians. They soon discover that there is much more than the elements to contend with.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/38j31YEpiw33a85zOBn51d0CfMx.jpg", + "length": "2h 20m" + }, + { + "title": "High Noon", + "director": "Fred Zinnemann", + "year": "1952", + "tags": "Western", + "desc": "Will Kane, the sheriff of a small town in New Mexico, learns a notorious outlaw he put in jail has been freed, and will be arriving on the noon train. Knowing the outlaw and his gang are coming to kill him, Kane is determined to stand his ground, so he attempts to gather a posse from among the local townspeople.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jUckD9kq8yi2MPzDHvhaGmD6XJk.jpg", + "length": "1h 25m" + }, + { + "title": "Umberto D.", + "director": "Vittorio De Sica", + "year": "1952", + "tags": "Drama", + "desc": "When elderly pensioner Umberto Domenico Ferrari returns to his boarding house from a protest calling for a hike in old-age pensions, his landlady demands her 15,000-lire rent by the end of the month or he and his small dog will be turned out onto the street. Unable to get the money in time, Umberto fakes illness to get sent to a hospital, giving his beloved dog to the landlady's pregnant and abandoned maid for temporary safekeeping.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5I7SYsNQmZRZpQ2MAarIQYU9vaX.jpg", + "length": "2h 31m" + }, + { + "title": "The Bigamist", + "director": "Ida Lupino", + "year": "1953", + "tags": "Drama", + "desc": "San Francisco businessman Harry Graham and his wife and business partner, Eve, are in the process of adopting a child. When private investigator Mr. Jordan uncovers the fact that Graham has another wife, Phyllis, and a small child in Los Angeles, he confesses everything.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iht6xFLrObIoQvvuC3XOmnocc9u.jpg", + "length": "1h 20m" + }, + { + "title": "The Golden Coach", + "director": "Jean Renoir", + "year": "1952", + "tags": "Comedy", + "desc": "A viceroy, a nobleman and a bullfighter court a comedy-troupe actress in 18th-century Peru.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cDlxLnLMboEfdDcPelodOs71GVs.jpg", + "length": "2h 45m" + }, + { + "title": "The Band Wagon", + "director": "Vincente Minnelli", + "year": "1953", + "tags": "Music", + "desc": "A Broadway artiste turns a faded film star's comeback vehicle into an artsy flop.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5CvUmTWK46rShfgLmw7LuKF2fYL.jpg", + "length": "2h 52m" + }, + { + "title": "The Earrings of Madame De...", + "director": "Max Oph\u00fcls", + "year": "1953", + "tags": "Drama", + "desc": "In France of the late 19th century, the wife of a wealthy general, the Countess Louise, sells the earrings her husband gave her on their wedding day to pay off debts; she claims to have lost them. Her husband quickly learns of the deceit, which is the beginning of many tragic misunderstandings, all involving the earrings, the general, the countess, & her new lover, the Italian Baron Donati.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hwjrojY8NEkWNvS9AIQKSlhGNrU.jpg", + "length": "2h 45m" + }, + { + "title": "From Here to Eternity", + "director": "Fred Zinnemann", + "year": "1953", + "tags": "War", + "desc": "In 1941 Hawaii, a private is cruelly punished for not boxing on his unit's team, while his captain's wife and second in command are falling in love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/25Rm1YJSyhXAEu8abonZvW83aPL.jpg", + "length": "2h 58m" + }, + { + "title": "Tokyo Story", + "director": "Yasujir\u014d Ozu", + "year": "1953", + "tags": "Drama", + "desc": "The elderly Shukishi and his wife, Tomi, take the long journey from their small seaside village to visit their adult children in Tokyo. Their elder son, Koichi, a doctor, and their daughter, Shige, a hairdresser, don't have much time to spend with their aged parents, and so it falls to Noriko, the widow of their younger son who was killed in the war, to keep her in-laws company.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/g2YbTYKpY7N2yDSk7BfXZ18I5QV.jpg", + "length": "2h 17m" + }, + { + "title": "Roman Holiday", + "director": "William Wyler", + "year": "1953", + "tags": "Romance", + "desc": "Overwhelmed by her suffocating schedule, touring European princess Ann takes off for a night while in Rome. When a sedative she took from her doctor kicks in, however, she falls asleep on a park bench and is found by an American reporter, Joe Bradley, who takes her back to his apartment for safety. At work the next morning, Joe finds out Ann's regal identity and bets his editor he can get exclusive interview with her, but romance soon gets in the way.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8lI9dmz1RH20FAqltkGelY1v4BE.jpg", + "length": "2h 59m" + }, + { + "title": "The Wages of Fear", + "director": "Henri-Georges Clouzot", + "year": "1953", + "tags": "Drama", + "desc": "In a run-down South American town, four men are paid to drive trucks loaded with nitroglycerin into the jungle through to the oil field. Friendships are tested and rivalries develop as they embark upon the perilous journey.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d1VEnsFO7YcEc5gRqKXu2Bq2MMJ.jpg", + "length": "2h 28m" + }, + { + "title": "The Naked Spur", + "director": "Anthony Mann", + "year": "1953", + "tags": "Western", + "desc": "A bounty hunter trying to bring a murderer to justice is forced to accept the help of two less-than-trustworthy strangers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xS5EAgCnFFvHbyRydlqTbDbaXZ6.jpg", + "length": "2h 31m" + }, + { + "title": "Pickup on South Street", + "director": "Samuel Fuller", + "year": "1953", + "tags": "Thriller", + "desc": "In New York City, an insolent pickpocket, Skip McCoy, inadvertently sets off a chain of events when he targets ex-prostitute Candy and steals her wallet. Unaware that she has been making deliveries of highly classified information to the communists, Candy, who has been trailed by FBI agents for months in hopes of nabbing the spy ringleader, is sent by her ex-boyfriend, Joey, to find Skip and retrieve the valuable microfilm he now holds.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/et4fY4BxLyAPwxvUFUbzCUrGsjR.jpg", + "length": "1h 20m" + }, + { + "title": "Gentlemen Prefer Blondes", + "director": "Howard Hawks", + "year": "1953", + "tags": "Comedy", + "desc": "Lorelei Lee is a beautiful showgirl engaged to be married to the wealthy Gus Esmond, much to the disapproval of Gus' rich father, Esmond Sr., who thinks that Lorelei is just after his money. When Lorelei goes on a cruise accompanied only by her best friend, Dorothy Shaw, Esmond Sr. hires Ernie Malone, a private detective, to follow her and report any questionable behavior that would disqualify her from the marriage.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fDozhst5HVJJcd3BM8ZOsKniO7Q.jpg", + "length": "2h 31m" + }, + { + "title": "The Big Heat", + "director": "Fritz Lang", + "year": "1953", + "tags": "Crime", + "desc": "Tough cop Dave Bannion takes on a politically powerful crime syndicate. Preserved by the Academy Film Archive in partnership with Sony Pictures Entertainment in 1997.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n1xdAX2g6PU3aqQXmZtY9gXvvEz.jpg", + "length": "1h 29m" + }, + { + "title": "Mr. Hulot's Holiday", + "director": "Jacques Tati", + "year": "1953", + "tags": "Comedy", + "desc": "Monsieur Hulot, Jacques Tati\u2019s endearing clown, takes a holiday at a seaside resort, where his presence provokes one catastrophe after another. Tati\u2019s masterpiece of gentle slapstick is a series of effortlessly well-choreographed sight gags involving dogs, boats, and firecrackers; it was the first entry in the Hulot series and the film that launched its maker to international stardom.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r4F4tsU0Ajeh9ZYUkWOJSYmioj7.jpg", + "length": "1h 27m" + }, + { + "title": "Journey to Italy", + "director": "Roberto Rossellini", + "year": "1954", + "tags": "Drama", + "desc": "This deceptively simple tale of a bored English couple travelling to Italy to find a buyer for a house inherited from an uncle is transformed by Roberto Rossellini into a passionate story of cruelty and cynicism as their marriage disintegrates around them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tjli2Rjwkn8fivuynxwthnnEzeo.jpg", + "length": "1h 25m" + }, + { + "title": "Ugetsu", + "director": "Kenji Mizoguchi", + "year": "1953", + "tags": "Fantasy", + "desc": "In 16th century Japan, peasants Genjuro and Tobei sell their earthenware pots to a group of soldiers in a nearby village, in defiance of a local sage's warning against seeking to profit from warfare. Genjuro's pursuit of both riches and the mysterious Lady Wakasa, as well as Tobei's desire to become a samurai, run the risk of destroying both themselves and their wives, Miyagi and Ohama.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7Kk1ZsrAul2Lg7Pe45XOcUf2ARQ.jpg", + "length": "2h 36m" + }, + { + "title": "Shane", + "director": "George Stevens", + "year": "1953", + "tags": "Drama", + "desc": "A weary gunfighter attempts to settle down with a homestead family, but a smouldering settler and rancher conflict forces him to act.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/svr5ADpjXTCOQv8hmuJnB7I14Qv.jpg", + "length": "2h 58m" + }, + { + "title": "Beat the Devil", + "director": "John Huston", + "year": "1953", + "tags": "Adventure", + "desc": "A group of con artists stake their claim on a bogus uranium mine.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eDROzlsoKHbrRXh8FyBK8Csd6k7.jpg", + "length": "2h 35m" + }, + { + "title": "Sommaren Med Monika", + "director": "Ingmar Bergman", + "year": "1953", + "tags": "Drama", + "desc": "Monika from Stockholm falls in love with Harry, a young man on holiday. When she becomes pregnant they are forced into a marriage, which begins to fall apart soon after they take up residence in a cramped little flat.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/82hLsn67V9TjgrLOZCFL7247pJd.jpg", + "length": "2h 38m" + }, + { + "title": "Johnny Guitar", + "director": "Nicholas Ray", + "year": "1954", + "tags": "Western", + "desc": "On the outskirts of town, the hard-nosed Vienna owns a saloon frequented by the undesirables of the region, including Dancin' Kid and his gang. Another patron of Vienna's establishment is Johnny Guitar, a former gunslinger and her lover. When a heist is pulled in town that results in a man's death, Emma Small, Vienna's rival, rallies the townsfolk to take revenge on Vienna's saloon \u2013 even without proof of her wrongdoing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bap37yOCwcR9x4YDsNUaSo9nIp9.jpg", + "length": "2h 50m" + }, + { + "title": "On the Waterfront", + "director": "Elia Kazan", + "year": "1954", + "tags": "Crime", + "desc": "A dim-witted yet kind-hearted boxer, Terry Malloy, who failed to succeed unintentionally lures a man to his death after being tricked by a criminal called Johnny Friendly whose men pick of every man who has the courage to speak up to their crimes. As he works on the waterfronts that Friendly owns, he is sent to a church meeting run by a good preacher about how to deal with the problem and runs into the dead man\u2019s sister. Slowly, he falls in love with her and begins to feel guilt about his crime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fKjLZy9W8VxMOp5OoyWojmLVCQw.jpg", + "length": "2h 48m" + }, + { + "title": "Seven Brides for Seven Brothers", + "director": "Stanley Donen", + "year": "1954", + "tags": "Comedy", + "desc": "In 1850 Oregon, when a backwoodsman brings a wife home to his farm, his six brothers decide that they want to get married too.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dxULKGOyFhap5Hc2f7a1rQZB0Sj.jpg", + "length": "2h 43m" + }, + { + "title": "Diabolique", + "director": "Henri-Georges Clouzot", + "year": "1955", + "tags": "Drama", + "desc": "The cruel and abusive headmaster of a boarding school, Michel Delassalle, is murdered by an unlikely duo -- his meek wife and the mistress he brazenly flaunts. The women become increasingly unhinged by a series of odd occurrences after Delassalle's corpse mysteriously disappears.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pNcwhz3Eyfn3KQ2XykTozbARMpr.jpg", + "length": "2h 57m" + }, + { + "title": "Animal Farm", + "director": "John Halas", + "year": "1954", + "tags": "Animation", + "desc": "Animals on a farm lead a revolution against the farmers to put their destiny in their own hands. However this revolution eats their own children and they cannot avoid corruption.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lhLp9a0jBIPLMAdUFNlYjCuS72Q.jpg", + "length": "1h 12m" + }, + { + "title": "Rear Window", + "director": "Alfred Hitchcock", + "year": "1954", + "tags": "Thriller", + "desc": "A wheelchair-bound photographer spies on his neighbors from his apartment window and becomes convinced one of them has committed murder.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ILVF0eJxHMddjxeQhswFtpMtqx.jpg", + "length": "2h 55m" + }, + { + "title": "A Star Is Born", + "director": "George Cukor", + "year": "1954", + "tags": "Drama", + "desc": "A movie star helps a young singer-actress find fame, even as age and alcoholism send his own career into a downward spiral.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zpg2SzpYhZk1D1seDfIIlwaqAxT.jpg", + "length": "3h 56m" + }, + { + "title": "The Barefoot Contessa", + "director": "Joseph L. Mankiewicz", + "year": "1954", + "tags": "Drama", + "desc": "Has-been director Harry Dawes gets a new lease on his career when the independently wealthy tycoon Kirk Edwards hires him to write and direct a film. They go to Madrid to find Maria Vargas, a dancer who will star in the film.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eSRBlHu9didl6MdFQdIYpU9YdFD.jpg", + "length": "2h 8m" + }, + { + "title": "La Strada", + "director": "Federico Fellini", + "year": "1954", + "tags": "Drama", + "desc": "When Gelsomina, a na\u00efve young woman, is purchased from her impoverished mother by brutish circus strongman Zampan\u00f2 to be his wife and partner, she loyally endures her husband's coldness and abuse as they travel the Italian countryside performing together. Soon Zampan\u00f2 must deal with his jealousy and conflicted feelings about Gelsomina when she finds a kindred spirit in Il Matto, the carefree circus fool, and contemplates leaving Zampan\u00f2.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xyisVfPrNybDieMp1nbCv6iBtdV.jpg", + "length": "2h 55m" + }, + { + "title": "Seven Samurai", + "director": "Akira Kurosawa", + "year": "1954", + "tags": "Action", + "desc": "A samurai answers a village's request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8OKmBV5BUFzmozIC3pPWKHy17kx.jpg", + "length": "3h 27m" + }, + { + "title": "Senso", + "director": "Luchino Visconti", + "year": "1955", + "tags": "Romance", + "desc": "A troubled and neurotic Italian Countess betrays her entire country for a self-destructive love affair with an Austrian Lieutenant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iyWApADv4UD9KtVQvJ1mkKn9WXV.jpg", + "length": "2h 3m" + }, + { + "title": "Silver Lode", + "director": "Allan Dwan", + "year": "1954", + "tags": "Western", + "desc": "Dan Ballard, a respected citizen in the western town of Silver Lode, has his wedding interrupted by four men led by Ned McCarty, an old acquaintance who, as a US Marshal, arrests Ballard for the murder of his brother and the theft of $20,000. Ballard seeks to stall McCarty while tracking down evidence that will prove his innocence.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cVIDVhgbtQ6mAsihqzD8opW9uga.jpg", + "length": "1h 21m" + }, + { + "title": "Carmen Jones", + "director": "Otto Preminger", + "year": "1954", + "tags": "Drama", + "desc": "The tale of the cigarette-maker Carmen and the Spanish cavalry soldier Don Jose is translated into a modern-day story of a parachute factory worker and a stalwart GI named Joe who is about to go to flying school. Conflict arises when a prize-ring champ captures the heart of Carmen after she has seduced Joe and caused him to go AWOL.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5Vo4NeE7dlXBUaikbGnUOmUNHJ3.jpg", + "length": "2h 45m" + }, + { + "title": "Sansho the Bailiff", + "director": "Kenji Mizoguchi", + "year": "1954", + "tags": "Drama", + "desc": "In medieval Japan, a woman and his children journey to find the family's patriarch, who was exiled years before.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ffMCNNYiTCdkhMQoNSX17urqWiz.jpg", + "length": "2h 4m" + }, + { + "title": "Salt of the Earth", + "director": "Herbert J. Biberman", + "year": "1954", + "tags": "Drama", + "desc": "At New Mexico's Empire Zinc mine, Mexican-American workers protest the unsafe work conditions and unequal wages compared to their Anglo counterparts. Ramon Quintero helps organize the strike, but he is shown to be a hypocrite by treating his pregnant wife, Esperanza, with a similar unfairness. When an injunction stops the men from protesting, however, the gender roles are reversed, and women find themselves on the picket lines while the men stay at home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yoJq58HdxLxcGFgWZkO9Ya3vDLG.jpg", + "length": "2h 34m" + }, + { + "title": "Artists and Models", + "director": "Frank Tashlin", + "year": "1955", + "tags": "Comedy", + "desc": "A struggling painter begins taking inspiration from the dreams of his friend and roommate, a comic book fan who narrates an adventure story while he sleeps, but unbeknownst to the latter, the artist of his favorite comic book lives in the same building as they do with the model for her drawings.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jtCfUCOwXJ1E4X9pgCoag2zVob8.jpg", + "length": "2h 50m" + }, + { + "title": "Guys and Dolls", + "director": "Joseph L. Mankiewicz", + "year": "1955", + "tags": "Comedy", + "desc": "Gambler Nathan Detroit has few options for the location of his big craps game. Needing $1,000 to pay a garage owner to host the game, Nathan bets Sky Masterson that Sky cannot get virtuous Sarah Brown out on a date. Despite some resistance, Sky negotiates a date with her in exchange for bringing people into her mission. Meanwhile, Nathan's longtime fianc\u00e9e, Adelaide, wants him to go legit and marry her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3FB9wKoPNkA4MSYRX9GnMqCp4td.jpg", + "length": "2h 30m" + }, + { + "title": "Pather Panchali", + "director": "Satyajit Ray", + "year": "1955", + "tags": "Drama", + "desc": "Impoverished priest Harihar Ray, dreaming of a better life for himself and his family, leaves his rural Bengal village in search of work.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2pZR9zmUzsblDLE5ndBe57ScqIi.jpg", + "length": "2h 5m" + }, + { + "title": "Bad Day at Black Rock", + "director": "John Sturges", + "year": "1955", + "tags": "Thriller", + "desc": "One-armed war veteran John J. Macreedy steps off a train at the sleepy little town of Black Rock. Once there, he begins to unravel a web of lies, secrecy, and murder.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8EnhHjU0DyCckmZRtn46s3WXeEf.jpg", + "length": "1h 21m" + }, + { + "title": "Les Ma\u00eetres Fous", + "director": "Jean Rouch", + "year": "1955", + "tags": "Documentary", + "desc": "The subject of the film was the Hauka movement. The Hauka movement consisted of mimicry and dancing to become possessed by French Colonial administrators. The participants performed the same elaborate military ceremonies of their colonial occupiers, but in more of a trance than true recreation.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3L6pzmvpS0Yweav4XgH0QOoufxs.jpg", + "length": "0h 28m" + }, + { + "title": "Hill 24 Doesn't Answer", + "director": "Thorold Dickinson", + "year": "1955", + "tags": "War", + "desc": "In 1948, immediately before a ceasefire takes effect, four volunteers fighting for Israel are ordered to take Hill 24, overlooking the road to Jerusalem.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vDAKWwGPNB4bgzegeko1azDkZA9.jpg", + "length": "2h 41m" + }, + { + "title": "The Ladykillers", + "director": "Alexander Mackendrick", + "year": "1955", + "tags": "Comedy", + "desc": "Five oddball criminals planning a bank robbery rent rooms on a cul-de-sac from an octogenarian widow under the pretext that they are classical musicians.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9LJ6ZV59Q92LAJAbmb7xm9dUBGU.jpg", + "length": "2h 31m" + }, + { + "title": "Marty", + "director": "Delbert Mann", + "year": "1955", + "tags": "Drama", + "desc": "Marty, a butcher who lives in the Bronx with his mother is unmarried at 34. Good-natured but socially awkward he faces constant badgering from family and friends to get married but has reluctantly resigned himself to bachelorhood. Marty meets Clara, an unattractive school teacher, realising their emotional connection, he promises to call but family and friends try to convince him not to.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8tnGO5VoAQII4DbE3hozWKhV4BY.jpg", + "length": "2h 30m" + }, + { + "title": "Ordet", + "director": "Carl Theodor Dreyer", + "year": "1955", + "tags": "Drama", + "desc": "The three sons of devout Danish farmer Morten have widely disparate religious beliefs. Youngest son Anders shares his father's religion, but eldest son Mikkel has lost his faith, while middle child Johannes has become delusional and proclaims that he is Jesus Christ himself. When Mikkel's wife, Inger goes into a difficult childbirth, everyone's beliefs are put to the test.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/e3oh96Zrqdaku8DoD10pXZHLZoU.jpg", + "length": "2h 5m" + }, + { + "title": "Kiss Me Deadly", + "director": "Robert Aldrich", + "year": "1955", + "tags": "Mystery", + "desc": "One evening, Hammer gives a ride to Christina, an attractive hitchhiker on a lonely country road, who has escaped from the nearby lunatic asylum. Thugs waylay them and force his car to crash. When Hammer returns to semi-consciousness, he hears Christina being tortured until she dies. Hammer, both for vengeance and in hopes that \"something big\" is behind it all, decides to pursue the case.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z7me91nrpWLHY1mZOB2v20cK0zY.jpg", + "length": "2h 46m" + }, + { + "title": "Rebel Without a Cause", + "director": "Nicholas Ray", + "year": "1955", + "tags": "Drama", + "desc": "After moving to a new town, troublemaking teen Jim Stark is supposed to have a clean slate, although being the new kid in town brings its own problems. While searching for some stability, Stark forms a bond with a disturbed classmate, Plato, and falls for local girl Judy. However, Judy is the girlfriend of neighborhood tough, Buzz. When Buzz violently confronts Jim and challenges him to a drag race, the new kid's real troubles begin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n0oJB5fhcUth9ZbHziwsFuR38gT.jpg", + "length": "2h 51m" + }, + { + "title": "The Phenix City Story", + "director": "Phil Karlson", + "year": "1955", + "tags": "Crime", + "desc": "A crime-busting lawyer and his initially reluctant attorney father take on the forces that run gambling and prostitution in their small Southern town.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9VB4tGVtym2qXodfxQsCAJBKkSO.jpg", + "length": "2h 40m" + }, + { + "title": "Smiles of a Summer Night", + "director": "Ingmar Bergman", + "year": "1955", + "tags": "Comedy", + "desc": "Early in the 20th century, middle-aged lawyer Fredrik Egerman and his young wife, Anne, have still not consummated their marriage, while Fredrik's son finds himself increasingly attracted to his new stepmother. To make matters worse, Fredrik's old flame Desiree makes a public bet that she can seduce him at a romantic weekend retreat where four couples convene, swapping partners and pairing off in unexpected ways.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wKeV8lKz8k9DDBCw6MJ9MkhvhqF.jpg", + "length": "2h 49m" + }, + { + "title": "Night and Fog", + "director": "Alain Resnais", + "year": "1955", + "tags": "Documentary", + "desc": "Filmmaker Alain Resnais documents the atrocities behind the walls of Hitler's concentration camps.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2iWYQia8enOai7QEO3TvenleD7r.jpg", + "length": "1h 32m" + }, + { + "title": "The Night of the Hunter", + "director": "Charles Laughton", + "year": "1955", + "tags": "Crime", + "desc": "In the Deep South, a serial-killing preacher hunts two young children who know the whereabouts of a stash of money.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rBka0nFWiHxabHRLr0KfIA8Yiaq.jpg", + "length": "2h 33m" + }, + { + "title": "Lola Mont\u00e8s", + "director": "Max Oph\u00fcls", + "year": "1955", + "tags": "Drama", + "desc": "Lola Montes, previously a great adventuress, is reduced to being the attraction of a circus after having been the lover of various important men.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ycePcddfSvqaalyPxMvFYT5D8wV.jpg", + "length": "2h 56m" + }, + { + "title": "All That Heaven Allows", + "director": "Douglas Sirk", + "year": "1955", + "tags": "Drama", + "desc": "Two different social classes collide when Cary Scott, a wealthy upper-class widow, falls in love with her much younger and down-to-earth gardener, prompting disapproval and criticism from her children and country club friends.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kgTJagk03a6zvJxwOUDf6L9qkct.jpg", + "length": "1h 29m" + }, + { + "title": "The Man With the Golden Arm", + "director": "Otto Preminger", + "year": "1955", + "tags": "Drama", + "desc": "A junkie must face his true self to kick his drug addiction.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3TUOhZhM5GCYIbxwFO3chpZ0DHx.jpg", + "length": "2h 59m" + }, + { + "title": "Oklahoma!", + "director": "Fred Zinnemann", + "year": "1955", + "tags": "Western", + "desc": "This joyous celebration of frontier life combines tender romance and violent passion in the Oklahoma Territory of the 1900s with a timeless score filled with unforgettable songs. Rodgers and Hammerstein's hit Broadway musical.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ztqT5GmJVI2o8vShGWRVVqykQqA.jpg", + "length": "2h 28m" + }, + { + "title": "Bob Le Flambeur", + "director": "Jean-Pierre Melville", + "year": "1956", + "tags": "Drama", + "desc": "In Paris, Bob Montagne is practically synonymous with gambling -- and winning. He is kind, classy and well-liked by virtually everyone in town, including police inspector Ledru. However, when Bob's luck turns sour, he begins to lose friends and makes the most desperate gamble of his life: to rob the Deauville casino during Grand Prix weekend, when the vaults are full. Unfortunately, Bob soon learns that the game is rigged and the cops are on to him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sfBdB97gJESNUxqPyiiQg5t7D8t.jpg", + "length": "2h 43m" + }, + { + "title": "Forbidden Planet", + "director": "Fred M. Wilcox", + "year": "1956", + "tags": "Science Fiction", + "desc": "Starship C57D travels to planet Altair 4 in search of the crew of spaceship \"Bellerophon,\" a scientific expedition that has been missing for 20 years, only to find themselves unwelcome by the expedition's lone survivor and warned of destruction by an invisible force if they don't turn back immediately.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aq0OQfRS7hDDI8vyD0ICbH9eguC.jpg", + "length": "2h 38m" + }, + { + "title": "The Burmese Harp", + "director": "Kon Ichikawa", + "year": "1956", + "tags": "Drama", + "desc": "In Burma during the closing days of WWII, a Japanese soldier separated from his unit disguises himself as a Buddhist monk to escape imprisonment as a POW.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aQbrTw1srrfDbte9ZduzF2bTKDI.jpg", + "length": "2h 57m" + }, + { + "title": "The Searchers", + "director": "John Ford", + "year": "1956", + "tags": "Western", + "desc": "As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jLBmgW0epNzJ1N9uzaVCjbyT94v.jpg", + "length": "2h 59m" + }, + { + "title": "A Man Escaped", + "director": "Robert Bresson", + "year": "1956", + "tags": "Drama", + "desc": "A captured French Resistance fighter during World War II engineers a daunting escape from prison.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mKA9ZGfPYQEu6k8uhVTGptBDX9a.jpg", + "length": "2h 41m" + }, + { + "title": "Written on the Wind", + "director": "Douglas Sirk", + "year": "1956", + "tags": "Drama", + "desc": "Mitch Wayne is a geologist working for the Hadleys, an oil-rich Texas family. While the patriarch, Jasper, works hard to establish the family business, his irresponsible son, Kyle, is an alcoholic playboy, and his daughter, Marylee, is the town tramp. Mitch harbors a secret love for Kyle's unsatisfied wife, Lucy -- a fact that leaves him exposed when the jealous Marylee accuses him of murder.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/paeBU70fHsFAOooWM5V35q562f2.jpg", + "length": "2h 39m" + }, + { + "title": "The Man Who Knew Too Much", + "director": "Alfred Hitchcock", + "year": "1956", + "tags": "Thriller", + "desc": "A couple vacationing in Morocco with their young son accidentally stumble upon an assassination plot. When the child is kidnapped to ensure their silence, they have to take matters into their own hands to save him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gy8YBRjCQRIT9x9G9F5fpnFD4xw.jpg", + "length": "2h 0m" + }, + { + "title": "Giant", + "director": "George Stevens", + "year": "1956", + "tags": "Drama", + "desc": "Wealthy rancher Bick Benedict and dirt-poor cowboy Jett Rink both woo Leslie Lynnton, a beautiful young woman from Maryland who is new to Texas. She marries Benedict, but she is shocked by the racial bigotry of the White Texans against the local people of Mexican descent. Rink discovers oil on a small plot of land, and while he uses his vast, new wealth to buy all the land surrounding the Benedict ranch, the Benedict's disagreement over prejudice fuels conflict that runs across generations.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oQ1Arue52pFLSvvwfcNTy16hTCG.jpg", + "length": "3h 21m" + }, + { + "title": "Invasion of the Body Snatchers", + "director": "Don Siegel", + "year": "1956", + "tags": "Science Fiction", + "desc": "A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8BrMQmgwGzIHSyBjCDOLOdi79fJ.jpg", + "length": "1h 20m" + }, + { + "title": "The Wrong Man", + "director": "Alfred Hitchcock", + "year": "1956", + "tags": "Crime", + "desc": "In 1953, an innocent man named Christopher Emmanuel \"Manny\" Balestrero is arrested after being mistaken for an armed robber.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pO5XR2R56RAbVjdks9gGGn0fbOa.jpg", + "length": "2h 45m" + }, + { + "title": "Bigger Than Life", + "director": "Nicholas Ray", + "year": "1956", + "tags": "Drama", + "desc": "A friendly, successful suburban teacher and father grows dangerously addicted to cortisone, resulting in his transformation into a household despot.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nC3J5B2lkWDLm7Q7C26AVFzqJLV.jpg", + "length": "2h 35m" + }, + { + "title": "High Society", + "director": "Charles Walters", + "year": "1956", + "tags": "Music", + "desc": "Childhood friends Tracy Lord and C.K. Dexter Haven got married and quickly divorced. Now Tracy is about to marry again, this time to a shrewd social-climbing businessman. C.K. still loves her. Spy magazine blackmails Tracy's family by threatening to reveal her playboy father's exploits if not allowed to cover the wedding. A remake of the 1940 rom com The Philadelphia Story.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4H224rVxChPrYVvR3E0VPV8zdlO.jpg", + "length": "2h 47m" + }, + { + "title": "The Ten Commandments", + "director": "Cecil B. DeMille", + "year": "1956", + "tags": "Drama", + "desc": "Escaping death, a Hebrew infant is raised in a royal household to become a prince. Upon discovery of his true heritage, Moses embarks on a personal quest to reclaim his destiny as the leader and liberator of the Hebrew people.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2rBUaC6ngeFmYXjL4KA3eLjt5wA.jpg", + "length": "4h 40m" + }, + { + "title": "12 Angry Men", + "director": "Sidney Lumet", + "year": "1957", + "tags": "Drama", + "desc": "The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ow3wq89wM8qd5X7hWKxiRfsFf9C.jpg", + "length": "2h 37m" + }, + { + "title": "The Seventh Seal", + "director": "Ingmar Bergman", + "year": "1957", + "tags": "Fantasy", + "desc": "When disillusioned Swedish knight Antonius Block returns home from the Crusades to find his country in the grips of the Black Death, he challenges Death to a chess match for his life. Tormented by the belief that God does not exist, Block sets off on a journey, meeting up with traveling players Jof and his wife, Mia, and becoming determined to evade Death long enough to commit one redemptive act while he still lives.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/j6z3c6dGXtPHUATJX8J7Y70mM1S.jpg", + "length": "2h 36m" + }, + { + "title": "An Affair to Remember", + "director": "Leo McCarey", + "year": "1957", + "tags": "Drama", + "desc": "A couple falls in love and agrees to meet in six months at the Empire State Building - but will it happen?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jwbWglYHbjqUu8M9DjTYzTOFklt.jpg", + "length": "2h 51m" + }, + { + "title": "Wild Strawberries", + "director": "Ingmar Bergman", + "year": "1957", + "tags": "Drama", + "desc": "Crotchety retired doctor Isak Borg travels from Stockholm to Lund, Sweden, with his pregnant and unhappy daughter-in-law, Marianne, in order to receive an honorary degree from his alma mater. Along the way, they encounter a series of hitchhikers, each of whom causes the elderly doctor to muse upon the pleasures and failures of his own life. These include the vivacious young Sara, a dead ringer for the doctor's own first love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iyTD2QnySNMPUPE3IedZQipSWfz.jpg", + "length": "2h 31m" + }, + { + "title": "Nights of Cabiria", + "director": "Federico Fellini", + "year": "1957", + "tags": "Drama", + "desc": "Rome, 1957. A woman, Cabiria, is robbed and left to drown by her boyfriend, Giorgio. Rescued, she resumes her life and tries her best to find happiness in a cynical world. Even when she thinks her struggles are over and she has found happiness and contentment, things may not be what they seem.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xF4oCG3PLNbcrtPZbqB3BtkIbKg.jpg", + "length": "2h 50m" + }, + { + "title": "Throne of Blood", + "director": "Akira Kurosawa", + "year": "1957", + "tags": "Drama", + "desc": "Returning to their lord's castle, samurai warriors Washizu and Miki are waylaid by a spirit who predicts their futures. When the first part of the spirit's prophecy comes true, Washizu's scheming wife, Asaji, presses him to speed up the rest of the spirit's prophecy by murdering his lord and usurping his place. Director Akira Kurosawa's resetting of William Shakespeare's \"Macbeth\" in feudal Japan is one of his most acclaimed films.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zaZFMNxJST0TtPd68yF7fNt1he8.jpg", + "length": "2h 48m" + }, + { + "title": "The Incredible Shrinking Man", + "director": "Jack Arnold", + "year": "1957", + "tags": "Science Fiction", + "desc": "A dangerous combination of radiation and insecticide causes the unfortunate Scott Carey to shrink, slowly but surely, until he is only a few inches tall. His home becomes a wilderness where he must survive everything from spiders living in the cellar to his beloved cat.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m4PhIGCIQh4CmlnVitM6I9s2tpM.jpg", + "length": "1h 21m" + }, + { + "title": "Aparajito", + "director": "Satyajit Ray", + "year": "1956", + "tags": "Drama", + "desc": "Aparajito picks up where the first film leaves off, with Apu and his family having moved away from the country to live in the bustling holy city of Varanasi (then known as Benares). As Apu progresses from wide-eyed child to intellectually curious teenager, eventually studying in Kolkata, we witness his academic and moral education, as well as the growing complexity of his relationship with his mother. This tenderly expressive, often heart-wrenching film, which won three top prizes at the Venice Film Festival, including the Golden Lion, not only extends but also spiritually deepens the tale of Apu. Preserved by the Academy Film Archive in 1996.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rIJoxt3zOSoO2XujOVOhvIKIidS.jpg", + "length": "2h 50m" + }, + { + "title": "Gunfight at the O.K. Corral", + "director": "John Sturges", + "year": "1957", + "tags": "Western", + "desc": "Lawman Wyatt Earp and outlaw Doc Holliday form an unlikely alliance which culminates in their participation in the legendary Gunfight at the O.K. Corral.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/71AQUFbw49ALCNtKZ69flFmbRhF.jpg", + "length": "2h 2m" + }, + { + "title": "The Bridge on the River Kwai", + "director": "David Lean", + "year": "1957", + "tags": "Drama", + "desc": "The classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson, the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7paXMt2e3Tr5dLmEZOGgFEn2Vo7.jpg", + "length": "3h 41m" + }, + { + "title": "Mother India", + "director": "Mehboob Khan", + "year": "1957", + "tags": "Drama", + "desc": "A poverty-stricken woman raises her sons through many trials and tribulations. But no matter the struggles, always sticks to her own moral code.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sGFxh6zT5GxgskJShD01MsqXbuT.jpg", + "length": "3h 52m" + }, + { + "title": "The Cranes Are Flying", + "director": "Mikhail Kalatozov", + "year": "1957", + "tags": "Drama", + "desc": "Veronika and Boris come together in Moscow shortly before World War II. Walking along the river, they watch cranes fly overhead, and promise to rendezvous before Boris leaves to fight. Boris misses the meeting and is off to the front lines, while Veronika waits patiently, sending letters faithfully. After her house is bombed, Veronika moves in with Boris' family, into the company of a cousin with his own intentions.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/foXYOdXEJ0rvtTDo4LLnsUnvPLB.jpg", + "length": "2h 37m" + }, + { + "title": "Paths of Glory", + "director": "Stanley Kubrick", + "year": "1957", + "tags": "War", + "desc": "A commanding officer defends three scapegoats on trial for a failed offensive that occurred within the French Army in 1916.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/p7OHwomA8UOhe3EhckF2IetBTh9.jpg", + "length": "1h 28m" + }, + { + "title": "Sweet Smell of Success", + "director": "Alexander Mackendrick", + "year": "1957", + "tags": "Drama", + "desc": "New York City newspaper writer J.J. Hunsecker holds considerable sway over public opinion with his Broadway column, but one thing that he can't control is his younger sister, Susan, who is in a relationship with aspiring jazz guitarist Steve Dallas. Hunsecker strongly disapproves of the romance and recruits publicist Sidney Falco to find a way to split the couple, no matter how ruthless the method.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/akzvV8JasNrgEl5iAP9K6zPHGJe.jpg", + "length": "2h 37m" + }, + { + "title": "Man of the West", + "director": "Anthony Mann", + "year": "1958", + "tags": "Western", + "desc": "Heading east to Fort Worth to hire a schoolteacher for his frontier town home, Link Jones is stranded with singer Billie Ellis and gambler Sam Beasley when their train is held up. For shelter, Jones leads them to his nearby former home, where he was brought up an outlaw. Finding the gang still living in the shack, Jones pretends to be ready to return to a life crime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fh9vTJ5mOkKK5nZ1LRhfvP5JrD7.jpg", + "length": "2h 40m" + }, + { + "title": "Touch of Evil", + "director": "Orson Welles", + "year": "1958", + "tags": "Crime", + "desc": "When a car bomb explodes on the American side of the U.S./Mexico border, Mexican drug enforcement agent Miguel Vargas begins his investigation, along with American police captain Hank Quinlan. When Vargas begins to suspect that Quinlan and his shady partner, Menzies, are planting evidence to frame an innocent man, his investigations into their possible corruption quickly put himself and his new bride, Susie, in jeopardy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1pvRgmfBaoMczIJBOi9gCOZ4FMC.jpg", + "length": "2h 51m" + }, + { + "title": "Cairo Station", + "director": "Youssef Chahine", + "year": "1958", + "tags": "Crime", + "desc": "Qinawi, a physically challenged peddler who makes his living selling newspapers in the central Cairo train station, is obsessed with Hanuma, an attractive young woman who sells drinks. While she jokes with him about a possible relationship, she is actually in love with Abu Siri, a strong and respected porter at the station who is struggling to unionize his fellow workers to combat their boss' exploitative and abusive treatment.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zm8ET6PSfPT6pozgvjR7htaZFjy.jpg", + "length": "1h 26m" + }, + { + "title": "Gigi", + "director": "Vincente Minnelli", + "year": "1958", + "tags": "Comedy", + "desc": "A home, a motorcar, servants, the latest fashions: the most eligible and most finicky bachelor in Paris offers them all to Gigi. But she, who's gone from girlish gawkishness to cultured glamour before our eyes, yearns for that wonderful something money can't buy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1sF5o9Cs5GMx3cYmXD64WEQBLJn.jpg", + "length": "2h 56m" + }, + { + "title": "The Defiant Ones", + "director": "Stanley Kramer", + "year": "1958", + "tags": "Crime", + "desc": "Two convicts\u2014a white racist and an angry black man\u2014escape while chained to each other.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tGGNyImEXgedDjrCORbC9cTJp0X.jpg", + "length": "2h 36m" + }, + { + "title": "Vertigo", + "director": "Alfred Hitchcock", + "year": "1958", + "tags": "Mystery", + "desc": "A retired San Francisco detective suffering from acrophobia investigates the strange activities of an old friend's wife, all the while becoming dangerously obsessed with her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/15uOEfqBNTVtDUT7hGBVCka0rZz.jpg", + "length": "2h 9m" + }, + { + "title": "Ashes and Diamonds", + "director": "Andrzej Wajda", + "year": "1958", + "tags": "Drama", + "desc": "A young academy soldier, Maciek Chelmicki, is ordered to shoot the secretary of the KW PPR. A coincidence causes him to kill someone else. Meeting face to face with his victim, he gets a shock. He faces the necessity of repeating the assassination. He meets Krystyna, a girl working as a barmaid in the restaurant of the \"Monopol\" hotel. His affection for her makes him even more aware of the senselessness of killing at the end of the war. Loyalty to the oath he took, and thus the obligation to obey the order, tips the scales.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nE8aqRvVnRQEqskiarnFhdJdk8g.jpg", + "length": "2h 43m" + }, + { + "title": "Dracula", + "director": "Terence Fisher", + "year": "1958", + "tags": "Horror", + "desc": "After Jonathan Harker attacks Dracula at his castle, the vampire travels to a nearby city, where he preys on the family of Harker's fianc\u00e9e. The only one who may be able to protect them is Dr. van Helsing, Harker's friend and fellow-student of vampires, who is determined to destroy Dracula, whatever the cost.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1L45hwUu1P4NRhbRRrE5d9oHamm.jpg", + "length": "1h 22m" + }, + { + "title": "Mon Oncle", + "director": "Jacques Tati", + "year": "1958", + "tags": "Comedy", + "desc": "Genial, bumbling Monsieur Hulot loves his top-floor apartment in a grimy corner of the city, and cannot fathom why his sister's family has moved to the suburbs. Their house is an ultra-modern nightmare, which Hulot only visits for the sake of stealing away his rambunctious young nephew. Hulot's sister, however, wants to win him over to her new way of life, and conspires to set him up with a wife and job.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wH6RyPiXFy8INLbViVkchLVOmBc.jpg", + "length": "2h 58m" + }, + { + "title": "The Music Room", + "director": "Satyajit Ray", + "year": "1958", + "tags": "Drama", + "desc": "A wealthy landlord lives a decadent life with his wife and son. His passion \u2013 his wife would calls it his addiction \u2013 is music, and he spends a great deal of his fortune on concerts held for the locals in his magnificent music room. He feels threatened by his neighbour, a commoner who has attained riches through business dealings. His passion for music and quest for social respect are his undoing, as he sacrifices his family and wealth trying to retain it.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/21Mfk2TTrgy2rv4jeINMKRUUdhW.jpg", + "length": "2h 40m" + }, + { + "title": "Some Came Running", + "director": "Vincente Minnelli", + "year": "1958", + "tags": "Drama", + "desc": "A former novelist returns to his small Midwest town after serving in the Army during WWII, to the chagrin of his social-climbing brother, and becomes close with an easy-going professional gambler and torn between two very different women.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1MU776Znpod129nuoZenRhdlALv.jpg", + "length": "2h 17m" + }, + { + "title": "The 400 Blows", + "director": "Fran\u00e7ois Truffaut", + "year": "1959", + "tags": "Drama", + "desc": "For young Parisian boy Antoine Doinel, life is one difficult situation after another. Surrounded by inconsiderate adults, including his neglectful parents, Antoine spends his days with his best friend, Rene, trying to plan for a better life. When one of their schemes goes awry, Antoine ends up in trouble with the law, leading to even more conflicts with unsympathetic authority figures.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/12PuU23kkDLvTd0nb8hMlE3oShB.jpg", + "length": "2h 39m" + }, + { + "title": "North by Northwest", + "director": "Alfred Hitchcock", + "year": "1959", + "tags": "Mystery", + "desc": "Advertising man Roger Thornhill is mistaken for a spy, triggering a deadly cross-country chase.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/i3g0KIoXYx5RvyVaraYx9n2LCli.jpg", + "length": "2h 16m" + }, + { + "title": "Some Like It Hot", + "director": "Billy Wilder", + "year": "1959", + "tags": "Comedy", + "desc": "Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl band as they leave on a tour. To make their getaway they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate and a very determined suitor.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hVIKyTK13AvOGv7ICmJjK44DTzp.jpg", + "length": "2h 2m" + }, + { + "title": "Anatomy of a Murder", + "director": "Otto Preminger", + "year": "1959", + "tags": "Crime", + "desc": "Semi-retired Michigan lawyer Paul Biegler takes the case of Army Lt. Manion, who murdered a local innkeeper after his wife claimed that he raped her. Over the course of an extensive trial, Biegler parries with District Attorney Lodwick and out-of-town prosecutor Claude Dancer to set his client free, but his case rests on the victim's mysterious business partner, who's hiding a dark secret.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zMxLbSPpToTCc6yK2Gddhx6nHNN.jpg", + "length": "3h 41m" + }, + { + "title": "Eyes Without a Face", + "director": "Georges Franju", + "year": "1960", + "tags": "Drama", + "desc": "Dr. G\u00e9nessier is riddled with guilt after an accident that he caused disfigures the face of his daughter, the once beautiful Christiane, who outsiders believe is dead. Dr. G\u00e9nessier, along with accomplice and laboratory assistant Louise, kidnaps young women and brings them to the G\u00e9nessier mansion. After rendering his victims unconscious, Dr. G\u00e9nessier removes their faces and attempts to graft them on to Christiane's.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8y7Z9Gvcq52uOlJlUWyn2epGGRd.jpg", + "length": "1h 24m" + }, + { + "title": "Ride Lonesome", + "director": "Budd Boetticher", + "year": "1959", + "tags": "Western", + "desc": "On the way to pick up the bounty on a wanted murderer, a bounty hunter stops at a staging post where he is forced to continue his journey with two outlaws who want the murderer for their own reasons and a recently-widowed woman, with the murderer's brother and his men in hot pursuit.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cRQ6oAMkjBKf76E54YooLNvZ2pE.jpg", + "length": "1h 13m" + }, + { + "title": "Black Orpheus", + "director": "Marcel Camus", + "year": "1959", + "tags": "Drama", + "desc": "Young lovers Orfeu and Eurydice run through the favelas of Rio during Carnaval, on the lam from a hitman dressed like Death and Orfeu's vengeful fianc\u00e9e Mira and passing between moments of fantasy and stark reality. This impressionistic retelling of the Greek legend of Orpheus and Eurydice introduced bossa nova to the world with its soundtrack by young Brazilian composers Luiz Bonf\u00e1 and Antonio Carlos Jobim.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fJWzdNRnfjcJuaZiKqaSURFV6Lg.jpg", + "length": "2h 40m" + }, + { + "title": "Shadows", + "director": "John Cassavetes", + "year": "1959", + "tags": "Drama", + "desc": "The relationship between Lelia, a light-skinned black woman, and Tony, a white man is put in jeopardy when Tony meets Lelia\u2019s darker-skinned jazz singer brother, Hugh, and discovers that her racial heritage is not what he thought it was.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zR1gHOGVruoROCdHS7Tc5TSZqED.jpg", + "length": "1h 27m" + }, + { + "title": "The World of Apu", + "director": "Satyajit Ray", + "year": "1959", + "tags": "Drama", + "desc": "Apu is a jobless ex-student dreaming vaguely of a future as a writer. An old college friend talks him into a visit up-country to a village wedding. Preserved by the Academy Film Archive in 1996.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6Tz1Q69o2n3Zwb0ZffzPL0nFt2T.jpg", + "length": "2h 45m" + }, + { + "title": "Breathless", + "director": "Jean-Luc Godard", + "year": "1960", + "tags": "Drama", + "desc": "A small-time thief steals a car and impulsively murders a motorcycle policeman. Wanted by the authorities, he attempts to persuade a girl to run away to Italy with him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9Wx0Wdn2EOqeCZU4SP6tlS3LOml.jpg", + "length": "2h 30m" + }, + { + "title": "Ben-Hur", + "director": "William Wyler", + "year": "1959", + "tags": "History", + "desc": "In 25 AD, Judah Ben-Hur, a Jew in ancient Judea, opposes the occupying Roman empire. Falsely accused by a Roman childhood friend-turned-overlord of trying to kill the Roman governor, he is put into slavery and his mother and sister are taken away as prisoners.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m4WQ1dBIrEIHZNCoAjdpxwSKWyH.jpg", + "length": "4h 32m" + }, + { + "title": "Pickpocket", + "director": "Robert Bresson", + "year": "1959", + "tags": "Crime", + "desc": "Michel takes up pickpocketing on a lark and is arrested soon after. His mother dies shortly after his release, and despite the objections of his only friend, Jacques, and his mother's neighbor Jeanne, Michel teams up with a couple of petty thieves in order to improve his craft. With a police inspector keeping an eye on him, Michel also tries to get a straight job, but the temptation to steal is hard to resist.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kxpvceDv9fhFc4OAs82fmdzu17Y.jpg", + "length": "1h 15m" + }, + { + "title": "Hiroshima Mon Amour", + "director": "Alain Resnais", + "year": "1959", + "tags": "Drama", + "desc": "The deep conversation between a Japanese architect and a French actress forms the basis of this celebrated French film, considered one of the vanguard productions of the French New Wave. Set in Hiroshima after the end of World War II, the couple -- lovers turned friends -- recount, over many hours, previous romances and life experiences. The two intertwine their stories about the past with pondering the devastation wrought by the atomic bomb dropped on the city.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/adLWFW0JC8f3wjhnfBnHlf85Poh.jpg", + "length": "2h 32m" + }, + { + "title": "Rio Bravo", + "director": "Howard Hawks", + "year": "1959", + "tags": "Western", + "desc": "The sheriff of a small town in southwest Texas must keep custody of a murderer whose brother, a powerful rancher, is trying to help him escape. After a friend is killed trying to muster support for him, he and his deputies must find a way to hold out against the rancher's hired guns until the marshal arrives. In the meantime, matters are complicated by the presence of a young gunslinger - and a mysterious beauty who just came in on the last stagecoach.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4gI4KKmoi0d3yfsF71YU3S0I5t8.jpg", + "length": "2h 21m" + }, + { + "title": "Le Trou", + "director": "Jacques Becker", + "year": "1960", + "tags": "Drama", + "desc": "Four prison inmates have been hatching a plan to literally dig out of jail when another prisoner, Claude Gaspard, is moved into their cell. They take a risk and share their plan with the newcomer. Over the course of three days, the prisoners and friends break through the concrete floor using a bed post and begin to make their way through the sewer system -- yet their escape is anything but assured.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8kxtOm7D992iAaOzUoWmNQwbXjs.jpg", + "length": "2h 12m" + }, + { + "title": "Floating Weeds", + "director": "Yasujir\u014d Ozu", + "year": "1959", + "tags": "Drama", + "desc": "When a theater troupe's master visits his old flame, he unintentionally sets off a chain of unexpected events with devastating consequences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nLepKtb48XSnPQNsuS4svbtNBY7.jpg", + "length": "2h 55m" + }, + { + "title": "Rocco and His Brothers", + "director": "Luchino Visconti", + "year": "1960", + "tags": "Drama", + "desc": "When a impoverished widow\u2019s family moves to the big city, two of her five sons become romantic rivals with deadly results.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pngL8AraChIDOiWnKF2o3S9kJzJ.jpg", + "length": "3h 58m" + }, + { + "title": "La Dolce Vita", + "director": "Federico Fellini", + "year": "1960", + "tags": "Comedy", + "desc": "Episodic journey of journalist Marcello who struggles to find his place in the world, torn between the allure of Rome's elite social scene and the stifling domesticity offered by his girlfriend, all the while searching for a way to become a serious writer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/11hMHhThUb53fHoDDyn5LUsw0Z.jpg", + "length": "3h 56m" + }, + { + "title": "Saturday Night and Sunday Morning", + "director": "Karel Reisz", + "year": "1960", + "tags": "Drama", + "desc": "A 22-year-old factory worker lets loose on the weekends: drinking, brawling, and dating two women, one of whom is older and married.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fHHKxB71EzVzny3ZakxZRGe5Evw.jpg", + "length": "2h 30m" + }, + { + "title": "Shoot the Piano Player", + "director": "Fran\u00e7ois Truffaut", + "year": "1960", + "tags": "Drama", + "desc": "Charlie is a former classical pianist who has changed his name and now plays jazz in a grimy Paris bar. When Charlie's brothers, Richard and Chico, surface and ask for Charlie's help while on the run from gangsters they have scammed, he aids their escape. Soon Charlie and Lena, a waitress at the same bar, face trouble when the gangsters arrive, looking for his brothers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9hFy8LJshKYvW5vzguEhvgphIHJ.jpg", + "length": "1h 25m" + }, + { + "title": "L'avventura", + "director": "Michelangelo Antonioni", + "year": "1960", + "tags": "Drama", + "desc": "Claudia and Anna join Anna's lover, Sandro, on a boat trip to a remote volcanic island. When Anna goes missing, a search is launched. In the meantime, Sandro and Claudia become involved in a romance despite Anna's disappearance, though the relationship suffers from guilt and tension.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/waQPqPYLouGJXDYGqXmpyLN4PLA.jpg", + "length": "2h 24m" + }, + { + "title": "The Young One", + "director": "Luis Bu\u00f1uel", + "year": "1960", + "tags": "Drama", + "desc": "A jazz musician seeks refuge from a lynch mob on a remote island, where he meets a hostile game warden and the young object of his attentions.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vgqmNCe9PKibdGpdWuhA6Ozuso.jpg", + "length": "2h 35m" + }, + { + "title": "The Cloud-Capped Star", + "director": "Ritwik Kumar Ghatak", + "year": "1960", + "tags": "Drama", + "desc": "A selfless young woman, the daughter of a middle-class refugee family from East Pakistan, sacrifices her own happiness for her unappreciative family.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uIlt1x2eBMzuQHwyU54CNPTSK6A.jpg", + "length": "2h 7m" + }, + { + "title": "The Housemaid", + "director": "Kim Ki-young", + "year": "1960", + "tags": "Crime", + "desc": "A piano composer's family moves into a new house; when his pregnant wife collapses from working to support the family, he hires a hot housemaid to help with housework.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xQUKUufYdLjPqTnWRHuUTHsN5On.jpg", + "length": "2h 48m" + }, + { + "title": "Psycho", + "director": "Alfred Hitchcock", + "year": "1960", + "tags": "Horror", + "desc": "When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yz4QVqPx3h1hD1DfqqQkCq3rmxW.jpg", + "length": "2h 49m" + }, + { + "title": "Black Sunday", + "director": "Mario Bava", + "year": "1960", + "tags": "Horror", + "desc": "A vengeful witch, Asa Vajda, and her fiendish servant, Igor Jauvitch, return from the grave and begin a bloody campaign to possess the body of the witch's beautiful look-alike descendant, Katia. Only a handsome doctor with the help of family members stand in her way.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/x41Zx8GeZhducquhOq9nE7z1GBG.jpg", + "length": "1h 26m" + }, + { + "title": "Peeping Tom", + "director": "Michael Powell", + "year": "1960", + "tags": "Drama", + "desc": "Loner Mark Lewis works at a film studio during the day and, at night, takes racy photographs of women. Also he's making a documentary on fear, which involves recording the reactions of victims as he murders them. He befriends Helen, the daughter of the family living in the apartment below his, and he tells her vaguely about the movie he is making.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u36rFrXW7XethWpiEWbRjzfgOc.jpg", + "length": "2h 41m" + }, + { + "title": "The Apartment", + "director": "Billy Wilder", + "year": "1960", + "tags": "Comedy", + "desc": "Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he's left with a major problem to solve.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hhSRt1KKfRT0yEhEtRW3qp31JFU.jpg", + "length": "2h 5m" + }, + { + "title": "Spartacus", + "director": "Stanley Kubrick", + "year": "1960", + "tags": "History", + "desc": "The rebellious Thracian Spartacus, born and raised a slave, is sold to Gladiator trainer Batiatus. After weeks of being trained to kill for the arena, Spartacus turns on his owners and leads the other slaves in rebellion. As the rebels move from town to town, their numbers swell as escaped slaves join their ranks. Under the leadership of Spartacus, they make their way to southern Italy, where they will cross the sea and return to their homes.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xLPpQlFWE12cbqNJQ5Vf4eJU8ij.jpg", + "length": "3h 17m" + }, + { + "title": "Splendor in the Grass", + "director": "Elia Kazan", + "year": "1961", + "tags": "Drama", + "desc": "A fragile Kansas girl's unrequited and forbidden love for a handsome young man from the town's most powerful family drives her to heartbreak and madness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n6Kw8Ui93SMhrk1MupCFwUg04vq.jpg", + "length": "2h 4m" + }, + { + "title": "Last Year at Marienbad", + "director": "Alain Resnais", + "year": "1961", + "tags": "Drama", + "desc": "In a strange and isolated chateau, a man becomes acquainted with a woman and insists that they have met before.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tizZ7JnXRFMvoNegu2CtM2ab9E7.jpg", + "length": "2h 35m" + }, + { + "title": "La Jet\u00e9e", + "director": "Chris Marker", + "year": "1962", + "tags": "Romance", + "desc": "A man is sent back and forth and in and out of time in an experiment that attempts to unravel the fate and the solution to the problems of a post-apocalyptic world during the aftermath of WW3. The experiment results in him getting caught up in a perpetual reminiscence of past events that are recreated on an airport\u2019s viewing pier.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sqbvjbJRzTduUj4lVm2FmPkqJkS.jpg", + "length": "0h 28m" + }, + { + "title": "One-Eyed Jacks", + "director": "Marlon Brando", + "year": "1961", + "tags": "Western", + "desc": "Running from the law after a bank robbery in Mexico, Dad Longworth finds an opportunity to take the stolen gold and leave his partner Rio to be captured. Years later, Rio escapes from the prison where he has been since, and hunts down Dad for revenge. Dad is now a respectable sheriff in California, and has been living in fear of Rio's return.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xal47bRKVIxErB7h2CScY3GBnoT.jpg", + "length": "2h 21m" + }, + { + "title": "Lola", + "director": "Jacques Demy", + "year": "1961", + "tags": "Drama", + "desc": "A bored young man meets with his former girlfriend, now a cabaret dancer and single mother, and soon finds himself falling back in love with her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uVLkdkTVV10fLrTPyOCBE6alwLD.jpg", + "length": "1h 29m" + }, + { + "title": "Breakfast at Tiffany's", + "director": "Blake Edwards", + "year": "1961", + "tags": "Comedy", + "desc": "Holly Golightly is an eccentric New York City playgirl determined to marry a Brazilian millionaire. But when young writer Paul Varjak moves into her apartment building, her past threatens to get in their way.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/79xm4gXw4l7A5D0XukUOJRocFYQ.jpg", + "length": "2h 55m" + }, + { + "title": "La Notte", + "director": "Michelangelo Antonioni", + "year": "1961", + "tags": "Drama", + "desc": "A day in the life of an unfaithful married couple and their steadily deteriorating relationship in Milan.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oMXUmRs774wKN4MpGLKtMSslgq5.jpg", + "length": "2h 2m" + }, + { + "title": "Viridiana", + "director": "Luis Bu\u00f1uel", + "year": "1961", + "tags": "Drama", + "desc": "Viridiana is preparing to start her life as a nun when she is sent, somewhat unwillingly, to visit her aging uncle, Don Jaime. He supports her; but the two have met only once. Jaime thinks Viridiana resembles his dead wife. Viridiana has secretly despised this man all her life and finds her worst fears proven when Jaime grows determined to seduce his pure niece. Viridiana becomes undone as her uncle upends the plans she had made to join the convent.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yFnUCrPY3ffjkqOkOupLro3sO7X.jpg", + "length": "2h 30m" + }, + { + "title": "The Ladies Man", + "director": "Jerry Lewis", + "year": "1961", + "tags": "Comedy", + "desc": "After his girl leaves him for someone else, Herbert gets really depressed and starts searching for a job. He finally finds one in a big house which is inhabited by many, many women. Can he live in the same home with all these females?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c15TotHYrXPZSzjZCBfbup3fz4V.jpg", + "length": "2h 35m" + }, + { + "title": "Through a Glass Darkly", + "director": "Ingmar Bergman", + "year": "1961", + "tags": "Drama", + "desc": "Karin hopes to recover from her recent stay at a mental hospital by spending the summer at her family's cottage on a tiny island. Her husband, Martin, cares for her but is frustrated by her physical withdrawal. Her younger brother, Minus, is confused by Karin's vulnerability and his own budding sexuality. Their father, David, cannot overcome his haughty remoteness. Beset by visions, Karin descends further into madness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rYD30Fm4vAcBqk1kTsxHw1s8P29.jpg", + "length": "2h 31m" + }, + { + "title": "Chronicle of a Summer", + "director": "Edgar Morin", + "year": "1961", + "tags": "Documentary", + "desc": "Paris, summer 1960. Anthropologist and filmmaker Jean Rouch and sociologist and film critic Edgar Morin wander through the crowded streets asking passersby how they cope with life's misfortunes.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cKsFs0FUJBy4b8ihPpaeyRl2SJs.jpg", + "length": "2h 31m" + }, + { + "title": "The Hustler", + "director": "Robert Rossen", + "year": "1961", + "tags": "Drama", + "desc": "Fast Eddie Felson is a small-time pool hustler with a lot of talent but a self-destructive attitude. His bravado causes him to challenge the legendary Minnesota Fats to a high-stakes match.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/snItsSViawjaadW9mlWUmGwR41R.jpg", + "length": "2h 14m" + }, + { + "title": "West Side Story", + "director": "Robert Wise", + "year": "1961", + "tags": "Crime", + "desc": "In the slums of the upper West Side of Manhattan, New York, a gang of Polish-American teenagers called the Jets compete with a rival gang of recently immigrated Puerto Ricans, the Sharks, to \"own\" the neighborhood streets. Tensions are high between the gangs but two romantics, one from each gang, fall in love leading to tragedy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nzCMu6D5q60i2bVrIQ0DxlRSgCZ.jpg", + "length": "3h 31m" + }, + { + "title": "An Autumn Afternoon", + "director": "Yasujir\u014d Ozu", + "year": "1962", + "tags": "Drama", + "desc": "Shuhei Hirayama is a widower with a 24-year-old daughter. Gradually, he comes to realize that she should not be obliged to look after him for the rest of his life, so he arranges a marriage for her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4RtWkqywkzxonlnGBwv4RpSw4Rb.jpg", + "length": "2h 54m" + }, + { + "title": "The Exiles", + "director": "Kent MacKenzie", + "year": "1961", + "tags": "Drama", + "desc": "The story of one night in the lives of a group of young Native American men and women who have left their reservations and are now living in the Bunker Hill district of Los Angeles.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uZ59s2b66UnLYtN74gUFHXQIx06.jpg", + "length": "1h 12m" + }, + { + "title": "Jules and Jim", + "director": "Fran\u00e7ois Truffaut", + "year": "1962", + "tags": "Drama", + "desc": "In the carefree days before World War I, introverted Austrian author Jules strikes up a friendship with the exuberant Frenchman Jim and both men fall for the impulsive and beautiful Catherine.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kuFjZlcZhQFDtIjuI3GQJjsQG03.jpg", + "length": "2h 46m" + }, + { + "title": "Mondo Cane", + "director": "Paolo Cavara", + "year": "1962", + "tags": "Documentary", + "desc": "A documentary consisting of a series of travelogue vignettes providing glimpses into cultural practices throughout the world intended to shock or surprise, including an insect banquet and a memorable look at a practicing South Pacific cargo cult.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8Xr9sOnmicZ9jE0NUCrXCzR55Ge.jpg", + "length": "2h 45m" + }, + { + "title": "Cl\u00e9o From 5 to 7", + "director": "Agn\u00e8s Varda", + "year": "1962", + "tags": "Drama", + "desc": "Agn\u00e8s Varda eloquently captures Paris in the sixties with this real-time portrait of a singer set adrift in the city as she awaits test results of a biopsy. A chronicle of the minutes of one woman\u2019s life, Cl\u00e9o from 5 to 7 is a spirited mix of vivid v\u00e9rit\u00e9 and melodrama, featuring a score by Michel Legrand and cameos by Jean-Luc Godard and Anna Karina.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oelBStY4xpguaplRv15P3Za7Xsr.jpg", + "length": "2h 30m" + }, + { + "title": "Prelude: Dog Star Man", + "director": "Stan Brakhage", + "year": "1962", + "tags": "Drama", + "desc": "A creation myth realized in light, patterns, images superimposed, rapid cutting, and silence. A black screen, then streaks of light, then an explosion of color and squiggles and happenstance. Next, images of small circles emerge then of the Sun. Images of our Earth appear, woods, a part of a body, a nude woman perhaps giving birth. Imagery evokes movement across time. Part of the Dog Star Man series of experimental films.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xNDLS7aFCJp3Ir0W2O86AGFwMSQ.jpg", + "length": "0h 25m" + }, + { + "title": "L'eclisse", + "director": "Michelangelo Antonioni", + "year": "1962", + "tags": "Drama", + "desc": "This romantic drama by Michelangelo Antonioni follows the love life of Vittoria, a beautiful literary translator living in Rome. After splitting from her writer boyfriend, Riccardo, Vittoria meets Piero, a lively stockbroker, on the hectic floor of the Roman stock exchange. Though Vittoria and Piero begin a relationship, it is not one without difficulties, and their commitment to one another is tested during an eclipse.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oXoe0Fp92Yw3mMJ9Vq0hPlaMELg.jpg", + "length": "2h 6m" + }, + { + "title": "Lawrence of Arabia", + "director": "David Lean", + "year": "1962", + "tags": "Adventure", + "desc": "The story of British officer T.E. Lawrence's mission to aid the Arab tribes in their revolt against the Ottoman Empire during the First World War. Lawrence becomes a flamboyant, messianic figure in the cause of Arab unity but his psychological instability threatens to undermine his achievements.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/AiAm0EtDvyGqNpVoieRw4u65vD1.jpg", + "length": "4h 48m" + }, + { + "title": "To Kill a Mockingbird", + "director": "Robert Mulligan", + "year": "1962", + "tags": "Drama", + "desc": "Scout Finch, 6, and her older brother Jem live in sleepy Maycomb, Alabama, spending much of their time with their friend Dill and spying on their reclusive and mysterious neighbor, Boo Radley. When Atticus, their widowed father and a respected lawyer, defends a black man named Tom Robinson against fabricated rape charges, the trial and tangent events expose the children to evils of racism and stereotyping.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oBiWjN1EXVcVGSbwPKQn6VNsJ94.jpg", + "length": "2h 9m" + }, + { + "title": "The Manchurian Candidate", + "director": "John Frankenheimer", + "year": "1962", + "tags": "Thriller", + "desc": "Near the end of the Korean War, a platoon of U.S. soldiers is captured by communists and brainwashed. Following the war, the platoon is returned home, and Sergeant Raymond Shaw is lauded as a hero by the rest of his platoon. However, the platoon commander, Captain Bennett Marco, finds himself plagued by strange nightmares and soon races to uncover a terrible plot.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2xQ856kd9hw6bB3OnusGyTvvkwB.jpg", + "length": "2h 6m" + }, + { + "title": "Lolita", + "director": "Stanley Kubrick", + "year": "1962", + "tags": "Drama", + "desc": "Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman's teenaged daughter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8Puqbeh0D95DpXFWep1rmH78btu.jpg", + "length": "3h 34m" + }, + { + "title": "The Given Word", + "director": "Anselmo Duarte", + "year": "1962", + "tags": "Drama", + "desc": "Z\u00e9 is a very poor man whose most prized possession is his donkey. When his donkey falls terminally ill, Z\u00e9 makes a promise to Saint B\u00e1rbara: If his donkey recovers, he will carry a cross - like Jesus - all the way from his city to Saint B\u00e1rbara's church, in the state capital. Upon the recovery of his donkey, Z\u00e9 leaves on his journey. He makes it to the church, but the priest refuses to accept the cross once he discovers the context of Z\u00e9's promise.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cN8Lk5bm4dQX8enBPP5LxQRdn9k.jpg", + "length": "2h 38m" + }, + { + "title": "The Man Who Shot Liberty Valance", + "director": "John Ford", + "year": "1962", + "tags": "Western", + "desc": "A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4C1R0LEivLjbv3swAzJfzh0tzXl.jpg", + "length": "2h 3m" + }, + { + "title": "What Ever Happened to Baby Jane?", + "director": "Robert Aldrich", + "year": "1962", + "tags": "Thriller", + "desc": "A former child star torments her paraplegic sister in their decaying Hollywood mansion.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/msGYzyWwtjAaA3DScdgmvJ5MReG.jpg", + "length": "2h 15m" + }, + { + "title": "Vivre Sa Vie", + "director": "Jean-Luc Godard", + "year": "1962", + "tags": "Drama", + "desc": "Twelve episodic tales in the life of a Parisian woman and her slow descent into prostitution.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/A0BjScjASfMFgyGI5sU0CwfKh3l.jpg", + "length": "1h 24m" + }, + { + "title": "No. 12: Heaven and Earth Magic", + "director": "Harry Smith", + "year": "1962", + "tags": "Animation", + "desc": "The first part depicts the heroine's toothache consequent to the loss of a very valuable watermelon, her dentistry and transportation to heaven. Next follows an elaborate exposition of the heavenly land, in terms of Israel and Montreal. The second part depicts the return to Earth from being eaten by Max M\u00fcller on the day Edward VII dedicated the Great Sewer of London.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iRmNclmohml4V4pSPhVcw2ki0y1.jpg", + "length": "1h 6m" + }, + { + "title": "The Exterminating Angel", + "director": "Luis Bu\u00f1uel", + "year": "1962", + "tags": "Comedy", + "desc": "After a lavish dinner party, the guests find themselves mysteriously unable to leave the room.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dqaeUgLOWFbpEkEKzwAZgAcZMMO.jpg", + "length": "2h 34m" + }, + { + "title": "The Birds", + "director": "Alfred Hitchcock", + "year": "1963", + "tags": "Horror", + "desc": "Thousands of birds flock into a seaside town and terrorize the residents in a series of deadly attacks.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eClg8QPg8mwB6INIC4pyR5pAbDr.jpg", + "length": "2h 0m" + }, + { + "title": "The Nutty Professor", + "director": "Tom Shadyac", + "year": "1963", + "tags": "Fantasy", + "desc": "Eddie Murphy stars as shy Dr. Sherman Klump, a kind, brilliant, 'calorifically challenged' genetic professor. When beautiful Carla Purty joins the university faculty, Sherman grows desperate to whittle his 400-pound frame down to size and win her heart. So, with one swig of his experimental fat-reducing serum, Sherman becomes 'Buddy Love', a fast-talking, pumped-up , plumped down Don Juan.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fMtb5aZoLRNbMnCkatFsTmPRfl5.jpg", + "length": "2h 35m" + }, + { + "title": "Blonde Cobra", + "director": "Ken Jacobs", + "year": "1963", + "tags": "#Movie", + "desc": "A man fondles objects, looks at himself in the mirror, poses in different clothes, smiles and makes faces at the camera while his voice on the soundtrack speaks of his despair, makes impressionistic statements and little songs, quotes Greta Garbo and Maria Montez, tells the story of a lonely little boy and tells the story of a woman named Madame Nescience who dreams of herself as the Mother Superior of a convent of sexual perversion.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dJh3umPoz6awku3qFcoZ7RViGCH.jpg", + "length": "1h 36m" + }, + { + "title": "The Cool World", + "director": "Shirley Clarke", + "year": "1963", + "tags": "Drama", + "desc": "A fifteen-year-old boy wants to buy a gun from an adult racketeer named Priest, in order to become president of the gang to which he belongs, and to return them to active \"bopping\" (gang fighting) which has declined in Harlem.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/w6kQstQo9mbX5tiufrEk1u8uq15.jpg", + "length": "2h 45m" + }, + { + "title": "8\u00bd", + "director": "Federico Fellini", + "year": "1963", + "tags": "Drama", + "desc": "Guido Anselmi, a film director, finds himself creatively barren at the peak of his career. Urged by his doctors to rest, Anselmi heads for a luxurious resort, but a sorry group gathers\u2014his producer, staff, actors, wife, mistress, and relatives\u2014each one begging him to get on with the show. In retreat from their dependency, he fantasizes about past women and dreams of his childhood.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tMWvzPsvpmlklcPVjVLpUWgZHua.jpg", + "length": "2h 19m" + }, + { + "title": "Passenger", + "director": "Isobel Knowles", + "year": "1963", + "tags": "Animation", + "desc": "Passenger tells the story of arriving in a new country to live. Sitting in the back of a taxi, you gradually piece together your story, abstracted and dreamlike, as you progress into the quiet shock of a new world. Your taxi driver, himself a migrant to Australia, navigates the new terrain with you, and acts as your guide while revealing small glimpses of his own story. This 360-degree, stop-motion VR film recreates and investigates the geographic and visual dislocation of arriving somewhere unfamiliar: the beginnings of finding a new home in a foreign land.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aILwx5CJz8OTOKGyy8FgajyyZY8.jpg", + "length": "0h 10m" + }, + { + "title": "Contempt", + "director": "Jean-Luc Godard", + "year": "1963", + "tags": "Drama", + "desc": "A philistine in the art film business, Jeremy Prokosch is a producer unhappy with the work of his director. Prokosch has hired Fritz Lang to direct an adaptation of \"The Odyssey,\" but when it seems that the legendary filmmaker is making a picture destined to bomb at the box office, he brings in a screenwriter to energize the script. The professional intersects with the personal when a rift develops between the writer and his wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kNElbRcp4Qz6wmJ9kH5vdY004Hq.jpg", + "length": "2h 43m" + }, + { + "title": "Hud", + "director": "Martin Ritt", + "year": "1963", + "tags": "Drama", + "desc": "Hud Bannon is a ruthless young man who tarnishes everything and everyone he touches. Hud represents the perfect embodiment of alienated youth, out for kicks with no regard for the consequences. There is bitter conflict between the callous Hud and his stern and highly principled father, Homer. Hud's nephew Lon admires Hud's cheating ways, though he soon becomes too aware of Hud's reckless amorality to bear him anymore. In the world of the takers and the taken, Hud is a winner. He's a cheat, but, he explains, \"I always say the law was meant to be interpreted in a lenient manner.\"", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/A168bF52vmAIGkC2Qafj7M2EmaE.jpg", + "length": "2h 52m" + }, + { + "title": "Winter Light", + "director": "Ingmar Bergman", + "year": "1963", + "tags": "Drama", + "desc": "A Swedish pastor fails a loving woman, a suicidal fisherman and God.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wDxrEssdjFWYwIZLbr06RQNcg1q.jpg", + "length": "1h 20m" + }, + { + "title": "Flaming Creatures", + "director": "Jack Smith", + "year": "1963", + "tags": "Comedy", + "desc": "Filmmaker and artist Jack Smith described his own film as a \u201ccomedy set in a haunted movie studio.\u201d Flaming Creatures begins humorously enough with several men and women, mostly of indeterminate gender, vamping it up in front of the camera and participating in a mock advertisement for an indelible, heart-shaped brand of lipstick. However, things take a dark, nightmarish turn when a transvestite chases, catches and begins molesting a woman. Soon, all of the titular \u201ccreatures\u201d participate in a (mostly clothed) orgy that causes a massive earthquake. After the creatures are killed in the resulting chaos, a vampire dressed like an old Hollywood starlet rises from her coffin to resurrect the dead. All ends happily enough when the now undead creatures dance with each other, even though another orgy and earthquake loom over the end title card.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/agXfZnar50z6v1DrGdzjgssuth7.jpg", + "length": "1h 42m" + }, + { + "title": "The Great Escape", + "director": "John Sturges", + "year": "1963", + "tags": "Adventure", + "desc": "The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocate them to a high-security 'escape-proof' camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gBH4H8UMFxl139HaLz6lRuvsel8.jpg", + "length": "3h 53m" + }, + { + "title": "Shock Corridor", + "director": "Samuel Fuller", + "year": "1963", + "tags": "Drama", + "desc": "With the help of his girlfriend Cathy and Dr. Fong, a psychiatrist, ambitious journalist Johnny Barrett poses as a madman in order to be admitted to a mental institution where a bloody murder has been committed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7jFI7GdduTss2SdgApcsiWtU5gA.jpg", + "length": "2h 42m" + }, + { + "title": "The Leopard", + "director": "Luchino Visconti", + "year": "1963", + "tags": "Drama", + "desc": "As Garibaldi's troops begin the unification of Italy in the 1860s, an aristocratic Sicilian family grudgingly adapts to the sweeping social changes undermining their way of life. Proud but pragmatic Prince Don Fabrizio Salina allows his war hero nephew, Tancredi, to marry Angelica, the beautiful daughter of gauche, bourgeois Don Calogero, in order to maintain the family's accustomed level of comfort and political clout.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/riSUxwoK3xjkOgy6YJSvPhi7cO6.jpg", + "length": "3h 6m" + }, + { + "title": "Barren Lives", + "director": "Nelson Pereira dos Santos", + "year": "1963", + "tags": "Drama", + "desc": "In vivid images, the documentary-like story of a drover and his family in the northern badlands of Brazil during the drought. A family in the search of new hope and destiny.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bBb4GiCZul2W6hhV8sbbnBnlhuE.jpg", + "length": "2h 40m" + }, + { + "title": "The House Is Black", + "director": "Forugh Farrokhzad", + "year": "1963", + "tags": "Documentary", + "desc": "Set in a leper colony in the north of Iran, The House is Black juxtaposes \"ugliness,\" of which there is much in the world as stated in the opening scenes, with religion and gratitude.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eFIpxjYOMLoN5BBjy4McT7rBKmr.jpg", + "length": "0h 21m" + }, + { + "title": "The Haunting", + "director": "Robert Wise", + "year": "1963", + "tags": "Horror", + "desc": "Dr. Markway, doing research to prove the existence of ghosts, investigates Hill House, a large, eerie mansion with a lurid history of violent death and insanity.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fmpTnUKTcrpuxLSY23gQMUf9qu7.jpg", + "length": "2h 52m" + }, + { + "title": "An Actor's Revenge", + "director": "Kon Ichikawa", + "year": "1963", + "tags": "Drama", + "desc": "In Edo Japan, a kabuki actor seeks revenge against the three men who drove his parents to their deaths years ago.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cNjcjBVbXoUQGsJqCkOJvog88kD.jpg", + "length": "2h 54m" + }, + { + "title": "The Servant", + "director": "Joseph Losey", + "year": "1963", + "tags": "Drama", + "desc": "Hugo Barrett is a servant in the Chelsea home of indolent aristocrat Tony. All seems to go well until the playboy\u2019s girlfriend Susan takes a dislike to the efficient employee. Then Barrett persuades Tony to hire his sister Vera as a live-in maid, and matters take another turn for the worse\u2026", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pRa4og93BeOoMCt6oWuPCwu5Coo.jpg", + "length": "2h 56m" + }, + { + "title": "Goldfinger", + "director": "Guy Hamilton", + "year": "1964", + "tags": "Adventure", + "desc": "Special agent 007 comes face to face with one of the most notorious villains of all time, and now he must outwit and outgun the powerful tycoon to prevent him from cashing in on a devious scheme to raid Fort Knox -- and obliterate the world's economy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hsHVGBINg9bactVjE91wFBgd51J.jpg", + "length": "2h 50m" + }, + { + "title": "Scorpio Rising", + "director": "Kenneth Anger", + "year": "1964", + "tags": "Music", + "desc": "A gang of Nazi bikers prepares for a race as sexual, sadistic, and occult images are cut together.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fs9QDvOzOpZCaa2rv1U57jAFfYU.jpg", + "length": "0h 28m" + }, + { + "title": "The Umbrellas of Cherbourg", + "director": "Jacques Demy", + "year": "1964", + "tags": "Drama", + "desc": "This simple romantic tragedy begins in 1957. Guy Foucher, a 20-year-old French auto mechanic, has fallen in love with 17-year-old Genevi\u00e8ve Emery, an employee in her widowed mother's chic but financially embattled umbrella shop. On the evening before Guy is to leave for a two-year tour of combat in Algeria, he and Genevi\u00e8ve make love. She becomes pregnant and must choose between waiting for Guy's return or accepting an offer of marriage from a wealthy diamond merchant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7XHxvEo1C1GzbTkZuH8aAU8wOeV.jpg", + "length": "2h 33m" + }, + { + "title": "Marnie", + "director": "Alfred Hitchcock", + "year": "1964", + "tags": "Thriller", + "desc": "Marnie is a thief, a liar, and a cheat. When her new boss, Mark Rutland, catches on to her routine kleptomania, she finds herself being blackmailed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nRRy4VO2A3Py7wiZBPz11PAlogp.jpg", + "length": "2h 10m" + }, + { + "title": "My Fair Lady", + "director": "George Cukor", + "year": "1964", + "tags": "Music", + "desc": "A snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bTXVc29lGSNclf94VIZ49W4gGKl.jpg", + "length": "3h 50m" + }, + { + "title": "Woman in the Dunes", + "director": "Hiroshi Teshigahara", + "year": "1964", + "tags": "Drama", + "desc": "A vacationing entomologist suffers extreme physical and psychological trauma after being taken captive by the residents of a poor seaside village and made to live with a woman whose life task is shoveling sand for them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/f0JpsMQ9oEjKBD66Ky3qK3z7LGT.jpg", + "length": "2h 27m" + }, + { + "title": "Dr. Strangelove Or: How I Learned to Stop Worrying and Love the Bomb", + "director": "Stanley Kubrick", + "year": "1964", + "tags": "Comedy", + "desc": "After the insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union, a war room full of politicians, generals and a Russian diplomat all frantically try to stop the nuclear strike.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7SixLzxcqezkZEYU8pcHZgbkmjp.jpg", + "length": "2h 35m" + }, + { + "title": "A Hard Day's Night", + "director": "Richard Lester", + "year": "1964", + "tags": "Comedy", + "desc": "Capturing John Lennon, Paul McCartney, George Harrison and Ringo Starr in their electrifying element, 'A Hard Day's Night' is a wildly irreverent journey through this pastiche of a day in the life of The Beatles during 1964. The band have to use all their guile and wit to avoid the pursuing fans and press to reach their scheduled television performance, in spite of Paul's troublemaking grandfather and Ringo's arrest.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6Ulsccp2VkaVU5qbya3bxm9JG4x.jpg", + "length": "1h 28m" + }, + { + "title": "Red Desert", + "director": "Michelangelo Antonioni", + "year": "1964", + "tags": "Drama", + "desc": "In an industrializing Italian town, a married woman, rendered mentally unstable after a traffic accident, drifts into an affair with a friend of her husband.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rGcTVdyhaGzMxPPRVApXre6F7SD.jpg", + "length": "2h 57m" + }, + { + "title": "Shadows of Forgotten Ancestors", + "director": "Sergei Parajanov", + "year": "1965", + "tags": "Drama", + "desc": "In a Carpathian village, Ivan falls in love with Marichka, the daughter of his father's killer. When tragedy befalls her, his grief lasts months; finally he rejoins the colorful life around him, marrying Palagna. She wants children but his mind stays on his lost love. To recapture his attention, Palagna tries sorcery, and in the process comes under the spell of the sorcerer, publicly humiliating Ivan, who then fights the sorcerer. The lively rhythms of village life, the work and the holidays, the pageant and revelry of weddings and funerals, the change of seasons, and nature's beauty give proportion to Ivan's tragedy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9oSZTeejmx80tIBVSqYzJpFhjkI.jpg", + "length": "2h 31m" + }, + { + "title": "The Masque of the Red Death", + "director": "Roger Corman", + "year": "1964", + "tags": "Drama", + "desc": "A European prince terrorizes the local peasantry while using his castle as a refuge against the \"Red Death\" plague that stalks the land.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6V3dCpKJhTf2jBdE5MXrHRmNdZJ.jpg", + "length": "2h 30m" + }, + { + "title": "Before the Revolution", + "director": "Bernardo Bertolucci", + "year": "1964", + "tags": "Romance", + "desc": "The study of a youth on the edge of adulthood and his aunt, ten years older. Fabrizio is passionate, idealistic, influenced by Cesare, a teacher and Marxist, engaged to the lovely but bourgeois Clelia, and stung by the drowning of his mercurial friend Agostino, a possible suicide. Gina is herself a bundle of nervous energy, alternately sweet, seductive, poetic, distracted, and unhinged. They begin a love affair after Agostino's funeral, then Gina confuses Fabrizio by sleeping with a stranger. Their visits to Cesare and then to Puck, one of Gina's older friends, a landowner losing his land, dramatize contrasting images of Italy's future. Their own futures are bleak.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eonuTTUGbxVurkBgC1KLJ00QIvR.jpg", + "length": "2h 47m" + }, + { + "title": "Gertrud", + "director": "Carl Theodor Dreyer", + "year": "1964", + "tags": "Drama", + "desc": "Hopeless romantic Gertrud inhabits a turn-of-the-century milieu of artists and musicians, where she pursues an idealized notion of love that will always elude her. She abandons her distinguished husband and embraces an affair with a young concert pianist, who falls short of her desire for lasting affection. When an old lover returns to her life, fresh disappointments follow, and Gertrud must try to come to terms with reality.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bF8Z8Cntr7GRDI5qYGsaOwy7c8Q.jpg", + "length": "2h 59m" + }, + { + "title": "The Gospel According to Matthew", + "director": "Pier Paolo Pasolini", + "year": "1964", + "tags": "Drama", + "desc": "This biblical drama from the Catholic Marxist director focuses on the teachings of Jesus, including the parables that reflect their revolutionary nature. As Jesus travels along the coast of the Sea of Galilee, he gradually gathers more followers, leading him into direct conflict with the authorities.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oifi2CQkKbb6Y2x6J5K6CjaKab9.jpg", + "length": "2h 17m" + }, + { + "title": "Black God, White Devil", + "director": "Glauber Rocha", + "year": "1964", + "tags": "Adventure", + "desc": "Wanted for killing his boss, Manuel flees with his wife Rosa to the sert\u00e3o, the barren landscape of Northern Brazil. Thrust into a primordial violent region, Manuel and Rosa come under the influence and control of a series of frightening figures.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/itnCM79n9BrGL5lsBY1B5EPIqlW.jpg", + "length": "2h 0m" + }, + { + "title": "Onibaba", + "director": "Kaneto Shind\u014d", + "year": "1964", + "tags": "Horror", + "desc": "While her son, Kichi, is away at war, a woman and her daughter-in-law survive by killing samurai who stray into their swamp, then selling whatever valuables they find. Both are devastated when they learn that Kichi has died, but his wife soon begins an affair with a neighbor who survived the war, Hachi. The mother disapproves and, when she can't steal Hachi for herself, tries to scare her daughter-in-law with a mysterious mask from a dead samurai.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xyPLG53OodhJtvfQEfcmC43l16O.jpg", + "length": "2h 45m" + }, + { + "title": "Mary Poppins", + "director": "Robert Stevenson", + "year": "1964", + "tags": "Comedy", + "desc": "Mr Banks is looking for a nanny for his two mischievous children and comes across Mary Poppins, an angelic nanny. She not only brings a change in their lives but also spreads happiness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ei8hhYCMfURfPOXKBnyl61be2iV.jpg", + "length": "2h 19m" + }, + { + "title": "Vinyl", + "director": "Andy Warhol", + "year": "1965", + "tags": "Science Fiction", + "desc": "Andy Warhol\u2019s screen adaptation of Burgess's \"A Clockwork Orange\u201d.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jQX5B6OJkN9GV3QmYL7QrC5VF0n.jpg", + "length": "1h 10m" + }, + { + "title": "The Shop on Main Street", + "director": "Elmar Klos", + "year": "1965", + "tags": "Drama", + "desc": "In a small town in Nazi-occupied Slovakia during World War II, decent but timid carpenter Tono is named \"Aryan comptroller\" of a button store owned by an old Jewish widow, Rozalie. Since the post comes with a salary and standing in the town's corrupt hierarchy, Tono wrestles with greed and guilt as he and Rozalie gradually befriend each other. When the authorities order all Jews in town to be rounded up, Tono faces a moral dilemma unlike any he's known before.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/Y1wX45uShUJVPJzlOyFFfEFVRH.jpg", + "length": "2h 8m" + }, + { + "title": "Doctor Zhivago", + "director": "David Lean", + "year": "1965", + "tags": "Drama", + "desc": "The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during World War I and then the October Revolution.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r0Iv2BiCFYDnzc6uU1q3AJ56igT.jpg", + "length": "3h 20m" + }, + { + "title": "The War Game", + "director": "Peter Watkins", + "year": "1965", + "tags": "War", + "desc": "A docudrama depicting a hypothetical nuclear attack on Britain. After backing the film's development, the BBC refused to air it, publicly stating \"the effect of the film has been judged by the BBC to be too horrifying for the medium of broadcasting.\" It debuted in theaters in 1966 and went on to great acclaim, but remained unseen on British television until 1985.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/puJGNnrAPOv3BUMI9mKlCJp3UrQ.jpg", + "length": "1h 48m" + }, + { + "title": "Tokyo Olympiad", + "director": "Kon Ichikawa", + "year": "1965", + "tags": "Documentary", + "desc": "This impressionistic portrait of the 1964 Tokyo Summer Olympics pays as much attention to the crowds and workers as it does to the actual competitive events. Highlights include an epic pole-vaulting match between West Germany and America, and the final marathon race through Tokyo's streets. Two athletes are highlighted: Ethiopian marathon runner Abebe Bikila, who receives his second gold medal, and runner Ahamed Isa from Chad, representing a country younger than he is.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bjN7zlN5vq6bgvetojjM82qWwLE.jpg", + "length": "3h 50m" + }, + { + "title": "The Battle of Algiers", + "director": "Gillo Pontecorvo", + "year": "1966", + "tags": "Drama", + "desc": "Tracing the struggle of the Algerian Front de Liberation Nationale to gain freedom from French colonial rule as seen through the eyes of Ali from his start as a petty thief to his rise to prominence in the organisation and capture by the French in 1957. The film traces the rebels' struggle and the increasingly extreme measures taken by the French government to quell the revolt.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/Df9SP4FgPMrIQBw5WOGtSi3fnT.jpg", + "length": "2h 1m" + }, + { + "title": "The Sound of Music", + "director": "Robert Wise", + "year": "1965", + "tags": "Drama", + "desc": "In the years before the Second World War, a tomboyish postulant at an Austrian abbey is hired as a governess in the home of a widowed naval captain with seven children, and brings a new love of life and music into the home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c6CrUZypAsBCaRWX0M3RVRDbhNS.jpg", + "length": "3h 54m" + }, + { + "title": "The Saragossa Manuscript", + "director": "Wojciech Jerzy Has", + "year": "1965", + "tags": "Drama", + "desc": "During the Napoleonic wars, a Spanish officer and an opposing officer find a book written by the former's grandfather.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3P8g5U4gbifjM2lnqSpZogh7FrD.jpg", + "length": "3h 3m" + }, + { + "title": "Alphaville", + "director": "Jean-Luc Godard", + "year": "1965", + "tags": "Drama", + "desc": "An American private-eye arrives in Alphaville, a futuristic city on another planet which is ruled by an evil scientist named Von Braun, who has outlawed love and self-expression.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fFJP3D5fJDFxN7ChqSye1DZ0fTL.jpg", + "length": "2h 39m" + }, + { + "title": "Chimes at Midnight", + "director": "Orson Welles", + "year": "1965", + "tags": "Comedy", + "desc": "Henry IV usurps the English throne, sets in motion the factious War of the Roses and now faces a rebellion led by Northumberland scion Hotspur. Henry's heir, Prince Hal, is a ne'er-do-well carouser who drinks and causes mischief with his low-class friends, especially his rotund father figure, John Falstaff. To redeem his title, Hal may have to choose between allegiance to his real father and loyalty to his friend.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5Fjxyz3u2Zdco4WeuC3wQ6O5tYQ.jpg", + "length": "2h 55m" + }, + { + "title": "Repulsion", + "director": "Roman Polanski", + "year": "1965", + "tags": "Drama", + "desc": "Beautiful young manicurist Carole suffers from androphobia (the pathological fear of interaction with men). When her sister and roommate, Helen, leaves their London flat to go on an Italian holiday with her married boyfriend, Carole withdraws into her apartment. She begins to experience frightful hallucinations, her fear gradually mutating into madness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dtyCKEPLqv9wxyVazL4b843vtUb.jpg", + "length": "2h 45m" + }, + { + "title": "Juliet of the Spirits", + "director": "Federico Fellini", + "year": "1965", + "tags": "Comedy", + "desc": "Middle-aged Giulietta grows suspicious of her husband, Giorgio, when his behavior grows increasingly questionable. One night when Giorgio initiates a seance amongst his friends, Giulietta gets in touch with spirits and learns more about herself and her painful past. Slightly skeptical, but intrigued, she visits a mystic who gives her more information -- and nudges her toward the realization that her husband is indeed a philanderer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/p27vgTv3KD1S5tZT7iHm9DzFB8I.jpg", + "length": "2h 28m" + }, + { + "title": "Pierrot Le Fou", + "director": "Jean-Luc Godard", + "year": "1965", + "tags": "Drama", + "desc": "Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/i124H6iQB4CawrgFW9aZaZs7OBO.jpg", + "length": "2h 50m" + }, + { + "title": "Faster, Pussycat! Kill! Kill!", + "director": "Russ Meyer", + "year": "1965", + "tags": "Crime", + "desc": "Three strippers seeking thrills encounter a young couple in the desert. After dispatching the boyfriend, they take the girl hostage and begin scheming on a crippled old man living with his two sons in the desert, reputedly hiding a tidy sum of cash. They become house guests of the old man and try and seduce the sons in an attempt to locate the money, not realizing that the old man has a few sinister intentions of his own.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4mld2L1vWqgqFQmKa7KU4HzLKPi.jpg", + "length": "1h 24m" + }, + { + "title": "Subarnarekha", + "director": "Ritwik Kumar Ghatak", + "year": "1965", + "tags": "Drama", + "desc": "After an old college friend offers him a job at an iron foundry, the upright and honest Ishwar leaves a shanty town on the outskirts of Calcutta where he lives with a group of refugees from East Bengal. With plans to forge a solid living for himself, sister Sita and Abhiram, an orphaned boy he offers a home to, Ishwar is accused of selling out and deserting his people.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3le6UjPH0E8ZNgdBwPysDSag5jE.jpg", + "length": "2h 3m" + }, + { + "title": "The Man Who Had His Hair Cut Short", + "director": "Andr\u00e9 Delvaux", + "year": "1966", + "tags": "Drama", + "desc": "Govert Miereveld is a lawyer from a small Flemish town who also teaches in a school for girls. He harbors a secret love for one of his young students, Fran, whom he loses touch with after her graduation. Some time later, Miereveld has to attend an autopsy, and the shock of the experience deeply affects his mental balance. He finds out - or he believes so - that Fran has become a popular singer. He arranges to meet her to finally reveal his feelings. An ambiguous but perhaps tragic denouement follows which might be a figment of the protagonist's disturbed mind.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4qMYOTz9aKfC0EQgSMKN963MSf2.jpg", + "length": "2h 35m" + }, + { + "title": "Hold Me While I'm Naked", + "director": "George Kuchar", + "year": "1966", + "tags": "Comedy", + "desc": "Presented as loosely autobiographical, Hold Me While I\u2019m Naked centres on the tribulations of an independent filmmaker, frustrated at every turn as he tries to make a film that pretends to artistic merit.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/80DDYIRdPKNrmsTPAyJrzeGsGkP.jpg", + "length": "0h 17m" + }, + { + "title": "Blow-Up", + "director": "Michelangelo Antonioni", + "year": "1966", + "tags": "Drama", + "desc": "A successful mod photographer in London whose world is bounded by fashion, pop music, marijuana, and easy sex, feels his life is boring and despairing. But in the course of a single day he unknowingly captures a death on film.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iVtUdWsT6Ed2DK762zZxjaQAdHy.jpg", + "length": "2h 51m" + }, + { + "title": "The Good, the Bad and the Ugly", + "director": "Sergio Leone", + "year": "1966", + "tags": "Western", + "desc": "While the Civil War rages on between the Union and the Confederacy, three men \u2013 a quiet loner, a ruthless hitman, and a Mexican bandit \u2013 comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bX2xnavhMYjWDoZp1VM6VnU1xwe.jpg", + "length": "3h 41m" + }, + { + "title": "Daisies", + "director": "V\u011bra Chytilov\u00e1", + "year": "1966", + "tags": "Comedy", + "desc": "Two teenage girls embark on a series of destructive pranks in which they consume and destroy the world around them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8sxMhdn3i1Pn8OlGCBBjr9rjP1y.jpg", + "length": "1h 16m" + }, + { + "title": "Come Drink With Me", + "director": "King Hu", + "year": "1966", + "tags": "Action", + "desc": "Golden Swallow is a fighter-for-hire who has been contracted by the local government to retrieve the governor's kidnapped son. Holding him is a group of rebels who are demanding that their leader be released from prison in return for the captured son. After a brief encounter with the gang at a local restaurant, Golden Swallow is joined by an inebriated wanderer Drunken Cat who aids her in her mission.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/MEXsJvDs9WuA6C7JaXmfxt2Xfn.jpg", + "length": "2h 31m" + }, + { + "title": "Seconds", + "director": "John Frankenheimer", + "year": "1966", + "tags": "Thriller", + "desc": "An unhappy middle-aged banker agrees to a procedure that will fake his death and give him a completely new look and identity \u2013 one that comes with its own price.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5G3q3OvulFTnFdiouaZdD8wjtIc.jpg", + "length": "2h 47m" + }, + { + "title": "Who's Afraid of Virginia Woolf?", + "director": "Mike Nichols", + "year": "1966", + "tags": "Drama", + "desc": "A history professor and his wife entertain a young couple who are new to the university's faculty. As the drinks flow, secrets come to light, and the middle-aged couple unload onto their guests the full force of the bitterness, dysfunction, and animosity that defines their marriage.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wF7ihB5V5gSm6zxjv3ZhHOpgREI.jpg", + "length": "2h 11m" + }, + { + "title": "Persona", + "director": "Ingmar Bergman", + "year": "1966", + "tags": "Drama", + "desc": "A young nurse, Alma, is put in charge of Elisabeth Vogler: an actress who is seemingly healthy in all respects, but will not talk. As they spend time together, Alma speaks to Elisabeth constantly, never receiving any answer. The time they spend together only strengthens the crushing realization that one does not exist.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cl0HEZT8UfzLqaMrYTvGNHOfPYj.jpg", + "length": "1h 23m" + }, + { + "title": "Au Hasard Balthazar", + "director": "Robert Bresson", + "year": "1966", + "tags": "Drama", + "desc": "The story of a donkey Balthazar as he is passed from owner to owner, some kind and some cruel but all with motivations beyond his understanding. Balthazar, whose life parallels that of his first keeper, Marie, is truly a beast of burden, suffering the sins of humankind. But despite his powerlessness, he accepts his fate nobly.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jcFxAppupS7KMjzLZZgKYLFnjpp.jpg", + "length": "2h 36m" + }, + { + "title": "Closely Watched Trains", + "director": "Ji\u0159\u00ed Menzel", + "year": "1966", + "tags": "Comedy", + "desc": "At a village railway station in occupied Czechoslovakia, a bumbling dispatcher\u2019s apprentice longs to liberate himself from his virginity. Oblivious to the war and the resistance that surrounds him, this young man embarks on a journey of sexual awakening and self-discovery, encountering a universe of frustration, eroticism, and adventure within his sleepy backwater depot.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1FMBXil0P8Xyl1KRWbXbUGn6JCC.jpg", + "length": "2h 33m" + }, + { + "title": "In the Heat of the Night", + "director": "Norman Jewison", + "year": "1967", + "tags": "Crime", + "desc": "African-American Philadelphia police detective Virgil Tibbs is arrested on suspicion of murder by Bill Gillespie, the racist police chief of tiny Sparta, Mississippi. After Tibbs proves not only his own innocence but that of another man, he joins forces with Gillespie to track down the real killer. Their investigation takes them through every social level of the town, with Tibbs making enemies as well as unlikely friends as he hunts for the truth.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fvqHTabYej3LwzKRRZCm6jV3g0O.jpg", + "length": "2h 49m" + }, + { + "title": "Masculin F\u00e9minin", + "director": "Jean-Luc Godard", + "year": "1966", + "tags": "Drama", + "desc": "Paul, a young idealist trying to figure out what he wants to do with his life, takes a job interviewing people for a marketing research firm. He moves in with aspiring pop singer Madeleine. Paul, however, is disillusioned by the growing commercialism in society, while Madeleine just wants to be successful. The story is told in a series of 15 unrelated vignettes.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qsWypOI6Y08WfDpGriKLBdxMviR.jpg", + "length": "2h 45m" + }, + { + "title": "2 or 3 Things I Know About Her", + "director": "Jean-Luc Godard", + "year": "1967", + "tags": "Comedy", + "desc": "As the city of Paris and the French people grow in consumer culture, a housewife living in a high-rise apartment with her husband and two children takes to prostitution to help pay the bills.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/w1LO1SIrpA4GCjK3ysANr7F3eAN.jpg", + "length": "1h 27m" + }, + { + "title": "The Graduate", + "director": "Mike Nichols", + "year": "1967", + "tags": "Drama", + "desc": "Benjamin, a recent college graduate very worried about his future, finds himself in a love triangle with an older woman and her daughter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qtVvdSsm2hvau6ItLe4gWdFKe2M.jpg", + "length": "2h 46m" + }, + { + "title": "Playtime", + "director": "Jacques Tati", + "year": "1967", + "tags": "Comedy", + "desc": "Clumsy Monsieur Hulot finds himself perplexed by the intimidating complexity of a gadget-filled Paris. He attempts to meet with a business contact but soon becomes lost. His roundabout journey parallels that of an American tourist, and as they weave through the inventive urban environment, they intermittently meet, developing an interest in one another. They eventually get together at a chaotic restaurant, along with several other quirky characters.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kQOrS0DLUXYsqPMedM2G6NJcJBq.jpg", + "length": "2h 55m" + }, + { + "title": "Report", + "director": "Bruce Conner", + "year": "1967", + "tags": "Documentary", + "desc": "Bruce Conner\u2019s most celebrated film for a reason: it takes historical moments that were replayed over and over on television\u2014chilling repetition of Kennedy assassination coverage\u2014and repurposes them into a meditation on how the media tries to exert authority and apply a sense of order to the anarchic. And though it may sound perverse to say so, the film is also\u2014not incidentally\u2014a thrill to watch. -- The A.V. Club", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qma9BkU6i8HTSOvT5Ot7RzFax8y.jpg", + "length": "0h 13m" + }, + { + "title": "Hombre", + "director": "Martin Ritt", + "year": "1967", + "tags": "Western", + "desc": "John Russell, disdained by his \"respectable\" fellow stagecoach passengers because he was raised by Indians, becomes their only hope for survival when they are set upon by outlaws.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/puqgDLxdIZSnodDJ6Q0KxofOebo.jpg", + "length": "2h 51m" + }, + { + "title": "Belle De Jour", + "director": "Luis Bu\u00f1uel", + "year": "1967", + "tags": "Drama", + "desc": "Beautiful young housewife S\u00e9verine Serizy cannot reconcile her masochistic fantasies with her everyday life alongside dutiful husband Pierre. When her lovestruck friend Henri mentions a secretive high-class brothel run by Madame Anais, S\u00e9verine begins to work there during the day under the name Belle de Jour. But when one of her clients grows possessive, she must try to go back to her normal life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/enq7agj0TPCVpSLCGWehrYHB5tB.jpg", + "length": "2h 41m" + }, + { + "title": "The Young Girls of Rochefort", + "director": "Jacques Demy", + "year": "1967", + "tags": "Romance", + "desc": "Delphine and Solange are two sisters living in Rochefort. Delphine is a dancing teacher and Solange composes and teaches the piano. Maxence is a poetand a painter. He is doing his military service. Simon owns a music shop, he left Paris one month ago to come back where he fell in love 10 years ago. They are looking for love, looking for each other, without being aware that their ideal partner is very close...", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jtxhyGaYhurH6KsjvP1jV3dDypz.jpg", + "length": "2h 6m" + }, + { + "title": "Weekend", + "director": "David McNeill", + "year": "1967", + "tags": "#Movie", + "desc": "Romp through a world full of Rube Goldberg devices, then to a jungle trek, then to paradise...", + "img": "600x900.svg", + "length": "0h 19m" + }, + { + "title": "Le Samourai", + "director": "Jean-Pierre Melville", + "year": "1967", + "tags": "Crime", + "desc": "After carrying out a flawlessly planned hit, Jef Costello, a contract killer with samurai instincts, finds himself caught between a persistent police investigator and a ruthless employer, and not even his armor of fedora and trench coat can protect him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5Fa6o5nfUPEatQ9b3OwEvdEdR7T.jpg", + "length": "2h 45m" + }, + { + "title": "Cool Hand Luke", + "director": "Stuart Rosenberg", + "year": "1967", + "tags": "Action", + "desc": "When petty criminal Luke Jackson is sentenced to two years in a Florida prison farm, he doesn't play by the rules of either the sadistic warden or the yard's resident heavy, Dragline, who ends up admiring the new guy's unbreakable will. Luke's bravado, even in the face of repeated stints in the prison's dreaded solitary confinement cell, \"the box,\" make him a rebel hero to his fellow convicts and a thorn in the side of the prison officers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4ykzTiHKLamh3eZJ8orVICtU2Jp.jpg", + "length": "2h 7m" + }, + { + "title": "Point Blank", + "director": "John Boorman", + "year": "1967", + "tags": "Crime", + "desc": "After being double-crossed and left for dead, a mysterious man named Walker single-mindedly tries to retrieve the rather inconsequential sum of money that was stolen from him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5wzZipiC0THdgPpViVV5OqDj3Xr.jpg", + "length": "2h 32m" + }, + { + "title": "Wavelength", + "director": "Michael Snow", + "year": "1967", + "tags": "Drama", + "desc": "Wavelength consists of almost no action, and what action does occur is largely elided. If the film could be said to have a conventional plot, this would presumably refer to the three \u201ccharacter\u201d scenes. In the first scene two people enter a room, chat briefly, and listen to \u201cStrawberry Fields Forever\u201d on the radio. Later, a man (played by filmmaker Hollis Frampton) enters inexplicably and dies on the floor. And last, the female owner of the apartment is heard and seen on the phone, speaking, with strange calm, about the dead man in her apartment whom she has never seen before.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/EJrUlzZ7kTrCP3czxqtb5dfS5i.jpg", + "length": "1h 43m" + }, + { + "title": "Bonnie and Clyde", + "director": "Arthur Penn", + "year": "1967", + "tags": "Crime", + "desc": "In the 1930s, bored waitress Bonnie Parker falls in love with an ex-con named Clyde Barrow and together they start a violent crime spree through the country, stealing cars and robbing banks.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sCSQFK9kMsprT4jgWqgw82dT6WI.jpg", + "length": "2h 51m" + }, + { + "title": "The Red and the White", + "director": "Mikl\u00f3s Jancs\u00f3", + "year": "1967", + "tags": "War", + "desc": "In 1919, Hungarian Communists aid the Bolsheviks' defeat of Czarists, the Whites. Near the Volga, a monastery and a field hospital are held by one side and then the other.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ksoCAQDpcQl4gmkL9IGdtFCQGnv.jpg", + "length": "2h 30m" + }, + { + "title": "Marketa Lazarov\u00e1", + "director": "Franti\u0161ek Vl\u00e1\u010dil", + "year": "1967", + "tags": "Drama", + "desc": "Mikol\u00e1s and his brother Adam end up with a young German hostage of noble blood during a robbery. While their clan prepares for the wrath of the German king, Mikol\u00e1s is sent to pressure his neighbor Lazar into a defense pact. Persuasion fails and he abducts Lazar's daughter Marketa on the eve of her initiation as a nun in an act of vengeance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ithTIIREH8cjB5Vt4SQyOMLtnbn.jpg", + "length": "3h 46m" + }, + { + "title": "The Jungle Book", + "director": "Wolfgang Reitherman", + "year": "1967", + "tags": "Family", + "desc": "The boy Mowgli makes his way to the man-village with Bagheera, the wise panther. Along the way he meets jazzy King Louie, the hypnotic snake Kaa and the lovable, happy-go-lucky bear Baloo, who teaches Mowgli \"The Bare Necessities\" of life and the true meaning of friendship.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9BgcTVV43dZ8A1TpuXWkuNTXtfI.jpg", + "length": "1h 18m" + }, + { + "title": "The Firemen's Ball", + "director": "Milo\u0161 Forman", + "year": "1967", + "tags": "Comedy", + "desc": "The firemen of a provincial Czechoslovakian town throw a ball in honor of the old chief's retirement. There will be music and dancing, a beauty pageant and a raffle. The whole town will be in attendance. However, the proceedings are dogged by difficulty at every step. Workplace injuries, stolen prizes, a shortage of pretty girls... and fire.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yylEjPttmTDar0o92StlrO5ghmw.jpg", + "length": "1h 13m" + }, + { + "title": "Entranced Earth", + "director": "Glauber Rocha", + "year": "1967", + "tags": "Drama", + "desc": "Eldorado, a fictitious country in America, is sparkling with the internal struggle for political power. In the eye of this social convulsion, the jaded journalist Paulo Martins opposes two equally corrupt political candidates: a pseudopopulist and a conservative. In this context, Paulo is torn between the madness of the elite and the blind submission of the masses. But, in this complex tropical reality, nothing really is what it seems to be.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kuBU2eGzZyCBYxChYBUGbyTQ052.jpg", + "length": "2h 46m" + }, + { + "title": "Viy", + "director": "Georgi Kropachyov", + "year": "1967", + "tags": "Drama", + "desc": "A young priest is ordered to preside over the wake of a witch in the church of a remote village. This means spending three nights alone with the corpse with only his faith to protect him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rgkp4X9C1NNobH8bq55zcMTQFCl.jpg", + "length": "1h 17m" + }, + { + "title": "Once Upon a Time in the West", + "director": "Sergio Leone", + "year": "1968", + "tags": "Drama", + "desc": "As the railroad builders advance unstoppably through the Arizona desert on their way to the sea, Jill arrives in the small town of Flagstone with the intention of starting a new life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qbYgqOczabWNn2XKwgMtVrntD6P.jpg", + "length": "3h 46m" + }, + { + "title": "Planet of the Apes", + "director": "Franklin J. Schaffner", + "year": "1968", + "tags": "Science Fiction", + "desc": "Astronaut Taylor crash lands on a distant planet ruled by apes who use a primitive race of humans for experimentation and sport. Soon Taylor finds himself among the hunted, his life in the hands of a benevolent chimpanzee scientist.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2r9iKnlSYEk4daQadsXfcjHfIjQ.jpg", + "length": "2h 52m" + }, + { + "title": "Faces", + "director": "John Cassavetes", + "year": "1968", + "tags": "Drama", + "desc": "Middle-aged suburban husband Richard abruptly tells his wife, Maria, that he wants a divorce. As Richard takes up with a younger woman, Maria enjoys a night on the town with her friends and meets a younger man. As the couple and those around them confront a seemingly futile search for what they've lost -- love, excitement, passion -- this classic American independent film explores themes of aging and alienation.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qTkhxFQ0o6DEtTtPXkv4IA5M90J.jpg", + "length": "2h 10m" + }, + { + "title": "Rosemary's Baby", + "director": "Roman Polanski", + "year": "1968", + "tags": "Drama", + "desc": "A young couple, Rosemary and Guy, moves into an infamous New York apartment building, known by frightening legends and mysterious events, with the purpose of starting a family.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nclYFGpVzfbiORO5ELVVdxzt9Vg.jpg", + "length": "2h 18m" + }, + { + "title": "If....", + "director": "Lindsay Anderson", + "year": "1968", + "tags": "Drama", + "desc": "In an English boys' boarding school, social hierarchy reigns supreme and power remains in the hands of distanced and ineffectual teachers and callously vicious prefects in the Upper Sixth. Three Lower Sixth students, Wallace, Johnny and leader Mick Travis decide on a shocking course of action to redress the balance of privilege once and for all.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3yOtehzchZobaMVth4gutUHmKc6.jpg", + "length": "2h 52m" + }, + { + "title": "Memories of Underdevelopment", + "director": "Tom\u00e1s Guti\u00e9rrez Alea", + "year": "1968", + "tags": "Drama", + "desc": "In the aftermath of the Bay of Pigs incident, Sergio chooses to stay behind in Cuba while his wife and family escape to neighboring Miami. Alone in a brave new world, Sergio observes the constant threat of foreign invasion while chasing young women all over Havana. He finally meets Elena, a young virgin girl he seeks to mould into the image of his ex-wife, but at what cost to himself?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/av7zEHpOyzmm86VPRa68zOLaBqf.jpg", + "length": "2h 39m" + }, + { + "title": "The Producers", + "director": "Mel Brooks", + "year": "1967", + "tags": "Comedy", + "desc": "Broadway producer, Max Bialystock and his accountant, Leo Bloom plan to make money by charming little old ladies to invest in a production many times over what it will actually cost, and then put on a sure-fire flop, so nobody will ask for their money back \u2013 and what can be a more certain flop than a tasteless musical celebrating Hitler.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5TYUsAygWKtufAC78ep2AiohEiR.jpg", + "length": "1h 28m" + }, + { + "title": "David Holzman's Diary", + "director": "Jim McBride", + "year": "1967", + "tags": "Comedy", + "desc": "A young filmmaker decides to make a movie about his day-to-day activities in an attempt to understand himself and get his life back in order. A precursor to reality television and vlogs.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/epWsXU58GSrnFHWPj6r63hZ5PbH.jpg", + "length": "1h 14m" + }, + { + "title": "Shame", + "director": "Steve McQueen", + "year": "1968", + "tags": "Drama", + "desc": "Brandon, a thirty-something man living in New York, eludes intimacy with women but feeds his deepest desires with a compulsive addiction to sex. When his younger sister temporarily moves into his apartment, stirring up bitter memories of their shared painful past, Brandon's life, like his fragile mind, gets out of control.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aywgzSw9LK4z3DxMPZsNbzWYqQ1.jpg", + "length": "2h 42m" + }, + { + "title": "2001: A Space Odyssey", + "director": "Stanley Kubrick", + "year": "1968", + "tags": "Science Fiction", + "desc": "Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ve72VxNqjGM69Uky4WTo2bK6rfq.jpg", + "length": "2h 29m" + }, + { + "title": "Hour of the Wolf", + "director": "Ingmar Bergman", + "year": "1968", + "tags": "Drama", + "desc": "While vacationing on a remote German island with his pregnant wife, an artist has an emotional breakdown while confronting his repressed desires.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jSqTnEP1x1OcOglqrInYvGSF1tL.jpg", + "length": "2h 30m" + }, + { + "title": "Targets", + "director": "Peter Bogdanovich", + "year": "1968", + "tags": "Crime", + "desc": "An aging horror-movie icon's fate intersects with that of a seemingly ordinary young man on a psychotic shooting spree around Los Angeles.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n0xQThLhrymktXzQbD0KwwUMXSB.jpg", + "length": "2h 30m" + }, + { + "title": "Night of the Living Dead", + "director": "George A. Romero", + "year": "1968", + "tags": "Horror", + "desc": "A group of strangers trapped in a farmhouse find themselves fending off a horde of recently dead, flesh-eating ghouls.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/inNUOa9WZGdyRXQlt7eqmHtCttl.jpg", + "length": "2h 36m" + }, + { + "title": "The Color of Pomegranates", + "director": "Sergei Parajanov", + "year": "1969", + "tags": "Drama", + "desc": "The life of the revered 18th-century Armenian poet and musician Sayat-Nova. Portraying events in the life of the artist from childhood up to his death, the movie addresses in particular his relationships with women, including his muse. The production tells Sayat-Nova's dramatic story by using both his poems and largely still camerawork, creating a work hailed as revolutionary by Mikhail Vartanov.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rMUbQf7RgsYgQ47AFf1wpoSt4dX.jpg", + "length": "1h 20m" + }, + { + "title": "The Cow", + "director": "Michael D. Murphy", + "year": "1969", + "tags": "#Movie", + "desc": "A beauty-filled look at cows on a peaceful day in the pasture. Natural sounds, without narration. A little girl lolls in the meadow, watching cows sniff the grass, jaws grinding, tails swishing. Colors and shapes of bodies, textures of noses and hides. A new-born calf, licked clean by its mother, tries to stand on collapsible legs and searches out its first meal. \u201cThe essence of cowness is fixed forever in the mind and heart of the viewer\u201d (Los Angeles Times).", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k8ruYCVHMipLBBVHm8F3jFtQ7jo.jpg", + "length": "0h 10m" + }, + { + "title": "My Night at Maud's", + "director": "\u00c9ric Rohmer", + "year": "1969", + "tags": "Romance", + "desc": "The rigid principles of a devout Catholic man are challenged during a one-night stay with Maud, a divorced woman with an outsize personality.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8XKXkI6sR5W4JBG6AvgQH1LcKLa.jpg", + "length": "2h 50m" + }, + { + "title": "Lucia", + "director": "Humberto Sol\u00e1s", + "year": "1968", + "tags": "Drama", + "desc": "In his award-winning film Luc\u00eda, Humberto Sol\u00e1s interpreted the theme of Cuba\u2019s hundred years' struggle in an entirely novel way to create an epic in three separate episodes, each centred around a woman called Luc\u00eda and each unfolding in a different period of Cuban history, corresponding to the three stages of colonialism (1895), neocolonialism (1930) and socialist revolution (1968). The three episodes also present us with \"Luc\u00edas\" of different social classes. Sol\u00e1s described his film in this way: \"The woman's role always lays bare the contradictions of a period and makes them explicit: Luc\u00eda is not a film about women, it's a film about society.\"", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mFceUpxhRuMgnveNkPuV9IOrtOX.jpg", + "length": "3h 40m" + }, + { + "title": "Butch Cassidy and the Sundance Kid", + "director": "George Roy Hill", + "year": "1969", + "tags": "Western", + "desc": "In late 1890s Wyoming, Butch Cassidy is the affable, clever and talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot Sundance Kid. As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all. Preserved by the Academy Film Archive in partnership with Twentieth Century Fox Film Corporation in 1998.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gFmmykF1Ym3OGzENo50nZQaD1dx.jpg", + "length": "2h 51m" + }, + { + "title": "Midnight Cowboy", + "director": "John Schlesinger", + "year": "1969", + "tags": "Drama", + "desc": "Joe Buck is a wide-eyed hustler from Texas hoping to score big with wealthy New York City women; he finds a companion in Enrico \"Ratso\" Rizzo, an ailing swindler with a bum leg and a quixotic fantasy of escaping to Florida.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/f7YLzOxwWzeEdo7RhAlPSBTYa8.jpg", + "length": "2h 53m" + }, + { + "title": "Fellini Satyricon", + "director": "Federico Fellini", + "year": "1969", + "tags": "Drama", + "desc": "After his young lover, Gitone, leaves him for another man, Encolpio decides to kill himself, but a sudden earthquake destroys his home before he has a chance to do so. Now wandering around Rome in the time of Nero, Encolpio encounters one bizarre and surreal scene after another.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/83urUMl04GtwuuGIFpezqzi7n6m.jpg", + "length": "2h 9m" + }, + { + "title": "Z", + "director": "Costa-Gavras", + "year": "1969", + "tags": "Thriller", + "desc": "Amidst a heated political climate, the opposition leader is killed in what appears to be a traffic accident. When a magistrate finds evidence of a government cover-up, witnesses start to get targeted. A thinly-fictionalized account of the events surrounding the assassination of Greek politician Grigoris Lambrakis in 1963, Z captures the outrage about the military junta that ruled Greece at the time.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dFAJyFNgvOv24f2RQyI9KDxjGr3.jpg", + "length": "2h 7m" + }, + { + "title": "Easy Rider", + "director": "Dennis Hopper", + "year": "1969", + "tags": "Adventure", + "desc": "Wyatt and Billy, two Harley-riding hippies, complete a drug deal in Southern California and decide to travel cross-country in search of spiritual truth.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mmGEB6ly9OG8SYVfvAoa6QqHNvN.jpg", + "length": "2h 35m" + }, + { + "title": "High School", + "director": "Frederick Wiseman", + "year": "1968", + "tags": "Documentary", + "desc": "Documentary filmmaker Frederick Wiseman takes us inside Northeast High School as a fly on the wall to observe the teachers and how they interact with the students.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6aFqM55kuVVZ1WihfoWPaTzhMrB.jpg", + "length": "1h 15m" + }, + { + "title": "In the Year of the Pig", + "director": "Emile de Antonio", + "year": "1969", + "tags": "Documentary", + "desc": "Both sober and sobering, producer-director Emile de Antonio\u2019s In the Year of the Pig is a powerful and, no doubt for many, controversial documentary about the Vietnam War.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iXAeDRmDguZAl2QxaHv1YQ7G1u6.jpg", + "length": "2h 41m" + }, + { + "title": "The Wild Bunch", + "director": "Sam Peckinpah", + "year": "1969", + "tags": "Western", + "desc": "An aging group of outlaws look for one last big score as the \"traditional\" American West is disappearing around them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8j9yEC3xjy1PJDSizIbaxcHaSph.jpg", + "length": "2h 25m" + }, + { + "title": "Andrei Rublev", + "director": "Andrei Tarkovsky", + "year": "1966", + "tags": "Drama", + "desc": "An expansive Russian drama, this film focuses on the life of revered religious icon painter Andrei Rublev. Drifting from place to place in a tumultuous era, the peace-seeking monk eventually gains a reputation for his art. But after Rublev witnesses a brutal battle and unintentionally becomes involved, he takes a vow of silence and spends time away from his work. As he begins to ease his troubled soul, he takes steps towards becoming a painter once again.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/910xRIUmNJrWH2hkQifBJtoPp5R.jpg", + "length": "3h 3m" + }, + { + "title": "The Butcher", + "director": "Claude Chabrol", + "year": "1970", + "tags": "Thriller", + "desc": "An unlikely friendship between a dour, working class butcher and a repressed schoolteacher coincides with a grisly series of Ripper-type murders in a provincial French town.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/An2gkXn5TATag9Adul2Zbq5Ndrv.jpg", + "length": "2h 33m" + }, + { + "title": "Kes", + "director": "Ken Loach", + "year": "1969", + "tags": "Drama", + "desc": "Bullied at school and ignored and abused at home by his indifferent mother and older brother, Billy Casper, a 15-year-old working-class Yorkshire boy, tames and trains his pet kestrel falcon whom he names Kes. Helped and encouraged by his English teacher and his fellow students, Billy finally finds a positive purpose to his unhappy existence\u2014until tragedy strikes.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r1FMq75irhsQBVGjXhPU4xA9SDo.jpg", + "length": "2h 51m" + }, + { + "title": "The Sorrow and the Pity", + "director": "Marcel Oph\u00fcls", + "year": "1969", + "tags": "Documentary", + "desc": "An investigation into the nature, details and reasons for the collaboration between France\u2019s Vichy government and Nazi Germany from 1940 to 1944.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eJRN6vh4hwBEITSfhNQZwVM7MDa.jpg", + "length": "4h 10m" + }, + { + "title": "The Conformist", + "director": "Bernardo Bertolucci", + "year": "1970", + "tags": "Drama", + "desc": "A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7nmAUY7bSbiGXH3bbFu3Q3SJ1Xr.jpg", + "length": "2h 48m" + }, + { + "title": "Tristana", + "director": "Luis Bu\u00f1uel", + "year": "1970", + "tags": "Drama", + "desc": "As a young woman, Tristana is orphaned and taken under the guardianship of Don Lope, a respected member of the community, who takes advantage of his innocent charge. When Tristana falls in love with artist Horacio, she must learn to be more assertive in order to achieve independence from her nefarious guardian, or her blossoming relationship with Horatio is doomed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/h4GsNOMYvoza0kQDMLcyHeo51W3.jpg", + "length": "2h 38m" + }, + { + "title": "Five Easy Pieces", + "director": "Bob Rafelson", + "year": "1970", + "tags": "Drama", + "desc": "A drop-out from upper-class America picks up work along the way on oil-rigs when his life isn't spent in a squalid succession of bars, motels, and other points of interest.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/AciLTjLqyHiEA0lq35CV4Atnm4v.jpg", + "length": "2h 38m" + }, + { + "title": "El Topo", + "director": "Alejandro Jodorowsky", + "year": "1970", + "tags": "Action", + "desc": "El Topo decides to confront warrior Masters on a trans-formative desert journey he begins with his 6 year old son, who must bury his childhood totems to become a man.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fKoNBTATc94rUYLq8VyypS24LUw.jpg", + "length": "2h 5m" + }, + { + "title": "Woodstock", + "director": "Michael Wadleigh", + "year": "1970", + "tags": "Documentary", + "desc": "An intimate look at the Woodstock Music & Art Festival held in Bethel, NY in 1969, from preparation through cleanup, with historic access to insiders, blistering concert footage, and portraits of the concertgoers; negative and positive aspects are shown, from drug use by performers to naked fans sliding in the mud, from the collapse of the fences by the unexpected hordes to the surreal arrival of National Guard helicopters with food and medical assistance for the impromptu city of 500,000.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d6CQiqUiELQiO2w854oRq6qMasy.jpg", + "length": "4h 45m" + }, + { + "title": "The Spider's Stratagem", + "director": "Bernardo Bertolucci", + "year": "1970", + "tags": "Mystery", + "desc": "A young man returns to his countryside hometown to investigate the unclear circumstances behind the death of his father, ostensibly killed by Fascists in 1936, before his birth. As he unravels a web of lies that seems to encompass the whole town, he finds himself entangled in the same web.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z8IK3qwu3pscCFsIK6Wkbn4boq3.jpg", + "length": "2h 40m" + }, + { + "title": "Little Big Man", + "director": "Arthur Penn", + "year": "1970", + "tags": "Adventure", + "desc": "Jack Crabb, looking back from extreme old age, tells of his life being raised by Indians and fighting with General Custer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pLvUVqadEI9cPrRlTru6ee71EWU.jpg", + "length": "2h 19m" + }, + { + "title": "The Ear", + "director": "Ben Wheatley", + "year": "1970", + "tags": "Horror", + "desc": "As a deadly virus ravages the world, Dr. Martin Lowery embarks on a mission to reach test site ATU327A, a research hub deep in the Arboreal Forest. The arduous journey, guided by park scout Alma, is set back by a nighttime attack that leaves the two bruised and shoeless. When they run into Zach, a man living off the grid, they gratefully accept his help. Zach\u2019s intentions aren\u2019t exactly what they seem, however, and a path out of the forest and into safety quickly fades as the line between myth and science blurs.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lzzUkcZyHbXJayCw8yNAPezdBhq.jpg", + "length": "2h 47m" + }, + { + "title": "Patton", + "director": "Franklin J. Schaffner", + "year": "1970", + "tags": "War", + "desc": "\"Patton\" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rLM7jIEPTjj4CF7F1IrzzNjLUCu.jpg", + "length": "3h 52m" + }, + { + "title": "M*A*S*H", + "director": "Robert Altman", + "year": "1970", + "tags": "Comedy", + "desc": "The staff of a Korean War field hospital use humor and hijinks to keep their sanity in the face of the horror of war.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xZHNAcCVd5gUy68MBc4CmDqmely.jpg", + "length": "2h 56m" + }, + { + "title": "Performance", + "director": "Nicolas Roeg", + "year": "1970", + "tags": "Crime", + "desc": "In underworld terms, Chas Devlin is a 'performer,' a gangster with a talent for violence and intimidation. Turner is a reclusive rock superstar. When Chas and Turner meet, their worlds collide\u2014and the impact is both exotic and explosive.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wfEY1Bz6bCJ49lmBg7mt2AmAaRq.jpg", + "length": "2h 46m" + }, + { + "title": "Gimme Shelter", + "director": "Albert Maysles", + "year": "1970", + "tags": "Documentary", + "desc": "A detailed chronicle of the famous 1969 tour of the United States by the British rock band The Rolling Stones, which culminated with the disastrous and tragic concert held on December 6 at the Altamont Speedway Free Festival, an event of historical significance, as it marked the end of an era: the generation of peace and love suddenly became the generation of disillusionment.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fFLKCqI7nfkie9V1LmBLljiNV4j.jpg", + "length": "2h 32m" + }, + { + "title": "Zabriskie Point", + "director": "Michelangelo Antonioni", + "year": "1970", + "tags": "Drama", + "desc": "Anthropology student Daria, who's helping a property developer build a village in the Los Angeles desert, and dropout Mark, who's wanted by the authorities for allegedly killing a policeman during a student riot, accidentally encounter each other in Death Valley and soon begin an unrestrained romance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qjPeWUyBcAgM2OZSgk0icNExtWT.jpg", + "length": "2h 53m" + }, + { + "title": "The Bird With the Crystal Plumage", + "director": "Dario Argento", + "year": "1970", + "tags": "Horror", + "desc": "An American writer living in Rome witnesses an attempted murder that is connected to an ongoing killing spree in the city, and conducts his own investigation despite himself and his girlfriend being targeted by the killer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dpALRkwodEIT7TGX9SqTgwVNn0i.jpg", + "length": "2h 36m" + }, + { + "title": "The Garden of the Finzi-Continis", + "director": "Vittorio De Sica", + "year": "1970", + "tags": "Drama", + "desc": "In late 1930s Ferrara, Italy, the Finzi-Continis are a leading family: wealthy, aristocratic, and urbane; they are also Jewish. Their adult children, Micol and Alberto, gather a diverse circle of friends for tennis and parties at their villa with its lovely grounds, and try to keep the rest of the world at bay. But tensions between them all grow as anti-Semitism rises in Fascist Italy, and even the Finzi-Continis will have to confront the Holocaust.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1QItMIgrbxpAYTbmRPRV2u5RUMK.jpg", + "length": "2h 35m" + }, + { + "title": "A Touch of Zen", + "director": "King Hu", + "year": "1971", + "tags": "Action", + "desc": "Ku Shen Chai, an artist in his early 30s, still lives with his mother, but he is suddenly shaken by the arrival of Yang Hui-ching, a mysterious princess on the run. Yang brings Ku into her circle of protectors, including a nameless monk whose spiritual guidance transforms him into a valiant fighter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gwDdvYjnFhUvfxUGYUuXRLrXVeA.jpg", + "length": "3h 0m" + }, + { + "title": "Deep End", + "director": "Jerzy Skolimowski", + "year": "1970", + "tags": "Drama", + "desc": "London, England. Mike, a fifteen-year-old boy, gets a job in a bathhouse, where he meets Susan, an attractive young woman who works there as an attendant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8pZxUJTgjerjxuifSU13B8pXAJB.jpg", + "length": "2h 32m" + }, + { + "title": "Wanda", + "director": "Barbara Loden", + "year": "1970", + "tags": "Drama", + "desc": "After a string of abusive relationships, Wanda abandons her family and seeks solace in the company of a petty criminal.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/izuJ7cUhcihFnTpfsdSnkMCHsRQ.jpg", + "length": "2h 43m" + }, + { + "title": "W.R. - Mysteries of the Organism", + "director": "Du\u0161an Makavejev", + "year": "1971", + "tags": "Drama", + "desc": "What does the energy harnessed through orgasm have to do with the state of communist Yugoslavia circa 1971? Only counterculture filmmaker extraordinaire Du\u0161an Makavejev has the answers (or the questions). His surreal documentary-fiction collision WR: Mysteries of the Organism begins as an investigation into the life and work of controversial psychologist and philosopher Wilhelm Reich and then explodes into a free-form narrative of a beautiful young Slavic girl\u2019s sexual liberation.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gbyyHQhQSDH7PsIu1gLdpRek091.jpg", + "length": "1h 24m" + }, + { + "title": "A Clockwork Orange", + "director": "Stanley Kubrick", + "year": "1971", + "tags": "Science Fiction", + "desc": "In a near-future Britain, young Alexander DeLarge and his pals get their kicks beating and raping anyone they please. When not destroying the lives of others, Alex swoons to the music of Beethoven. The state, eager to crack down on juvenile crime, gives an incarcerated Alex the option to undergo an invasive procedure that'll rob him of all personal agency. In a time when conscience is a commodity, can Alex change his tune?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4sHeTAp65WrSSuc05nRBKddhBxO.jpg", + "length": "2h 17m" + }, + { + "title": "Willy Wonka & the Chocolate Factory", + "director": "Mel Stuart", + "year": "1971", + "tags": "Family", + "desc": "When eccentric candy man Willy Wonka promises a lifetime supply of sweets and a tour of his chocolate factory to five lucky kids, penniless Charlie Bucket seeks the golden ticket that will make him a winner.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vmpsZkrs4Uvkp9r1atL8B3frA63.jpg", + "length": "2h 39m" + }, + { + "title": "McCabe & Mrs. Miller", + "director": "Robert Altman", + "year": "1971", + "tags": "Western", + "desc": "A gambler and a prostitute become business partners in a remote Old West mining town, and their enterprise thrives until a large corporation arrives on the scene.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/s08TlP0kKcpK50XZhg9oL7aGpbz.jpg", + "length": "2h 0m" + }, + { + "title": "Walkabout", + "director": "Nicolas Roeg", + "year": "1971", + "tags": "Adventure", + "desc": "Under the pretense of having a picnic, a geologist takes his teenage daughter and 6-year-old son into the Australian outback and attempts to shoot them. When he fails, he turns the gun on himself, and the two city-bred children must contend with harsh wilderness alone. They are saved by a chance encounter with an Aboriginal boy who shows them how to survive, and in the process underscores the disharmony between nature and modern life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/24vooYt5StgtgcQObVr1GHuM5gy.jpg", + "length": "2h 35m" + }, + { + "title": "Klute", + "director": "Alan J. Pakula", + "year": "1971", + "tags": "Thriller", + "desc": "A high-priced call girl is forced to depend on a reluctant private eye when she is stalked by a psychopath.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tVyINAsNGSgD1OIstqwCcs7wyGH.jpg", + "length": "2h 54m" + }, + { + "title": "Harold and Maude", + "director": "Hal Ashby", + "year": "1971", + "tags": "Comedy", + "desc": "The young Harold lives in his own world of suicide-attempts and funeral visits to avoid the misery of his current family and home environment. Harold meets an 80-year-old woman named Maude who also lives in her own world yet one in which she is having the time of her life. When the two opposites meet they realize that their differences don\u2019t matter and they become best friends and love each other.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/t7qEuGwDjcYu8ajaKZ68DeDnOxw.jpg", + "length": "2h 31m" + }, + { + "title": "Red Psalm", + "director": "Mikl\u00f3s Jancs\u00f3", + "year": "1972", + "tags": "Drama", + "desc": "Set in the 1890s on the Hungarian plains, a group of farm workers go on strike in which they face harsh reprisals and the reality of revolt, oppression, morality and violence.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u6fIA9je4S1jrcieEFQ2d6ZTjE1.jpg", + "length": "1h 26m" + }, + { + "title": "Get Carter", + "director": "Mike Hodges", + "year": "1971", + "tags": "Crime", + "desc": "Jack Carter is a small-time hood working in London. When word reaches him of his brother's death, he travels to Newcastle to attend the funeral. Refusing to accept the police report of suicide, Carter seeks out his brother\u2019s friends and acquaintances to learn who murdered his sibling and why.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/suvNK1hd7LnVhsumteyflDGlrgL.jpg", + "length": "2h 52m" + }, + { + "title": "The French Connection", + "director": "William Friedkin", + "year": "1971", + "tags": "Action", + "desc": "Tough narcotics detective 'Popeye' Doyle is in hot pursuit of a suave French drug dealer who may be the key to a huge heroin-smuggling operation.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pH4saPwMjhnVGwmSH6RkMaHrt3s.jpg", + "length": "2h 44m" + }, + { + "title": "Shaft", + "director": "Gordon Parks", + "year": "1971", + "tags": "Action", + "desc": "Cool black private eye John Shaft is hired by a crime lord to find and retrieve his kidnapped daughter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yJChPuu2V339IiDPQDHeIh1SYpA.jpg", + "length": "2h 40m" + }, + { + "title": "Dirty Harry", + "director": "Don Siegel", + "year": "1971", + "tags": "Action", + "desc": "When a madman dubbed 'Scorpio' terrorizes San Francisco, hard-nosed cop, Harry Callahan \u2013 famous for his take-no-prisoners approach to law enforcement \u2013 is tasked with hunting down the psychopath. Harry eventually collars Scorpio in the process of rescuing a kidnap victim, only to see him walk on technicalities. Now, the maverick detective is determined to nail the maniac himself.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/UHxxkYe9tRdiPu0JFgcEL5hmQ4.jpg", + "length": "2h 42m" + }, + { + "title": "Murmur of the Heart", + "director": "Louis Malle", + "year": "1971", + "tags": "Comedy", + "desc": "This loosely plotted coming-of-age tale follows the life of 15-year-old Laurent Chevalier as he stumbles his way over the burgeoning swell of adolescence in 1950s France. After having his first sexual experience with a prostitute and dodging the lips of a priest, Chevalier contracts a case of scarlet fever. When the fever leaves him with a heart murmur, Chevalier is placed in a sanatorium, along with his over-attentive and adulterous mother.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gJt4ojBYsaUDGnKqnIqGvQOLpjh.jpg", + "length": "2h 58m" + }, + { + "title": "Sweet Sweetback's Baadasssss Song", + "director": "Melvin Van Peebles", + "year": "1971", + "tags": "Action", + "desc": "After saving a Black Panther from some racist cops, a black male prostitute goes on the run from \"the man\" with the help of the ghetto community and some disillusioned Hells Angels.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/b8WohfEVW6nCnHBlQGXmXmSJJhW.jpg", + "length": "2h 37m" + }, + { + "title": "The Last Picture Show", + "director": "Peter Bogdanovich", + "year": "1971", + "tags": "Drama", + "desc": "High school seniors and best friends, Sonny and Duane, live in a dying Texas town. The handsome Duane is dating a local beauty, while Sonny is having an affair with the coach's wife. As graduation nears and both boys contemplate their futures, Duane eyes the army and Sonny takes over a local business. Each struggles to figure out if he can escape this dead-end town and build a better life somewhere else.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7NYePZc0lZrRomtmQsjOJMePTEb.jpg", + "length": "2h 59m" + }, + { + "title": "Straw Dogs", + "director": "Sam Peckinpah", + "year": "1971", + "tags": "Drama", + "desc": "David Sumner, a mild-mannered academic from the United States, marries Amy, an Englishwoman. In order to escape a hectic stateside lifestyle, David and his wife relocate to the small town in rural Cornwall where Amy was raised. There, David is ostracized by the brutish men of the village, including Amy's old flame, Charlie. Eventually the taunts escalate, and two of the locals rape Amy. This sexual assault awakes a shockingly violent side of David.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yigkfHE1OhkxPPrjrV78Y9ibGEk.jpg", + "length": "2h 56m" + }, + { + "title": "Two-Lane Blacktop", + "director": "Monte Hellman", + "year": "1971", + "tags": "Drama", + "desc": "A driver and a mechanic travel around the United States hopping from drag strip to drag strip in a 1955 Chevy Bel-Air coupe. They race for money, betting with their competitors. The pair gains a young and talkative female stowaway. Along the way they unintentionally attract a well-to-do drifter driving a new Pontiac GTO. This older man, looking for attention, antagonizes their efforts.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5pa3ogaUiSDf4mRrtJSgyROf7op.jpg", + "length": "2h 42m" + }, + { + "title": "Wake in Fright", + "director": "Ted Kotcheff", + "year": "1971", + "tags": "Drama", + "desc": "A schoolteacher, stuck in a teaching post in an arid backwater, stops off in a mining town on his way home for Christmas. Discovering a local gambling craze that may grant him the money to move back to Sydney for good, he embarks on a five-day nightmarish odyssey of drinking, gambling, and hunting.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cIzWTls4jOzZHL1WzFZY3epPlnG.jpg", + "length": "2h 49m" + }, + { + "title": "The Devils", + "director": "Ken Russell", + "year": "1971", + "tags": "Drama", + "desc": "In 17th-century France, Father Urbain Grandier seeks to protect the city of Loudun from the corrupt establishment of Cardinal Richelieu. Hysteria occurs within the city when he is accused of witchcraft by a sexually repressed nun.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/y1k7eiOFc6fzm8XeTa1kNGx6JIs.jpg", + "length": "2h 54m" + }, + { + "title": "The Hired Hand", + "director": "Peter Fonda", + "year": "1971", + "tags": "Western", + "desc": "Harry Collings returns home to his farm after drifting with his friend, Arch. His wife, who had given up on him, reluctantly allows him to stay, and soon believes that all will be well again. But then Harry has to make a difficult decision regarding his loyalties and priorities.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qE1fgjbtQinQXvSA2ADnOj5SRdl.jpg", + "length": "2h 30m" + }, + { + "title": "The Heartbreak Kid", + "director": "Elaine May", + "year": "1972", + "tags": "Romance", + "desc": "Three days into his Miami honeymoon with needy and unsophisticated Lila, Lenny meets tall, blonde Kelly. This confirms his fear that he has made a serious mistake and he decides he wants Kelly instead.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5HtYW6taG3paHleY2LOCi44Qqei.jpg", + "length": "2h 45m" + }, + { + "title": "Aguirre: The Wrath of God", + "director": "Werner Herzog", + "year": "1972", + "tags": "Adventure", + "desc": "A few decades after the destruction of the Inca Empire, a Spanish expedition led by the infamous Aguirre leaves the mountains of Peru and goes down the Amazon River in search of the lost city of El Dorado. When great difficulties arise, Aguirre\u2019s men start to wonder whether their quest will lead them to prosperity or certain death.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/e5hNOS2uwIvPCNSyIOkpmtm6HEM.jpg", + "length": "2h 35m" + }, + { + "title": "Cabaret", + "director": "Bob Fosse", + "year": "1972", + "tags": "Music", + "desc": "Inside the Kit Kat Club of 1931 Berlin, starry-eyed singer Sally Bowles and an impish emcee sound the clarion call to decadent fun, while outside a certain political party grows into a brutal force.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fMhOeJ2TvuY46iYGmsowhgRXfnr.jpg", + "length": "2h 4m" + }, + { + "title": "Last Tango in Paris", + "director": "Bernardo Bertolucci", + "year": "1972", + "tags": "Drama", + "desc": "A recently widowed American begins an anonymous sexual relationship with a young Parisian woman.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vDuI72CpwWYIWJzNNA01PA2Utdr.jpg", + "length": "2h 9m" + }, + { + "title": "Sleuth", + "director": "Joseph L. Mankiewicz", + "year": "1972", + "tags": "Thriller", + "desc": "A mystery novelist devises an insurance scam with his wife's lover \u2013 but things aren't exactly as they seem.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jAREYLUnYGwPjbQr0vs1s38QLkH.jpg", + "length": "2h 18m" + }, + { + "title": "Deliverance", + "director": "John Boorman", + "year": "1972", + "tags": "Drama", + "desc": "Intent on seeing the Cahulawassee River before it's turned into one huge lake, outdoor fanatic Lewis Medlock takes his friends on a river-rafting trip they'll never forget into the dangerous American back-country.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2TrAzNJlHyNYYSkQf6asg3rs2Xr.jpg", + "length": "2h 49m" + }, + { + "title": "Solaris", + "director": "Andrei Tarkovsky", + "year": "1972", + "tags": "Drama", + "desc": "A psychologist is sent to a space station orbiting a planet called Solaris to investigate the death of a doctor and the mental problems of cosmonauts on the station. He soon discovers that the water on the planet is a type of brain which brings out repressed memories and obsessions.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uER8n2iitx8Tek6v0wXeF5lMGXp.jpg", + "length": "3h 47m" + }, + { + "title": "The Godfather", + "director": "Francis Ford Coppola", + "year": "1972", + "tags": "Drama", + "desc": "Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3bhkrj58Vtu7enYsRolD1fZdja1.jpg", + "length": "3h 55m" + }, + { + "title": "Cries and Whispers", + "director": "Ingmar Bergman", + "year": "1972", + "tags": "Drama", + "desc": "As Agnes slowly dies of cancer, her sisters are so deeply immersed in their own psychic pains that they can't offer her the support she needs. Maria is wracked with guilt at her husband's attempted suicide, caused by his discovery of her extramarital affair. The self-loathing, suicidal Karin seems to regard her sister with revulsion. Only Anna, the deeply religious maid who lost her young child, seems able to offer Agnes solace and empathy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/a1bMgB09YDvvRN9SitCclUYragr.jpg", + "length": "2h 35m" + }, + { + "title": "Fat City", + "director": "John Huston", + "year": "1972", + "tags": "Drama", + "desc": "Two men, working as professional boxers, come to blows when their careers each begin to take opposite momentum.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7ag7BOMnAuDKwNyI0wc8jTeimRb.jpg", + "length": "2h 37m" + }, + { + "title": "The Discreet Charm of the Bourgeoisie", + "director": "Luis Bu\u00f1uel", + "year": "1972", + "tags": "Comedy", + "desc": "In Luis Bu\u00f1uel\u2019s deliciously satiric masterpiece, an upper-class sextet sits down to dinner but never eats, their attempts continually thwarted by a vaudevillian mixture of events both actual and imagined.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zN4ILX2x64PvT2jIOAHXxCOi5WA.jpg", + "length": "2h 41m" + }, + { + "title": "The Bitter Tears of Petra Von Kant", + "director": "Rainer Werner Fassbinder", + "year": "1972", + "tags": "Drama", + "desc": "Petra von Kant is a successful fashion designer -- arrogant, caustic, and self-satisfied. She mistreats Marlene (her secretary, maid, and co-designer). Enter Karin, a 23-year-old beauty who wants to be a model. Petra falls in love with Karin and invites her to move in.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mHNGA9PiwzUi6V5fMLRs75p1OVQ.jpg", + "length": "2h 4m" + }, + { + "title": "Frenzy", + "director": "Alfred Hitchcock", + "year": "1972", + "tags": "Crime", + "desc": "After a serial killer strangles several women with a necktie, London police identify a suspect\u2014but he claims vehemently to be the wrong man.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4SFvqrlSigAt9tnhXFSMyKeJWQk.jpg", + "length": "2h 56m" + }, + { + "title": "Pink Flamingos", + "director": "John Waters", + "year": "1972", + "tags": "Comedy", + "desc": "Notorious Baltimore criminal and underground figure Divine goes up against Connie & Raymond Marble, a sleazy married couple who make a passionate attempt to humiliate her and seize her tabloid-given title as \"The Filthiest Person Alive\".", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/71IwGRZmEds1yuD2xbaExAofoLS.jpg", + "length": "2h 33m" + }, + { + "title": "Super Fly", + "director": "Gordon Parks Jr.", + "year": "1972", + "tags": "Crime", + "desc": "Priest, a suave top-rung New York City drug dealer, decides that he wants to get out of his dangerous trade. Working with his reluctant friend, Eddie, Priest devises a scheme that will allow him to make a big deal and then retire. When a desperate street dealer informs the police of Priest's activities, Priest is forced into an uncomfortable arrangement with corrupt narcotics officers. Setting his plan in motion, he aims to both leave the business and stick it to the man.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lCj4IZ9l8NfOEiM4zHq3BRF2LzX.jpg", + "length": "2h 31m" + }, + { + "title": "The Harder They Come", + "director": "Perry Henzell", + "year": "1972", + "tags": "Crime", + "desc": "Ivanhoe Martin arrives in Kingston, Jamaica, looking for work and, after some initial struggles, lands a recording contract as a reggae singer. He records his first song, \"The Harder They Come,\" but after a bitter dispute with a manipulative producer named Hilton, soon finds himself resorting to petty crime in order to pay the bills. He deals marijuana, kills some abusive cops and earns local folk hero status. Meanwhile, his record is topping the charts.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nXcWgfds0E8T2pQLvgWLCiUmlV6.jpg", + "length": "2h 43m" + }, + { + "title": "High Plains Drifter", + "director": "Clint Eastwood", + "year": "1973", + "tags": "Western", + "desc": "A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/AjkJCFkqanK1OZqiHxc6Kl2wPQO.jpg", + "length": "2h 45m" + }, + { + "title": "The Sting", + "director": "George Roy Hill", + "year": "1973", + "tags": "Comedy", + "desc": "A novice con man teams up with an acknowledged master to avenge the murder of a mutual friend by pulling off the ultimate big con and swindling a fortune from a big-time mobster.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ckmYng37zey8INYf6d10cVgIG93.jpg", + "length": "2h 9m" + }, + { + "title": "The Mother and the Whore", + "director": "Jean Eustache", + "year": "1973", + "tags": "Drama", + "desc": "Aimless young Alexandre juggles his relationships with his girlfriend, Marie, and a casual lover named Veronika. Marie becomes increasingly jealous of Alexandre's fling with Veronika and as the trio continues their unsustainable affair, the emotional stakes get higher, leading to conflict and unhappiness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yAZIYAq75aqIHc8hxG33TaMszTH.jpg", + "length": "4h 39m" + }, + { + "title": "Badlands", + "director": "Terrence Malick", + "year": "1973", + "tags": "Crime", + "desc": "An impressionable teenage girl from a dead-end town and her older greaser boyfriend embark on a killing spree in the South Dakota badlands.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z81rBzHNgiNLean2JTGHgxjJ8nq.jpg", + "length": "2h 34m" + }, + { + "title": "American Graffiti", + "director": "George Lucas", + "year": "1973", + "tags": "Comedy", + "desc": "A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zjoHTqwbXQkG7eX00Vno8NkvCKc.jpg", + "length": "2h 50m" + }, + { + "title": "Papillon", + "director": "Franklin J. Schaffner", + "year": "1973", + "tags": "Crime", + "desc": "A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/356oqQpug682OERsWV0bGZ0YxwQ.jpg", + "length": "3h 31m" + }, + { + "title": "Enter the Dragon", + "director": "Robert Clouse", + "year": "1973", + "tags": "Action", + "desc": "A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qfKGdwhefS5vUpG6Yniquvv3j0v.jpg", + "length": "2h 42m" + }, + { + "title": "Mean Streets", + "director": "Martin Scorsese", + "year": "1973", + "tags": "Drama", + "desc": "A small-time hood must choose from among love, friendship and the chance to rise within the mob.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9msfwOeGc9uL1iRRTBdEf15XonC.jpg", + "length": "2h 51m" + }, + { + "title": "The Long Goodbye", + "director": "Robert Altman", + "year": "1973", + "tags": "Crime", + "desc": "In 1970s Hollywood, Detective Philip Marlowe tries to help a friend who is accused of murdering his wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oBhUK54yBJ0aH6u9zCzSV5iV7OP.jpg", + "length": "2h 52m" + }, + { + "title": "The Wicker Man", + "director": "Robin Hardy", + "year": "1973", + "tags": "Horror", + "desc": "Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wwtrXRL8SiOWxhwLEvw7iBgYh0g.jpg", + "length": "1h 28m" + }, + { + "title": "Day for Night", + "director": "Fran\u00e7ois Truffaut", + "year": "1973", + "tags": "Comedy", + "desc": "A committed film director struggles to complete his movie while coping with a myriad of crises, personal and professional, among the cast and crew.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/s8TrKd8fNS5lfcnARaWMFUGjnL9.jpg", + "length": "2h 56m" + }, + { + "title": "Don't Look Now", + "director": "Nicolas Roeg", + "year": "1973", + "tags": "Thriller", + "desc": "While grieving a terrible loss, a married couple meet two mysterious sisters, one of whom gives them a message sent from the afterlife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ivWsU3QtcstImCTOjItsH0SAbNn.jpg", + "length": "2h 50m" + }, + { + "title": "Sleeper", + "director": "Woody Allen", + "year": "1973", + "tags": "Comedy", + "desc": "Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/YTYSziZZP5aXt5CDvdEMwKDzme.jpg", + "length": "1h 27m" + }, + { + "title": "Serpico", + "director": "Sidney Lumet", + "year": "1973", + "tags": "Crime", + "desc": "Frank Serpico is an idealistic New York City cop who refuses to take bribes, unlike the rest of the force. His actions get Frank shunned by the other officers, and often placed in dangerous situations by his partners. When his superiors ignore Frank's accusations of corruption, he decides to go public with the allegations. Although this causes the Knapp Commission to investigate his claims, Frank has also placed a target on himself.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c7fENg2o6SBBtL3z4V9xTAnEoDJ.jpg", + "length": "2h 10m" + }, + { + "title": "The Exorcist", + "director": "William Friedkin", + "year": "1973", + "tags": "Horror", + "desc": "When a charming 12-year-old girl takes on the characteristics and voices of others, doctors say there is nothing they can do. As people begin to die, the girl's mother realizes her daughter has been possessed by the devil--and that her daughter's only possible hope lies with two priests and the ancient rite of demonic exorcism.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5x0CeVHJI8tcDx8tUUwYHQSNILq.jpg", + "length": "2h 2m" + }, + { + "title": "Turkish Delight", + "director": "Paul Verhoeven", + "year": "1973", + "tags": "Drama", + "desc": "Eric, a gifted sculptor, has a stormy, erotic, and star-crossed romance with a beautiful young woman named Olga.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eqnlXShKgQbF3prxU6XYrC53z6F.jpg", + "length": "2h 48m" + }, + { + "title": "The Spirit of the Beehive", + "director": "V\u00edctor Erice", + "year": "1973", + "tags": "Drama", + "desc": "In 1940, in the immediate aftermath of the Spanish Civil War, a young girl living on the Castilian plain is haunted after attending a screening of James Whale's 1931 film Frankenstein and hearing from her sister that the monster is not dead, instead existing as a spirit inhabiting a nearby barn.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/p2wx4EWasQaPGxnbS2IsW74ewVN.jpg", + "length": "2h 39m" + }, + { + "title": "Fantastic Planet", + "director": "Ren\u00e9 Laloux", + "year": "1973", + "tags": "Animation", + "desc": "On the planet Ygam, the Draags, extremely technologically and spiritually advanced blue humanoids, consider the tiny Oms, human beings descendants of Terra's inhabitants, as ignorant animals. Those who live in slavery are treated as simple pets and used to entertain Draag children; those who live hidden in the hostile wilderness of the planet are periodically hunted and ruthlessly slaughtered as if they were vermin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/prq0j1S0K07UjwLZLF6oMGflRUI.jpg", + "length": "1h 12m" + }, + { + "title": "Amarcord", + "director": "Federico Fellini", + "year": "1973", + "tags": "Comedy", + "desc": "In an Italian seaside town, young Titta gets into trouble with his friends and watches various local eccentrics as they engage in often absurd behavior. Frequently clashing with his stern father and defended by his doting mother, Titta witnesses the actions of a wide range of characters, from his extended family to Fascist loyalists to sensual women, with certain moments shifting into fantastical scenarios.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kS7i093sQpkLTawUEdgf4HVOHSc.jpg", + "length": "2h 3m" + }, + { + "title": "Pat Garrett & Billy the Kid", + "director": "Sam Peckinpah", + "year": "1973", + "tags": "Western", + "desc": "Pat Garrett is hired as a lawman on behalf of a group of wealthy New Mexico cattle barons to bring down his old friend Billy the Kid.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vRDvPypWsjGs7spo7G5bz1cSacC.jpg", + "length": "2h 56m" + }, + { + "title": "F for Fake", + "director": "Orson Welles", + "year": "1973", + "tags": "Documentary", + "desc": "Documents the lives of infamous fakers Elmyr de Hory and Clifford Irving. De Hory, who later committed suicide to avoid more prison time, made his name by selling forged works of art by painters like Picasso and Matisse. Irving was infamous for writing a fake autobiography of Howard Hughes. Welles moves between documentary and fiction as he examines the fundamental elements of fraud and the people who commit fraud at the expense of others.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fVeIDxS73CrosoeVOaefQuCUGZg.jpg", + "length": "1h 29m" + }, + { + "title": "Dersu Uzala", + "director": "Akira Kurosawa", + "year": "1975", + "tags": "Action", + "desc": "A military explorer meets and befriends a Goldi man in Russia\u2019s unmapped forests. A deep and abiding bond evolves between the two men, one civilized in the usual sense, the other at home in the glacial Siberian woods.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bIOrDQ3Gg68k3qJAnRU7nIZr0BW.jpg", + "length": "2h 21m" + }, + { + "title": "The Conversation", + "director": "Francis Ford Coppola", + "year": "1974", + "tags": "Crime", + "desc": "Surveillance expert Harry Caul is hired by a mysterious client's brusque aide to tail a young couple. Tracking the pair through San Francisco's Union Square, Caul and his associate Stan manage to record a cryptic conversation between them. Tormented by memories of a previous case that ended badly, Caul becomes obsessed with the resulting tape, trying to determine if the couple is in danger.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/leZtiWJXHEp2x7jVW7djhcSboSJ.jpg", + "length": "2h 53m" + }, + { + "title": "The Texas Chainsaw Massacre", + "director": "Tobe Hooper", + "year": "1974", + "tags": "Horror", + "desc": "A group of five young friends face a nightmare of torment at the hands of a depraved Texas clan.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9s8uSm5K1W0vhGPHv2icM6SFib8.jpg", + "length": "1h 23m" + }, + { + "title": "A Woman Under the Influence", + "director": "John Cassavetes", + "year": "1974", + "tags": "Drama", + "desc": "Mabel Longhetti, desperate and lonely, is married to a Los Angeles municipal construction worker, Nick. Increasingly unstable, especially in the company of others, she craves happiness, but her extremely volatile behavior convinces Nick that she poses a danger to their family and decides to commit her to an institution for six months. Alone with a trio of kids to raise on his own, he awaits her return, which holds more than a few surprises.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6EJ4JoTxnH1QmGTE9pPzgtW1cLW.jpg", + "length": "3h 35m" + }, + { + "title": "Young Frankenstein", + "director": "Mel Brooks", + "year": "1974", + "tags": "Comedy", + "desc": "A young neurosurgeon inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback, a pretty lab assistant and the elderly housekeeper. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tQJAWbIjvvqVKLLbIZHtwGw2HTf.jpg", + "length": "2h 46m" + }, + { + "title": "Chinatown", + "director": "Roman Polanski", + "year": "1974", + "tags": "Crime", + "desc": "Private eye Jake Gittes lives off of the murky moral climate of sunbaked, pre-World War II Southern California. Hired by a beautiful socialite to investigate her husband's extra-marital affair, Gittes is swept into a maelstrom of double dealings and deadly deceits, uncovering a web of personal and political scandals that come crashing together.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mQJz8J4naOA7RmCtypTPjgXZIMY.jpg", + "length": "2h 10m" + }, + { + "title": "Celine and Julie Go Boating", + "director": "Jacques Rivette", + "year": "1974", + "tags": "Comedy", + "desc": "A mysteriously linked pair of young women find their daily lives pre-empted by a strange boudoir melodrama that plays itself out in a hallucinatory parallel reality. An undisputed classic of the French New Wave, Jacques Rivette\u2019s Celine and Julie Go Boating is a delightful movie about the spiritual journey of a pair of young women, told with a playful approach to the cinematic form. A masterpiece of cinematic creativity, Rivette, the same mind behind 1969\u2019s L\u2019amour fou, effortlessly draws the viewer into the whimsical world of the titular protagonists.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ijpehUwH4XFNFm8UcYHpRQVRQUF.jpg", + "length": "3h 13m" + }, + { + "title": "Blazing Saddles", + "director": "Mel Brooks", + "year": "1974", + "tags": "Western", + "desc": "A town\u2014where everyone seems to be named Johnson\u2014stands in the way of the railroad. In order to grab their land, robber baron Hedley Lamarr sends his henchmen to make life in the town unbearable. After the sheriff is killed, the town demands a new sheriff from the Governor, so Hedley convinces him to send the town the first black sheriff in the west.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vNw1gOEDdYTDeNMuuq8OmiEHrfH.jpg", + "length": "2h 33m" + }, + { + "title": "The Godfather: Part II", + "director": "Francis Ford Coppola", + "year": "1974", + "tags": "Drama", + "desc": "In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hek3koDUyRQk7FIhPXsa6mT2Zc3.jpg", + "length": "3h 22m" + }, + { + "title": "Ali: Fear Eats the Soul", + "director": "Rainer Werner Fassbinder", + "year": "1974", + "tags": "Romance", + "desc": "Emmi Kurowski, a cleaning lady, is lonely in her old age. Her husband died years ago, and her grown children offer little companionship. One night she goes to a bar frequented by Arab immigrants and strikes up a friendship with middle-aged mechanic Ali. Their relationship soon develops into something more, and Emmi's family and neighbors criticize their spontaneous marriage. Soon Emmi and Ali are forced to confront their own insecurities about their future.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5Oru4v8tRUN90JUuM6BNDJoetLt.jpg", + "length": "2h 33m" + }, + { + "title": "Bring Me the Head of Alfredo Garcia", + "director": "Sam Peckinpah", + "year": "1974", + "tags": "Action", + "desc": "An American bartender and his prostitute girlfriend go on a road trip through the Mexican underworld to collect a $1 million bounty on the head of a dead gigolo.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gRWVf3InNlIlFT3WB9MnFdOwcYQ.jpg", + "length": "2h 53m" + }, + { + "title": "Dog Day Afternoon", + "director": "Sidney Lumet", + "year": "1975", + "tags": "Crime", + "desc": "Based on the true story of would-be Brooklyn bank robbers John Wojtowicz and Salvatore Naturile. Sonny and Sal attempt a bank heist which quickly turns sour and escalates into a hostage situation and stand-off with the police. As Sonny's motives for the robbery are slowly revealed and things become more complicated, the heist turns into a media circus.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mavrhr0ig2aCRR8d48yaxtD5aMQ.jpg", + "length": "2h 5m" + }, + { + "title": "The Towering Inferno", + "director": "John Guillermin", + "year": "1974", + "tags": "Action", + "desc": "At the opening party of a colossal\u2014but poorly constructed\u2014skyscraper, a massive fire breaks out, threatening to destroy the tower and everyone in it.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mFM1GbrRrT3DWUFFo8koSITFnYe.jpg", + "length": "3h 45m" + }, + { + "title": "Mirror", + "director": "Gary Beydler", + "year": "1975", + "tags": "#Movie", + "desc": "Then the sun begins to set in the mirror and the entire screen erupts in violent explosions of orange lens flares. Slowly the background sky goes black leaving only the mirror to show twilight. Then everything is dark. This piece is similar to Hand Held Day. The endurance aspect is especially important because I am entirely visible.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lyUfqBpB3GlBeKSuwtutgV0tdXP.jpg", + "length": "0h 5m" + }, + { + "title": "One Flew Over the Cuckoo's Nest", + "director": "Milo\u0161 Forman", + "year": "1975", + "tags": "Drama", + "desc": "A petty criminal fakes insanity to serve his sentence in a mental ward rather than prison. He soon finds himself as a leader to the other patients\u2014and an enemy to the cruel, domineering nurse who runs the ward.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3jcbDmRFiQ83drXNOvRDeKHxS0C.jpg", + "length": "2h 13m" + }, + { + "title": "Jeanne Dielman 23, Quai Du Commerce 1080 Bruxelles", + "director": "Chantal Akerman", + "year": "1975", + "tags": "Drama", + "desc": "A lonely widowed housewife does her daily chores and takes care of her apartment where she lives with her teenage son, and turns the occasional trick to make ends meet. Slowly, her ritualized daily routines begin to fall apart.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yeL8c24oBUQSdms8f7GmRvx3DIZ.jpg", + "length": "3h 22m" + }, + { + "title": "The Rocky Horror Picture Show", + "director": "Jim Sharman", + "year": "1975", + "tags": "Comedy", + "desc": "Sweethearts Brad and Janet, stuck with a flat tire during a storm, discover the eerie mansion of Dr. Frank-N-Furter, a transvestite scientist. As their innocence is lost, Brad and Janet meet a houseful of wild characters, including a rocking biker and a creepy butler. Through elaborate dances and rock songs, Frank-N-Furter unveils his latest creation: a muscular man named 'Rocky'. Harriet then spawns in and says hello and the credits roll!", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3pyE6ZqDbuJi7zrNzzQzcKTWdmN.jpg", + "length": "2h 40m" + }, + { + "title": "Deewaar", + "director": "Yash Chopra", + "year": "1975", + "tags": "Action", + "desc": "Reflecting the tumultuous politics of the early \u201970s in India, Deewar tells the story of a pair of impoverished brothers who, after their family is betrayed by the misplaced idealism of their father, struggle to survive on the streets of Mumbai. They head for a showdown when one becomes a policeman, and the other becomes a criminal.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/alVHFaerbSgnuKhzSddJRNiCs8g.jpg", + "length": "3h 54m" + }, + { + "title": "Monty Python and the Holy Grail", + "director": "Terry Gilliam", + "year": "1975", + "tags": "Adventure", + "desc": "King Arthur, accompanied by his squire, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way, Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as \"it is a silly place\".", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nL8L8wdpxUf4NZW5PGB95WsKZue.jpg", + "length": "2h 31m" + }, + { + "title": "Barry Lyndon", + "director": "Stanley Kubrick", + "year": "1975", + "tags": "Drama", + "desc": "An Irish rogue uses his cunning and wit to work his way up the social classes of 18th century England, transforming himself from the humble Redmond Barry into the noble Barry Lyndon.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dOJtBSyI30wWc08UmyEKLsu4Rfk.jpg", + "length": "3h 5m" + }, + { + "title": "Fox and His Friends", + "director": "Rainer Werner Fassbinder", + "year": "1975", + "tags": "Drama", + "desc": "Fox, a former circus performer, wins the lottery of DM 500,000 and can now have the life and things that he has always wanted. While he wants to climb up the social ladder, it isn't without turmoil, and being torn between his old working class roots, and the shiny new facade of middle class consciousness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uYHNK7VycMOcD9Jv5qgjIdvDwgG.jpg", + "length": "2h 5m" + }, + { + "title": "India Song", + "director": "Marguerite Duras", + "year": "1975", + "tags": "Drama", + "desc": "In 1937 Calcutta, the wife of the French ambassador takes on many lovers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jUogZJ4zNrLTNr8sei75touASi8.jpg", + "length": "2h 55m" + }, + { + "title": "Picnic at Hanging Rock", + "director": "Peter Weir", + "year": "1975", + "tags": "Drama", + "desc": "In the early 1900s, Miranda attends a girls boarding school in Australia. One Valentine's Day, the school's typically strict headmistress treats the girls to a picnic field trip to an unusual but scenic volcanic formation called Hanging Rock. Despite rules against it, Miranda and several other girls venture off. It's not until the end of the day that the faculty realizes the girls and one of the teachers have disappeared mysteriously.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7BAXwmFN4pZDNb9N6kzmAAwdssi.jpg", + "length": "2h 55m" + }, + { + "title": "Manila in the Claws of Light", + "director": "Lino Brocka", + "year": "1975", + "tags": "Drama", + "desc": "Julio, a young fisherman from a provincial village, descends into social alienation as he arrives in Manila to search for his loved one.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iFM8bcQnyBPlzd0JItgWNn6TjT2.jpg", + "length": "2h 7m" + }, + { + "title": "Salo, or the 120 Days of Sodom", + "director": "Pier Paolo Pasolini", + "year": "1975", + "tags": "Drama", + "desc": "Four corrupted fascist libertines round up 9 teenage boys and girls and subject them to 120 days of sadistic physical, mental and sexual torture.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xnaDdiRfZlJaTf6JRc4in40eaeI.jpg", + "length": "2h 57m" + }, + { + "title": "Nashville", + "director": "Robert Altman", + "year": "1975", + "tags": "Drama", + "desc": "The intersecting stories of twenty-four characters\u2014from country star to wannabe to reporter to waitress\u2014connect to the music business in Nashville, Tennessee.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/twl4ovyjb8muFKvZmcCDzPR0hy1.jpg", + "length": "3h 40m" + }, + { + "title": "Cr\u00eda Cuervos", + "director": "Carlos Saura", + "year": "1976", + "tags": "Drama", + "desc": "Ana, an eight-year-old girl living in Madrid with her grandmother and two sisters, mourns the death of her mother.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hueMt6pkaV8nwVGwKP2uuiqF5DJ.jpg", + "length": "2h 45m" + }, + { + "title": "The Travelling Players", + "director": "Theo Angelopoulos", + "year": "1975", + "tags": "Drama", + "desc": "This expansive Greek drama follows a troupe of theater actors as they perform around their country during World War II. While the production that they put on is entitled \"Golfo the Shepherdess,\" the thespians end up echoing scenes from classic Greek tales in their own lives, as Elektra plots revenge on her mother for the death of her father, and seeks help from her brother, Orestes, a young anti-fascist rebel.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/o7e7bhYVYVJGCnxRqcvnYBeQ5dZ.jpg", + "length": "4h 42m" + }, + { + "title": "Jaws", + "director": "Steven Spielberg", + "year": "1975", + "tags": "Horror", + "desc": "When the seaside community of Amity finds itself under attack by a dangerous great white shark, the town's chief of police, a young marine biologist, and a grizzled hunter embark on a desperate quest to destroy the beast before it strikes again.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lxM6kqilAdpdhqUl2biYp5frUxE.jpg", + "length": "2h 4m" + }, + { + "title": "The Killing of a Chinese Bookie", + "director": "John Cassavetes", + "year": "1976", + "tags": "Thriller", + "desc": "Cosmo Vittelli, the proprietor of a sleazy, low-rent Hollywood cabaret, has a real affection for the women who strip in his peepshows and the staff who keep up his dingy establishment. He also has a major gambling problem that has gotten him in trouble before. When Cosmo loses big-time at an underground casino run by mobster Mort, he isn't able to pay up. Mort then offers Cosmo the chance to pay back his debt by knocking off a pesky, Mafia-protected bookie.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/clQgmbmBOxvA2NepvijoL7YUCvr.jpg", + "length": "2h 15m" + }, + { + "title": "Carrie", + "director": "Brian De Palma", + "year": "1976", + "tags": "Horror", + "desc": "An awkward, telekinetic teenage girl's lonely life is dominated by relentless bullying at school and an oppressive religious fanatic mother at home. When her tormentors pull a humiliating prank at the senior prom, she unleashes a horrifying chaos on everyone, leaving nothing but destruction in her wake.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uc3OvgmbnYaS5Y0BOjSmC1EmSz1.jpg", + "length": "2h 38m" + }, + { + "title": "The Outlaw Josey Wales", + "director": "Clint Eastwood", + "year": "1976", + "tags": "Western", + "desc": "After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/92BZIFPbyCPNhExyFScxA3xF1dy.jpg", + "length": "2h 15m" + }, + { + "title": "All the President's Men", + "director": "Alan J. Pakula", + "year": "1976", + "tags": "Drama", + "desc": "During the 1972 elections, two reporters' investigation sheds light on the controversial Watergate scandal that compels President Nixon to resign from his post.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cPtSHR7D2WGsDBfnC5DxV927hKn.jpg", + "length": "2h 18m" + }, + { + "title": "Rocky", + "director": "John G. Avildsen", + "year": "1976", + "tags": "Drama", + "desc": "An uneducated collector for a Philadelphia loan shark is given a once-in-a-lifetime opportunity to fight against the world heavyweight boxing champion.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cqxg1CihGR5ge0i1wYXr4Rdeppu.jpg", + "length": "2h 0m" + }, + { + "title": "Taxi Driver", + "director": "Martin Scorsese", + "year": "1976", + "tags": "Crime", + "desc": "A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feed his urge for violent action.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ekstpH614fwDX8DUln1a2Opz0N8.jpg", + "length": "2h 54m" + }, + { + "title": "Network", + "director": "Sidney Lumet", + "year": "1976", + "tags": "Drama", + "desc": "When veteran anchorman Howard Beale is forced to retire his 25-year post because of his age, he announces to viewers that he will kill himself during his farewell broadcast. Network executives rethink their decision when his fanatical tirade results in a spike in ratings.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qZomlHsaALUtkFeMDwdYmwS2Pbo.jpg", + "length": "2h 2m" + }, + { + "title": "The Ascent", + "director": "Larisa Shepitko", + "year": "1977", + "tags": "Drama", + "desc": "Two Soviet partisans leave their starving band to get supplies from a nearby farm. The Germans have reached the farm first, so the pair must go on a journey deep into occupied territory, a voyage that will also take them deep into their souls.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nbGyTnH1TREKgZXLxEJNnDVohYC.jpg", + "length": "2h 51m" + }, + { + "title": "In the Realm of the Senses", + "director": "Nagisa \u014cshima", + "year": "1976", + "tags": "Drama", + "desc": "A passionate telling of the story of Sada Abe, a woman whose affair with her master led to an obsessive and ultimately destructive sexual relationship.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/AiFQbgjgSXWPfbi9iIYT39iXWMW.jpg", + "length": "2h 45m" + }, + { + "title": "1900", + "director": "Bernardo Bertolucci", + "year": "1976", + "tags": "Drama", + "desc": "The epic tale of a class struggle in twentieth century Italy, as seen through the eyes of two childhood friends on opposing sides.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/deWzfCC59tmtEQvKSmflDe14FvR.jpg", + "length": "5h 16m" + }, + { + "title": "The Man Who Fell to Earth", + "director": "Nicolas Roeg", + "year": "1976", + "tags": "Drama", + "desc": "Thomas Jerome Newton is an alien who has come to Earth in search of water to save his home planet. Aided by lawyer Oliver Farnsworth, Thomas uses his knowledge of advanced technology to create profitable inventions. While developing a method to transport water, Thomas meets Mary-Lou, a quiet hotel clerk, and begins to fall in love with her. Just as he is ready to leave Earth, Thomas is intercepted by the U.S. government, and his entire plan is threatened.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gwmPVphE5DMFFGXGMhfEFyxOOYj.jpg", + "length": "2h 18m" + }, + { + "title": "Star Wars", + "director": "George Lucas", + "year": "1977", + "tags": "Adventure", + "desc": "Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6FfCtAuVAW8XJjZ7eWeLibRLWTw.jpg", + "length": "2h 1m" + }, + { + "title": "Close Encounters of the Third Kind", + "director": "Steven Spielberg", + "year": "1977", + "tags": "Science Fiction", + "desc": "After an encounter with UFOs, an electricity linesman feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4zfedS25uMAhgm6YQhc9bhKHbLl.jpg", + "length": "2h 15m" + }, + { + "title": "The Last Wave", + "director": "Peter Weir", + "year": "1977", + "tags": "Mystery", + "desc": "Australian lawyer David Burton agrees with reluctance to defend a group of Aboriginal people charged with murdering one of their own. He suspects the victim was targeted for violating a tribal taboo, but the defendants deny any tribal association. Burton, plagued by apocalyptic visions of water, slowly realizes danger may come from his own involvement with the Aboriginal people and their prophecies.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7UwdJ0EMXirUuNFaohfK023Nuyr.jpg", + "length": "2h 46m" + }, + { + "title": "Annie Hall", + "director": "Woody Allen", + "year": "1977", + "tags": "Comedy", + "desc": "New York comedian Alvy Singer falls in love with the ditsy Annie Hall.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jj46Biz1WYQZoVZfXxeT9u4XRrS.jpg", + "length": "2h 33m" + }, + { + "title": "Last Chants for a Slow Dance", + "director": "Jon Jost", + "year": "1977", + "tags": "Drama", + "desc": "A man who is dissatisfied with his family life leaves home for weeks at a time, drifting from town to town.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oeUAQdO6q4C7FvwY9Uj4kiFCORh.jpg", + "length": "2h 30m" + }, + { + "title": "Stroszek", + "director": "Werner Herzog", + "year": "1977", + "tags": "Drama", + "desc": "Bruno Stroszek is released from prison and warned to stop drinking. He has few skills and fewer expectations: with a glockenspiel and an accordion, he ekes out a living as a street musician. He befriends Eva, a prostitute down on her luck and they join his neighbor, Scheitz, an elderly eccentric, when he leaves Germany to live in Wisconsin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wDq9ytRxoVpICRcx1BvagmXhd4t.jpg", + "length": "2h 47m" + }, + { + "title": "Man of Marble", + "director": "Andrzej Wajda", + "year": "1977", + "tags": "Drama", + "desc": "A young Polish filmmaker sets out to find out what happened to Mateusz Birkut, a bricklayer who became a propaganda hero in the 1950s but later fell out of favor and disappeared.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v0Mf7ZoPiStDIsZzxdcnCDuIGnf.jpg", + "length": "3h 33m" + }, + { + "title": "Saturday Night Fever", + "director": "John Badham", + "year": "1977", + "tags": "Music", + "desc": "Tony spends his Saturdays at a disco where his stylish moves raise his popularity among the patrons. But his life outside the disco is not easy and things change when he gets attracted to Stephanie.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ylA7E5Md21aqgzxbwa2dFxX8LKV.jpg", + "length": "2h 59m" + }, + { + "title": "Killer of Sheep", + "director": "Charles Burnett", + "year": "1978", + "tags": "Drama", + "desc": "An African-American man working at a slaughterhouse in the Watts area of Los Angeles leads a dissatisfied and listless existence.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/p5U8FiIoIHmVf1nLr6XDbqbby3w.jpg", + "length": "1h 20m" + }, + { + "title": "Eraserhead", + "director": "David Lynch", + "year": "1977", + "tags": "Horror", + "desc": "First time father Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child. David Lynch arrived on the scene in 1977, almost like a mystical UFO gracing the landscape of LA with its enigmatic radiance. His inaugural work, \"Eraserhead\" (1977), stood out as a cinematic anomaly, painting a surreal narrative of a young man navigating a dystopian, industrialized America, grappling not only with his tumultuous home life but also contending with an irate girlfriend and a mutant child.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mxveW3mGVc0DzLdOmtkZsgd7c3B.jpg", + "length": "1h 29m" + }, + { + "title": "Ceddo", + "director": "Ousmane Semb\u00e8ne", + "year": "1977", + "tags": "Drama", + "desc": "When King Demba War sides with the Muslims, the Ceddo kidnap his daughter, Princess Dior Yacine, to protest their forcible conversion to Islam.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wWnL07ozLePVcptd8QgnJeSuFv4.jpg", + "length": "2h 52m" + }, + { + "title": "The American Friend", + "director": "Wim Wenders", + "year": "1977", + "tags": "Drama", + "desc": "Tom Ripley, an American who deals in forged art, is slighted at an auction in Hamburg by picture framer Jonathan Zimmerman. When Ripley is asked by gangster Raoul Minot to kill a rival, he suggests Zimmerman, and the two, exploiting Zimmerman's terminal illness, coerce him into being a hitman.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jHVe5EHDFj9ac2F2aU86sWTGKnn.jpg", + "length": "2h 5m" + }, + { + "title": "The Hills Have Eyes", + "director": "Wes Craven", + "year": "1977", + "tags": "Horror", + "desc": "Taking an ill-advised detour en route to California, the Carter family soon run into trouble when their RV breaks down in the middle of the desert. Stranded, they find themselves at the mercy of monstrous cannibals lurking in the surrounding hills.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1G2DBIEkoS0JdCiOFIeR3mD8ROE.jpg", + "length": "2h 30m" + }, + { + "title": "Soldier of Orange", + "director": "Paul Verhoeven", + "year": "1977", + "tags": "Drama", + "desc": "The lives of Erik Lanshof and five of his closest friends take different paths when the German army invades the Netherlands in 1940: fight and resistance, fear and resignation, collaboration and high treason.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kdlk0cz97i8Fyb1ZFpp9tokHxGD.jpg", + "length": "2h 28m" + }, + { + "title": "Suspiria", + "director": "Dario Argento", + "year": "1977", + "tags": "Horror", + "desc": "An American newcomer to a prestigious German ballet academy comes to realize that the school is a front for something sinister amid a series of grisly murders.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5ya8jTbNZTrCFUx9OwpNBjCivXY.jpg", + "length": "2h 39m" + }, + { + "title": "Sleeping Dogs", + "director": "Roger Donaldson", + "year": "1977", + "tags": "Action", + "desc": "Recluse Smith is drawn into a revolutionary struggle between guerrillas and right-wingers in New Zealand. Implicated in a murder and framed as a revolutionary conspirator, Smith tries to maintain an attitude of non-violence while caught between warring factions.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fv9zA2OQktTciDFmBJ3xw8k8UYg.jpg", + "length": "2h 47m" + }, + { + "title": "The Chant of Jimmie Blacksmith", + "director": "Fred Schepisi", + "year": "1978", + "tags": "Crime", + "desc": "The true story of a part Aboriginal man who finds the pressure of adapting to white culture intolerable, and as a result snaps in a violent and horrific manner.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rbyEtX16Tk58WMeii5rVEfB1OUm.jpg", + "length": "2h 53m" + }, + { + "title": "The Five Venoms", + "director": "Chang Cheh", + "year": "1978", + "tags": "Action", + "desc": "A dying master sends his last student to check up on five former pupils, who each know a special style of kung-fu.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z446TqbbOb7emtN1S8iOrwTHz7Y.jpg", + "length": "2h 42m" + }, + { + "title": "The Tree of Wooden Clogs", + "director": "Ermanno Olmi", + "year": "1978", + "tags": "Drama", + "desc": "Peasant life in a feudal farm in rural Italy at the end of the 19th century.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8lxoodi0CHr8KWBi7XKlgRsGlXG.jpg", + "length": "3h 7m" + }, + { + "title": "The Deer Hunter", + "director": "Michael Cimino", + "year": "1978", + "tags": "Drama", + "desc": "A group of working-class friends decide to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bbGtogDZOg09bm42KIpCXUXICkh.jpg", + "length": "3h 3m" + }, + { + "title": "Grease", + "director": "Randal Kleiser", + "year": "1978", + "tags": "Romance", + "desc": "Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7BRFXRpUL6cHECaBvKmOd9K6IBc.jpg", + "length": "2h 50m" + }, + { + "title": "Days of Heaven", + "director": "Terrence Malick", + "year": "1978", + "tags": "Drama", + "desc": "In 1916, a Chicago steel worker accidentally kills his supervisor and flees to the Texas panhandle with his girlfriend and little sister to work harvesting wheat in the fields of a stoic farmer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/siE1XQ544MLO27geLYDbUDy3oTt.jpg", + "length": "2h 34m" + }, + { + "title": "Dawn of the Dead", + "director": "George A. Romero", + "year": "1978", + "tags": "Horror", + "desc": "During an ever-growing epidemic of zombies that have risen from the dead, two Philadelphia SWAT team members, a traffic reporter, and his television-executive girlfriend seek refuge in a secluded shopping mall.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/h6aVbUsiJB3Le1xrhyZXsXZOI3h.jpg", + "length": "2h 7m" + }, + { + "title": "The 36th Chamber of Shaolin", + "director": "Lau Kar-leung", + "year": "1978", + "tags": "Action", + "desc": "The anti-Ching patriots, under the guidance of Ho Kuang-han, have secretly set up their base in Canton, disguised as school masters. During a brutal Manchu attack, Lui manages to escape, and devotes himself to learning the martial arts in order to seek revenge.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hv29eb8g7iCDr0WgAcDdwZinuoY.jpg", + "length": "2h 55m" + }, + { + "title": "Up in Smoke", + "director": "Lou Adler", + "year": "1978", + "tags": "Comedy", + "desc": "An unemployed pot-smoking slacker and amateur drummer, Anthony Stoner ditches his strict parents and hits the road, eventually meeting kindred spirit Pedro de Pacas. While the drug-ingesting duo is soon arrested for possession of marijuana, Anthony and Pedro get released on a technicality, allowing them to continue their many misadventures and ultimately compete in a rock band contest, where they perform the raucous tune \"Earache My Eye.\"", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lKXINU3ApbhFPQJ3pqgMzGPCYnH.jpg", + "length": "1h 26m" + }, + { + "title": "Halloween", + "director": "John Carpenter", + "year": "1978", + "tags": "Horror", + "desc": "Fifteen years after murdering his sister on Halloween Night 1963, Michael Myers escapes from a mental hospital and returns to the small town of Haddonfield, Illinois to kill again.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wijlZ3HaYMvlDTPqJoTCWKFkCPU.jpg", + "length": "2h 31m" + }, + { + "title": "The Marriage of Maria Braun", + "director": "Rainer Werner Fassbinder", + "year": "1979", + "tags": "Drama", + "desc": "Maria marries a young soldier in the last days of World War II, only for him to go missing in the war. She must rely on her beauty and ambition to navigate the difficult post-war years alone.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tXjZEzlf4WQwZ4Dt53gXeJVuO7p.jpg", + "length": "2h 0m" + }, + { + "title": "Real Life", + "director": "Albert Brooks", + "year": "1979", + "tags": "Comedy", + "desc": "A pushy, narcissistic filmmaker persuades a Phoenix family to let him and his crew film their everyday lives, in the manner of the ground-breaking PBS series \"An American Family\".", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ssHyLpaGqU46AlGkGJTxKRD5xkU.jpg", + "length": "2h 39m" + }, + { + "title": "My Brilliant Career", + "director": "Gillian Armstrong", + "year": "1979", + "tags": "Drama", + "desc": "A young woman who is determined to maintain her independence finds herself at odds with her family who wants her to tame her wild side and get married.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1EbZ9lEaO5vUmAdw7Yn2JbYXcTe.jpg", + "length": "2h 40m" + }, + { + "title": "Stalker", + "director": "Bradley Haag", + "year": "1979", + "tags": "#Movie", + "desc": "Colfax Avenue is the longest commercial street in America. Tonight, it's the deadliest. Ten years ago, Penny Foster killed three people on Colfax Avenue while on her way home from work.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dHt1CHSmio0HF8vjDiW7XOEjJer.jpg", + "length": "0h 5m" + }, + { + "title": "Alien", + "director": "Ridley Scott", + "year": "1979", + "tags": "Horror", + "desc": "During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vfrQk5IPloGg1v9Rzbh2Eg3VGyM.jpg", + "length": "2h 57m" + }, + { + "title": "Breaking Away", + "director": "Peter Yates", + "year": "1979", + "tags": "Drama", + "desc": "Dave, nineteen, has just graduated high school, with his three friends: the comical Cyril, the warm hearted but short-tempered Moocher, and the athletic, spiteful but good-hearted Mike. Now, Dave enjoys racing bikes and hopes to race the Italians one day, and even takes up the Italian culture, much to his friends and parents annoyance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k7b5GsVJK1hfdwoYqcczN9pBba6.jpg", + "length": "2h 40m" + }, + { + "title": "The Tin Drum", + "director": "Volker Schl\u00f6ndorff", + "year": "1979", + "tags": "Drama", + "desc": "Oskar Matzerath is a very unusual boy. Refusing to leave the womb until promised a tin drum by his mother, Agnes, Oskar is reluctant to enter a world he sees as filled with hypocrisy and injustice, and vows on his third birthday to never grow up. Miraculously, he gets his wish. As the Nazis rise to power in Danzig, Oskar wills himself to remain a child, beating his tin drum incessantly and screaming in protest at the chaos surrounding him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tm408GMyQqfqFJ7MKCkwc5uQ3wi.jpg", + "length": "3h 42m" + }, + { + "title": "All That Jazz", + "director": "Bob Fosse", + "year": "1979", + "tags": "Drama", + "desc": "Joe Gideon is at the top of the heap, one of the most successful directors and choreographers in musical theater. But he can feel his world slowly collapsing around him - his obsession with work has almost destroyed his personal life, and only his bottles of pills keep him going.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/culCEdj4srLljefgn4XKd6k3C5t.jpg", + "length": "2h 3m" + }, + { + "title": "Being There", + "director": "Hal Ashby", + "year": "1979", + "tags": "Comedy", + "desc": "A simple-minded gardener named Chance has spent all his life in the Washington D.C. house of an old man. When the man dies, Chance is put out on the street with no knowledge of the world except what he has learned from television.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3RO3jbCKEey2T9bYFkYt9xpwen9.jpg", + "length": "2h 10m" + }, + { + "title": "Kramer vs. Kramer", + "director": "Robert Benton", + "year": "1979", + "tags": "Drama", + "desc": "Ted Kramer is a career man for whom his work comes before his family. His wife Joanna cannot take this anymore, so she decides to leave him. Ted is now faced with the tasks of housekeeping and taking care of himself and their young son Billy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6IVQjDTbr7pXx2AR8jovbYwpyiF.jpg", + "length": "2h 45m" + }, + { + "title": "Life of Brian", + "director": "Terry Jones", + "year": "1979", + "tags": "Comedy", + "desc": "Brian Cohen is an average young Jewish man, but through a series of ridiculous events, he gains a reputation as the Messiah. When he's not dodging his followers or being scolded by his shrill mother, the hapless Brian has to contend with the pompous Pontius Pilate and acronym-obsessed members of a separatist movement. Rife with Monty Python's signature absurdity, the tale finds Brian's life paralleling Biblical lore, albeit with many more laughs.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lSSA64WF0M0BXnjwr2quMh6shCl.jpg", + "length": "2h 34m" + }, + { + "title": "Apocalypse Now", + "director": "Francis Ford Coppola", + "year": "1979", + "tags": "Drama", + "desc": "At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \"does not exist, nor will it ever exist.\" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gQB8Y5RCMkv2zwzFHbUJX3kAhvA.jpg", + "length": "2h 27m" + }, + { + "title": "The Jerk", + "director": "Carl Reiner", + "year": "1979", + "tags": "Comedy", + "desc": "After discovering he's not really black like the rest of his family, likable dimwit Navin Johnson sets off on a hilarious misadventure that takes him from rags to riches and back again. The slaphappy jerk strikes it rich, but life in the fast lane isn't all it's cracked up to be and, in the end, all that really matters to Johnson is his true love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vKfBXwcmndTdgUXlhVJWEVCi07A.jpg", + "length": "2h 34m" + }, + { + "title": "The Muppet Movie", + "director": "James Frawley", + "year": "1979", + "tags": "Comedy", + "desc": "A Hollywood agent persuades Kermit the Frog to pursue a career in Hollywood. On his way there he meets his future muppet crew while being chased by the desperate owner of a frog-leg restaurant!", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8LUjnIW5ph6pHoXDE3Zg4iVi6BV.jpg", + "length": "2h 37m" + }, + { + "title": "Manhattan", + "director": "Woody Allen", + "year": "1979", + "tags": "Comedy", + "desc": "Manhattan explores how the life of a middle-aged television writer dating a teenage girl is further complicated when he falls in love with his best friend's mistress.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k4eT3EvfxW1L9Wmt04UqJqCvCR6.jpg", + "length": "2h 36m" + }, + { + "title": "Mad Max", + "director": "George Miller", + "year": "1979", + "tags": "Adventure", + "desc": "In the ravaged near-future, a savage motorcycle gang rules the road. Terrorizing innocent civilians while tearing up the streets, the ruthless gang laughs in the face of a police force hell-bent on stopping them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5LrI4GiCSrChgkdskVZiwv643Kg.jpg", + "length": "2h 31m" + }, + { + "title": "Nosferatu the Vampyre", + "director": "Werner Herzog", + "year": "1979", + "tags": "Drama", + "desc": "Jonathan Harker, a real estate agent, goes to Transylvania to visit the mysterious Count Dracula and formalize the purchase of a property in Wismar. Once Jonathan is caught under his evil spell, Dracula travels to Wismar where he meets the beautiful Lucy, Jonathan's wife, while a plague spreads through the town, now ruled by death.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jHKzGYwf7P34vz8MhJBTN6cnaYD.jpg", + "length": "2h 47m" + }, + { + "title": "Christ Stopped at Eboli", + "director": "Francesco Rosi", + "year": "1979", + "tags": "Drama", + "desc": "In the fascist Italy of 1935, a painter trained as a doctor is exiled to a remote region near Eboli. Over time, he learns to appreciate the beauty and wisdom of the peasants, and to overcome his isolation.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gHcB9EFbBQfaJNPbMjcsfmNuLMt.jpg", + "length": "4h 40m" + }, + { + "title": "Ordinary People", + "director": "Robert Redford", + "year": "1980", + "tags": "Drama", + "desc": "Beth, Calvin, and their son Conrad are living in the aftermath of the death of the other son. Conrad is overcome by grief and misplaced guilt to the extent of a suicide attempt. He is in therapy. Beth had always preferred his brother and is having difficulty being supportive to Conrad. Calvin is trapped between the two trying to hold the family together.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kPt2AQiSP39g3I1TtAnjSGQwN9S.jpg", + "length": "2h 4m" + }, + { + "title": "Atlantic City", + "director": "Louis Malle", + "year": "1980", + "tags": "Crime", + "desc": "In a corrupt city, a small-time gangster and the estranged wife of a pot dealer find themselves thrown together in an escapade of love, money, drugs and danger.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vOc2B27bR7CtNKq7tL4RAsiF3WP.jpg", + "length": "2h 44m" + }, + { + "title": "The Last Metro", + "director": "Fran\u00e7ois Truffaut", + "year": "1980", + "tags": "Drama", + "desc": "In occupied Paris, an actress married to a Jewish theater owner must keep him hidden from the Nazis while doing both of their jobs.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/t8KMFg9PiD9GSIHXlzast2WhZex.jpg", + "length": "2h 11m" + }, + { + "title": "The Shining", + "director": "Stanley Kubrick", + "year": "1980", + "tags": "Horror", + "desc": "Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nRj5511mZdTl4saWEPoj9QroTIu.jpg", + "length": "2h 24m" + }, + { + "title": "The Empire Strikes Back", + "director": "Irvin Kershner", + "year": "1980", + "tags": "Adventure", + "desc": "The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nNAeTmF4CtdSgMDplXTDPOpYzsX.jpg", + "length": "2h 4m" + }, + { + "title": "The Elephant Man", + "director": "David Lynch", + "year": "1980", + "tags": "Drama", + "desc": "A Victorian surgeon rescues a heavily disfigured man being mistreated by his \"owner\" as a side-show freak. Behind his monstrous fa\u00e7ade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3SInR81qnXjY7Or5qXyiQLmWfEh.jpg", + "length": "2h 4m" + }, + { + "title": "The Big Red One", + "director": "Samuel Fuller", + "year": "1980", + "tags": "Drama", + "desc": "A veteran sergeant of World War I leads a squad in World War II, always in the company of the survivor Pvt. Griff, the writer Pvt. Zab, the Sicilian Pvt. Vinci and Pvt. Johnson, in Vichy French Africa, Sicily, D-Day at Omaha Beach, Belgium and France, and ending in a concentration camp in Czechoslovakia where they face the true horror of war.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/h0VcqQ3z1RroKk7WtiW0E6DDho2.jpg", + "length": "2h 53m" + }, + { + "title": "Loulou", + "director": "Maurice Pialat", + "year": "1980", + "tags": "Drama", + "desc": "A bored wife leaves her husband for an unemployed, petty criminal.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gudzcFDfwOSJflUDWgbA50ahILS.jpg", + "length": "2h 46m" + }, + { + "title": "Airplane!", + "director": "Jerry Zucker", + "year": "1980", + "tags": "Comedy", + "desc": "An ex-fighter pilot forced to take over the controls of an airliner when the flight crew succumbs to food poisoning.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7Q3efxd3AF1vQjlSxnlerSA7RzN.jpg", + "length": "1h 28m" + }, + { + "title": "Raging Bull", + "director": "Martin Scorsese", + "year": "1980", + "tags": "Drama", + "desc": "The life of boxer Jake LaMotta, whose violence and temper that led him to the top in the ring destroyed his life outside of it.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1WV7WlTS8LI1L5NkCgjWT9GSW3O.jpg", + "length": "2h 9m" + }, + { + "title": "Raiders of the Lost Ark", + "director": "Steven Spielberg", + "year": "1981", + "tags": "Adventure", + "desc": "When Dr. Indiana Jones \u2013 the tweed-suited professor who just happens to be a celebrated archaeologist \u2013 is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ceG9VzoRAVGwivFU403Wc3AHRys.jpg", + "length": "2h 55m" + }, + { + "title": "Das Boot", + "director": "Wolfgang Petersen", + "year": "1981", + "tags": "Drama", + "desc": "A German submarine hunts allied ships during the Second World War, but it soon becomes the hunted. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/spE9nbdqhoKoTaCNp4H9Tj6Xcrm.jpg", + "length": "2h 30m" + }, + { + "title": "Gallipoli", + "director": "Peter Weir", + "year": "1981", + "tags": "War", + "desc": "As World War I rages, brave and youthful Australians Archy and Frank\u2014both agile runners\u2014become friends and enlist in the Australian and New Zealand Army Corps together. They later find themselves part of the Dardanelles Campaign on the Gallipoli peninsula, a brutal eight-month conflict which pit the British and their allies against the Ottoman Empire and left over 500,000 men dead.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/un7VCqTmjrq3u75mQ204a8tofD4.jpg", + "length": "2h 52m" + }, + { + "title": "Chariots of Fire", + "director": "Hugh Hudson", + "year": "1981", + "tags": "Drama", + "desc": "In the class-obsessed and religiously divided UK of the early 1920s, two determined young runners train for the 1924 Paris Olympics. Eric Liddell, a devout Christian born to Scottish missionaries in China, sees running as part of his worship of God's glory and refuses to train or compete on the Sabbath. Harold Abrahams overcomes anti-Semitism and class bias, but neglects his beloved sweetheart in his single-minded quest.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qnRaum8k0HqGRml2i7OawFqUtEb.jpg", + "length": "2h 4m" + }, + { + "title": "Body Heat", + "director": "Lawrence Kasdan", + "year": "1981", + "tags": "Crime", + "desc": "In the midst of a searing Florida heat wave, a woman convinces her lover, a small-town lawyer, to murder her rich husband.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5LipPcaW1J9IjAP7TOTesw8OcMS.jpg", + "length": "2h 53m" + }, + { + "title": "Reds", + "director": "Warren Beatty", + "year": "1981", + "tags": "Drama", + "desc": "An account of the revolutionary years of the legendary American journalist John Reed, who shared his adventurous professional life with his radical commitment to the socialist revolution in Russia, his dream of spreading its principles among the members of the American working class, and his troubled romantic relationship with the writer Louise Bryant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3jOs4aWI7XSVIEaF8KMojNre7A7.jpg", + "length": "3h 15m" + }, + { + "title": "An American Werewolf in London", + "director": "John Landis", + "year": "1981", + "tags": "Comedy", + "desc": "American tourists David and Jack are savaged by an unidentified vicious animal whilst hiking on the Yorkshire Moors. Retiring to the home of a beautiful nurse to recuperate, David soon experiences disturbing changes to his mind and body.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hVEqUASJmCQaolkKFEySCHZ8uKG.jpg", + "length": "2h 37m" + }, + { + "title": "Three Brothers", + "director": "Francesco Rosi", + "year": "1981", + "tags": "Drama", + "desc": "In a farmhouse in southern Italy, an old woman dies. Her husband summons their sons: from Rome, Raffaele, a judge facing a political case for which he risks assassination; from Naples, the religious and ideological Rocco, a counselor at a correctional institute for boys; from Turin, Nicola, a factory worker involved in labor disputes. Once home, each encounters the past and engages in reveries of what may come.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xIkugEeaf3xhkwJhjExVPK3oOvw.jpg", + "length": "2h 53m" + }, + { + "title": "Man of Iron", + "director": "Andrzej Wajda", + "year": "1981", + "tags": "Drama", + "desc": "In Warsaw in 1980, the Communist Party sends disgruntled radio reporter Winkel to Gda\u0144sk to dig up dirt on the shipyard strikers - particularly on Maciek Tomczyk, an independent labour union leader whose father was killed in the December 1970 protests. Posing as sympathetic, Winkel interviews the people surrounding Tomczyk, including his detained wife, Agnieszka.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/22wNUqKyz2m6wzAt31f26H8Y433.jpg", + "length": "2h 27m" + }, + { + "title": "The Evil Dead", + "director": "Sam Raimi", + "year": "1981", + "tags": "Horror", + "desc": "Five vacationing college students unwittingly resurrect demonic spirits through the Book of the Dead.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uYxQ6xhP3WjqPZtxyAOnZQWnZqn.jpg", + "length": "1h 25m" + }, + { + "title": "Diner", + "director": "Barry Levinson", + "year": "1982", + "tags": "Comedy", + "desc": "Set in 1959, Diner shows how five young men resist their adulthood and seek refuge in their beloved Diner. The mundane, childish, and titillating details of their lives are shared. But the golden moments pass, and the men shoulder their responsibilities, leaving the Diner behind.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2vKIdZ6JkFIzcQeaHg3xtdvOyRO.jpg", + "length": "2h 50m" + }, + { + "title": "Diva", + "director": "Jean-Jacques Beineix", + "year": "1981", + "tags": "Action", + "desc": "Jules, a young Parisian postman, secretly records a concert performance given by the opera singer Cynthia Hawkins, whom he idolises. The following day, Jules runs into a woman who is being pursued by armed thugs. Before she is killed, the woman slips an audio cassette into his mail bag...", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/L6ZrY3vU8o5GhRgQGV2MZ9AhmA.jpg", + "length": "2h 57m" + }, + { + "title": "Too Early/Too Late", + "director": "Jean-Marie Straub", + "year": "1981", + "tags": "Documentary", + "desc": "Inspired by a letter by Friedrich Engels and a 1974 account of two militant Marxist writers who had been imprisoned by the Nasser regime, Straub-Huillet filmed this film in France and Egypt during 1980. They reflect on Egypt\u2019s history of peasant struggle and liberation from Western colonization, and link it to class tensions in France shortly before the Revolution of 1789, quoting texts by Engels as well as the pioneering nonfiction film Workers Leaving the Lumi\u00e8re Factory (1895).", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z5rox0Nys65RiWAI3FKBXK5If60.jpg", + "length": "2h 40m" + }, + { + "title": "Fast Times at Ridgemont High", + "director": "Amy Heckerling", + "year": "1982", + "tags": "Comedy", + "desc": "Based on the real-life adventures chronicled by Cameron Crowe, Fast Times follows a group of high school students growing up in Southern California. Stacy Hamilton and Mark Ratner are looking for a love interest, and are helped along by their older classmates, Linda Barrett and Mike Damone, respectively. At the center of the film is Jeff Spicoli, a perpetually stoned surfer who faces-off with the resolute Mr. Hand\u2014a man convinced that everyone is on dope.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/s1DA8H7qwoOcAEhow2rCzuQtpuO.jpg", + "length": "2h 30m" + }, + { + "title": "E.T. the Extra-Terrestrial", + "director": "Steven Spielberg", + "year": "1982", + "tags": "Science Fiction", + "desc": "An alien is left behind on Earth and saved by the 10-year-old Elliot who decides to keep him hidden in his home. While a task force hunts for the extra-terrestrial, Elliot, his brother, and his little sister Gertie form an emotional bond with their new friend, and try to help him find his way home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/an0nD6uq6byfxXCfk6lQBzdL2J1.jpg", + "length": "2h 55m" + }, + { + "title": "The Thing", + "director": "John Carpenter", + "year": "1982", + "tags": "Horror", + "desc": "In the winter of 1982, a twelve-man research team at a remote Antarctic research station discovers an alien buried in the snow for over 100,000 years. Soon unfrozen, the form-changing creature wreaks havoc, creates terror... and becomes one of them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tzGY49kseSE9QAKk47uuDGwnSCu.jpg", + "length": "2h 49m" + }, + { + "title": "Poltergeist", + "director": "Tobe Hooper", + "year": "1982", + "tags": "Horror", + "desc": "Upon realizing that something truly evil haunts his home, Steve Freeling calls in a team of parapsychologists to help before it's too late.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xPazCcKp62IshnLVf9BLAjf9vgC.jpg", + "length": "2h 54m" + }, + { + "title": "Blade Runner", + "director": "Ridley Scott", + "year": "1982", + "tags": "Science Fiction", + "desc": "In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/63N9uy8nd9j7Eog2axPQ8lbr3Wj.jpg", + "length": "2h 58m" + }, + { + "title": "Tootsie", + "director": "Sydney Pollack", + "year": "1982", + "tags": "Comedy", + "desc": "When struggling, out of work actor Michael Dorsey secretly adopts a female alter ego - Dorothy Michaels - in order to land a part in a daytime drama, he unwittingly becomes a feminist icon and ends up in a romantic pickle.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/x9cBsqf64j8e5a8PwThT3I6sHFK.jpg", + "length": "2h 56m" + }, + { + "title": "Yol", + "director": "Y\u0131lmaz G\u00fcney", + "year": "1982", + "tags": "Drama", + "desc": "When five Kurdish prisoners are granted one week's home leave, they find to their dismay that they face continued oppression outside of prison from their families, the culture, and the government.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gdfwFYyhLhoMSlfXkNPyqIlmKoI.jpg", + "length": "2h 4m" + }, + { + "title": "Fitzcarraldo", + "director": "Werner Herzog", + "year": "1982", + "tags": "Drama", + "desc": "Fitzcarraldo is a dreamer who plans to build an opera house in Iquitos, in the Peruvian Amazon, so, in order to finance his project, he embarks on an epic adventure to collect rubber, a very profitable product, in a remote and unexplored region of the rainforest.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oBCnYEKcg1rMhr5JjDnrRpilvDd.jpg", + "length": "3h 37m" + }, + { + "title": "Gandhi", + "director": "Richard Attenborough", + "year": "1982", + "tags": "Drama", + "desc": "In the early years of the 20th century, Mohandas K. Gandhi, a British-trained lawyer, forsakes all worldly possessions to take up the cause of Indian independence. Faced with armed resistance from the British government, Gandhi adopts a policy of 'passive resistance', endeavouring to win freedom for his people without resorting to bloodshed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rOXftt7SluxskrFrvU7qFJa5zeN.jpg", + "length": "3h 11m" + }, + { + "title": "The Night of the Shooting Star", + "director": "Paolo Taviani", + "year": "1982", + "tags": "War", + "desc": "The Night of San Lorenzo, the night of the shooting stars, is the night when dreams come true in Italian folklore. In 1944, a group of Italians flee their town after hearing rumours that the Nazis plan to blow it up and that the Americans are about to arrive to liberate them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u9QgkfHj90rr33KhjLlk5tr7bVg.jpg", + "length": "2h 45m" + }, + { + "title": "A Question of Silence", + "director": "Marleen Gorris", + "year": "1982", + "tags": "Drama", + "desc": "When three women with no previous acquaintance kill a male shopkeeper in the middle of the day, the female psychiatrist assigned to the case sets out to understand why.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/f41lfuAx7RvThgQRA7ZlLIbg73D.jpg", + "length": "2h 32m" + }, + { + "title": "Fanny & Aleder", + "director": "Ingmar Bergman", + "year": "1982", + "tags": "Fantasy", + "desc": "As children in the loving Ekdahl family, Fanny and Alexander enjoy a happy life with their parents, who run a theater company. After their father dies unexpectedly, however, the siblings end up in a joyless home when their mother, Emilie, marries a stern bishop. The bleak situation gradually grows worse as the bishop becomes more controlling, but dedicated relatives make a valiant attempt to aid Emilie, Fanny and Alexander.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/q8jlA3Wc1Z987hNKRFA44g5OugC.jpg", + "length": "3h 8m" + }, + { + "title": "The Draughtsman's Contract", + "director": "Peter Greenaway", + "year": "1982", + "tags": "Comedy", + "desc": "A young artist is commissioned by the wife of a wealthy landowner to make a series of drawings of the estate while her husband is away.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ljeTWR2kowGXijMc8LMuy72ULM3.jpg", + "length": "2h 48m" + }, + { + "title": "A Christmas Story", + "director": "Bob Clark", + "year": "1983", + "tags": "Comedy", + "desc": "The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/f3VITMLSmP3Ai65AvXT54RcF5Sw.jpg", + "length": "2h 33m" + }, + { + "title": "El Norte", + "director": "Gregory Nava", + "year": "1983", + "tags": "Adventure", + "desc": "Brother and sister Enrique and Rosa flee persecution at home in Guatemala and journey north, through Mexico and on to the United States, with the dream of starting a new life. Preserved by the Academy Film Archive in partnership with the Getty Foundation in 2017.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bgpz7gTpWmmBb26CcjVtiPE7Kfo.jpg", + "length": "2h 21m" + }, + { + "title": "Videodrome", + "director": "David Cronenberg", + "year": "1983", + "tags": "Horror", + "desc": "As the president of a trashy TV channel, Max Renn is desperate for new programming to attract viewers. When he happens upon \"Videodrome,\" a TV show dedicated to gratuitous torture and punishment, Max sees a potential hit and broadcasts the show on his channel. However, after his girlfriend auditions for the show and never returns, Max investigates the truth behind Videodrome and discovers that the graphic violence may not be as fake as he thought.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qqqkiZSU9EBGZ1KiDmfn07S7qvv.jpg", + "length": "1h 28m" + }, + { + "title": "Return of the Jedi", + "director": "Richard Marquand", + "year": "1983", + "tags": "Adventure", + "desc": "Luke Skywalker leads a mission to rescue his friend Han Solo from the clutches of Jabba the Hutt, while the Emperor seeks to destroy the Rebellion once and for all with a second dreaded Death Star.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jQYlydvHm3kUix1f8prMucrplhm.jpg", + "length": "2h 12m" + }, + { + "title": "The Big Chill", + "director": "Lawrence Kasdan", + "year": "1983", + "tags": "Comedy", + "desc": "Seven old college friends gather for a weekend reunion after the funeral of one of their own.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rU8kjMEL5Mn0EWm3gOShPHBEZ4l.jpg", + "length": "2h 45m" + }, + { + "title": "Sans Soleil", + "director": "Chris Marker", + "year": "1983", + "tags": "Documentary", + "desc": "A woman narrates the thoughts of a world traveler, meditations on time and memory expressed in words and images from places as far-flung as Japan, Guinea-Bissau, Iceland, and San Francisco.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2ZmVbnecEeGoZCimxMhpY0Nz7eh.jpg", + "length": "2h 40m" + }, + { + "title": "The Last Battle", + "director": "Luc Besson", + "year": "1983", + "tags": "Science Fiction", + "desc": "The plot explores the devastation of civilization and issues of brutality, hostility and isolation. Pierre Jolivet stars as the main character (identified only as \"The Man\" in the end credits) who is menaced by \"The Brute\" (played by Jean Reno) on his journey through a world filled by people rendered nearly mute by some unknown incident.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/Ag3cM67YCiOIyc0MLVNnDZ0avf4.jpg", + "length": "2h 30m" + }, + { + "title": "L'argent", + "director": "Robert Bresson", + "year": "1983", + "tags": "Crime", + "desc": "A forged 500-franc note is passed from person to person and shop to shop, until it falls into the hands of a genuine innocent who doesn't see it for what it is\u2014which will have devastating consequences on his life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z3H4dNLpEYJ340KI29bLn8unUX6.jpg", + "length": "1h 25m" + }, + { + "title": "Utu", + "director": "Geoff Murphy", + "year": "1984", + "tags": "War", + "desc": "In New Zealand in the 1860s the native Maori people fought the British colonials to keep the land guaranteed to them by treaty. The warrior Te Wheke fights for the British until betrayal leads him to seek utu (revenge). The settler Williamson in turn seeks revenge after Te Wheke attacks his homestead. Meanwhile Wiremu, an officer for the British, seems to think that resistance is futile.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jSPTs6c9MQrd2rsrnqMJXQ0o3xz.jpg", + "length": "2h 58m" + }, + { + "title": "Terms of Endearment", + "director": "James L. Brooks", + "year": "1983", + "tags": "Drama", + "desc": "Aurora, a finicky woman, is in search of true love while her daughter faces marital issues. Together, they help each other deal with problems and find reasons to live a joyful life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/l77DRjJuykqKMtD9GTK4YT7qKHW.jpg", + "length": "2h 12m" + }, + { + "title": "The Fourth Man", + "director": "Paul Verhoeven", + "year": "1983", + "tags": "Thriller", + "desc": "A man who has been having visions of an impending danger begins an affair with a woman who may lead him to his doom.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iO7pYvGHcxekOqmQKsY4qeSygAi.jpg", + "length": "2h 42m" + }, + { + "title": "The King of Comedy", + "director": "Martin Scorsese", + "year": "1982", + "tags": "Drama", + "desc": "Aspiring comic Rupert Pupkin attempts to achieve success in show business by stalking his idol, a late night talk-show host who craves his own privacy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3BM78deUfeZfShqPTblZuamgC8a.jpg", + "length": "2h 49m" + }, + { + "title": "The Right Stuff", + "director": "Philip Kaufman", + "year": "1983", + "tags": "Drama", + "desc": "As the Space Race ensues, seven pilots set off on a path to become the first American astronauts to enter space. However, the road to making history brings forth momentous challenges.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/btqTjNRxecYgQ1FGfVlLqSSNjz.jpg", + "length": "3h 13m" + }, + { + "title": "Koyaanisqatsi", + "director": "Godfrey Reggio", + "year": "1982", + "tags": "Documentary", + "desc": "Takes us to locations all around the US and shows us the heavy toll that modern technology is having on humans and the earth. The visual tone poem contains neither dialogue nor a vocalized narration: its tone is set by the juxtaposition of images and the exceptional music by Philip Glass.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6zCNciRcob8lwuydVXgq0esla8L.jpg", + "length": "1h 26m" + }, + { + "title": "Once Upon a Time in America", + "director": "Sergio Leone", + "year": "1984", + "tags": "Drama", + "desc": "A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/i0enkzsL5dPeneWnjl1fCWm6L7k.jpg", + "length": "4h 49m" + }, + { + "title": "Scarface", + "director": "Brian De Palma", + "year": "1983", + "tags": "Action", + "desc": "After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iQ5ztdjvteGeboxtmRdXEChJOHh.jpg", + "length": "3h 50m" + }, + { + "title": "The Ballad of Narayama", + "director": "Sh\u014dhei Imamura", + "year": "1983", + "tags": "Drama", + "desc": "In a small village in a valley everyone who reaches the age of 70 must leave the village and go to a certain mountain top to die. If anyone should refuse they would disgrace their family. Old Orin is 69. This winter it is her turn to go to the mountain. But first she must make sure that her eldest son Tatsuhei finds a wife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ewYZmeoqzE5XsL0Jlcorlu9iwGe.jpg", + "length": "2h 10m" + }, + { + "title": "Local Hero", + "director": "Bill Forsyth", + "year": "1983", + "tags": "Comedy", + "desc": "An American oil company sends a man to Scotland to buy up an entire village where they want to build a refinery. But things don't go as expected.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sjT9330olLYuhTSacs4yHbOtRAy.jpg", + "length": "2h 51m" + }, + { + "title": "Amadeus", + "director": "Milo\u0161 Forman", + "year": "1984", + "tags": "History", + "desc": "Wolfgang Amadeus Mozart is a remarkably talented young Viennese composer who unwittingly finds a fierce rival in the disciplined and determined Antonio Salieri. Resenting Mozart for both his hedonistic lifestyle and his undeniable talent, the highly religious Salieri is gradually consumed by his jealousy and becomes obsessed with Mozart's downfall, leading to a devious scheme that has dire consequences for both men.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1n5VUlCqgmVax1adxGZm8oCFaKc.jpg", + "length": "3h 41m" + }, + { + "title": "The Terminator", + "director": "James Cameron", + "year": "1984", + "tags": "Action", + "desc": "In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qvktm0BHcnmDpul4Hz01GIazWPr.jpg", + "length": "2h 48m" + }, + { + "title": "Paris, Texas", + "director": "Wim Wenders", + "year": "1984", + "tags": "Drama", + "desc": "A man wanders out of the desert not knowing who he is. His brother finds him, and helps to pull his memory back of the life he led before he walked out on his family and disappeared four years earlier.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tgw3TJTWgNUYCgL5Pa546VVVvSU.jpg", + "length": "2h 25m" + }, + { + "title": "A Nightmare on Elm Street", + "director": "Wes Craven", + "year": "1984", + "tags": "Horror", + "desc": "Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson, traces the cause to child molester Fred Krueger, who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen, must devise a plan to lure the monster out of the realm of nightmares and into the real world...", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wGTpGGRMZmyFCcrY2YoxVTIBlli.jpg", + "length": "2h 31m" + }, + { + "title": "This Is Spinal Tap", + "director": "Rob Reiner", + "year": "1984", + "tags": "Music", + "desc": "\"This Is Spinal Tap\" shines a light on the self-contained universe of a metal band struggling to get back on the charts, including everything from its complicated history of ups and downs, gold albums, name changes and undersold concert dates, along with the full host of requisite groupies, promoters, hangers-on and historians, sessions, release events and those special behind-the-scenes moments that keep it all real.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z2LA8eBTSuuPC4NBhIZRNIwpimH.jpg", + "length": "1h 22m" + }, + { + "title": "Beverly Hills Cop", + "director": "Martin Brest", + "year": "1984", + "tags": "Action", + "desc": "Fast-talking, quick-thinking Detroit street cop Axel Foley has bent more than a few rules and regs in his time, but when his best friend is murdered, he heads to sunny Beverly Hills to work the case like only he can.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eBJEvKkhQ0tUt1dBAcTEYW6kCle.jpg", + "length": "2h 45m" + }, + { + "title": "Ghostbusters", + "director": "Ivan Reitman", + "year": "1984", + "tags": "Comedy", + "desc": "After losing their academic posts at a prestigious university, a team of parapsychologists goes into business as proton-pack-toting \"ghostbusters\" who exterminate ghouls, hobgoblins and supernatural pests of all stripes. An ad campaign pays off when a knockout cellist hires the squad to purge her swanky digs of demons that appear to be living in her refrigerator.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7E8nLijS9AwwUEPu2oFYOVKhdFA.jpg", + "length": "2h 47m" + }, + { + "title": "A Passage to India", + "director": "David Lean", + "year": "1984", + "tags": "Drama", + "desc": "Set during the period of growing influence of the Indian independence movement in the British Raj, the story begins with the arrival in India of a British woman, Miss Adela Quested, who is joining her fianc\u00e9, a city magistrate named Ronny Heaslop. She and Ronny's mother, Mrs. Moore, befriend an Indian doctor, Aziz H. Ahmed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rvBWlGRKte2U6qElHV13h6JvmSe.jpg", + "length": "3h 43m" + }, + { + "title": "Stranger Than Paradise", + "director": "Jim Jarmusch", + "year": "1984", + "tags": "Comedy", + "desc": "A Hungarian immigrant, his friend, and his cousin go on an unpredictable adventure across America.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xo3gzcdeyC6YO3dpW1K875my48p.jpg", + "length": "1h 26m" + }, + { + "title": "The Killing Fields", + "director": "Roland Joff\u00e9", + "year": "1984", + "tags": "Drama", + "desc": "New York Times reporter Sydney Schanberg is on assignment covering the Cambodian Civil War, with the help of local interpreter Dith Pran and American photojournalist Al Rockoff. When the U.S. Army pulls out amid escalating violence, Schanberg makes exit arrangements for Pran and his family. Pran, however, tells Schanberg he intends to stay in Cambodia to help cover the unfolding story \u2014 a decision he may regret as the Khmer Rouge rebels move in.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cX6Bv7natnZwQjsV9bLL8mmWjkS.jpg", + "length": "2h 22m" + }, + { + "title": "The Natural", + "director": "Barry Levinson", + "year": "1984", + "tags": "Drama", + "desc": "An unknown middle-aged batter named Roy Hobbs with a mysterious past appears out of nowhere to take a losing 1930s baseball team to the top of the league.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u2QSNW1OgHRBeifcugmo7pG0uS9.jpg", + "length": "2h 17m" + }, + { + "title": "The Breakfast Club", + "director": "John Hughes", + "year": "1985", + "tags": "Comedy", + "desc": "Five high school students from different walks of life endure a Saturday detention under a power-hungry principal. The disparate group includes rebel John, princess Claire, outcast Allison, brainy Brian and Andrew, the jock. Each has a chance to tell his or her story, making the others see them a little differently -- and when the day ends, they question whether school will ever be the same.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vSqk5BeQ1HvP9wq0rWZyWqiwXeF.jpg", + "length": "2h 38m" + }, + { + "title": "Ran", + "director": "Akira Kurosawa", + "year": "1985", + "tags": "Action", + "desc": "With Ran, legendary director Akira Kurosawa reimagines Shakespeare's King Lear as a singular historical epic set in sixteenth-century Japan. Majestic in scope, the film is Kurosawa's late-life masterpiece, a profound examination of the folly of war and the crumbling of one family under the weight of betrayal, greed, and the insatiable thirst for power.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jQnUtWaHYfqnXPOIf77K7Ycqk4M.jpg", + "length": "3h 40m" + }, + { + "title": "Come and See", + "director": "Elem Klimov", + "year": "1985", + "tags": "Drama", + "desc": "The invasion of a village in Byelorussia by German forces sends young Florya into the forest to join the weary Resistance fighters, against his family's wishes. There he meets a girl, Glasha, who accompanies him back to his village. On returning home, Florya finds his family and fellow peasants massacred. His continued survival amidst the brutal debris of war becomes increasingly nightmarish, a battle between despair and hope.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qNbMsKVzigERgJUbwf8pKyZogpb.jpg", + "length": "2h 22m" + }, + { + "title": "The Official Story", + "director": "Luis Puenzo", + "year": "1985", + "tags": "Drama", + "desc": "Buenos Aires, Argentina, 1983. In the last and turbulent days of the military dictatorship, Alicia, a high school history teacher, begins to ask uncomfortable questions about the dark origins of Gaby, her adopted daughter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kkeUKaETggOrR0eW9nzPOIoZkZH.jpg", + "length": "2h 52m" + }, + { + "title": "Out of Africa", + "director": "Sydney Pollack", + "year": "1985", + "tags": "History", + "desc": "Tells the life story of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on her 1937 autobiographical novel.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3ao9wNPTdpFDWVMyqDZGZnSGpz5.jpg", + "length": "3h 41m" + }, + { + "title": "The Purple Rose of Cairo", + "director": "Woody Allen", + "year": "1985", + "tags": "Fantasy", + "desc": "Cecilia is a waitress in New Jersey, living a dreary life during the Great Depression. Her only escape from her mundane reality is the movie theatre. After losing her job, Cecilia goes to see 'The Purple Rose of Cairo' in hopes of raising her spirits, where she watches dashing archaeologist Tom Baxter time and again.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ccsint43E44B7NGceEhVimD93Yt.jpg", + "length": "1h 22m" + }, + { + "title": "Back to the Future", + "director": "Robert Zemeckis", + "year": "1985", + "tags": "Adventure", + "desc": "Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fNOH9f1aA7XRTzl1sAOx9iF553Q.jpg", + "length": "2h 56m" + }, + { + "title": "The Time to Live and the Time to Die", + "director": "Hou Hsiao-hsien", + "year": "1985", + "tags": "Drama", + "desc": "An autobiographical film based on Taiwanese director Hou Hsiao-hsien's memories of his youth growing up in Taiwan after emigrating from mainland China.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7yFSUy939rX5CncqieINpajnM3q.jpg", + "length": "2h 18m" + }, + { + "title": "Brazil", + "director": "Terry Gilliam", + "year": "1985", + "tags": "Comedy", + "desc": "Low-level bureaucrat Sam Lowry escapes the monotony of his day-to-day life through a recurring daydream of himself as a virtuous hero saving a beautiful damsel. Investigating a case that led to the wrongful arrest and eventual death of an innocent man instead of wanted terrorist Harry Tuttle, he meets the woman from his daydream, and in trying to help her gets caught in a web of mistaken identities, mindless bureaucracy and lies.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d0PibPzCK4fVikjoD1PqHovbvkt.jpg", + "length": "2h 23m" + }, + { + "title": "Kiss of the Spider Woman", + "director": "H\u00e9ctor Babenco", + "year": "1985", + "tags": "Drama", + "desc": "The story of two radically different men thrown together in a Latin American prison cell. One is Valentin, a journalist being tortured for his political beliefs. The other is Molina, a gay window-dresser who fills their lonely nights by spinning romantic fantasies drawn from memories of old movies.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5wXHJjPOSBPsI6JAt3AU2N26kit.jpg", + "length": "2h 0m" + }, + { + "title": "The Quiet Earth", + "director": "Geoff Murphy", + "year": "1985", + "tags": "Drama", + "desc": "After a top-secret experiment misfires, a scientist may be the only man left alive in the world.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6uvRcSy1DCh0zONGMRO4bEj44hq.jpg", + "length": "2h 31m" + }, + { + "title": "Mishima: A Life in Four Chapters", + "director": "Paul Schrader", + "year": "1985", + "tags": "Drama", + "desc": "A fictional account of the life of Japanese author Yukio Mishima, combining dramatizations of three of his novels and a depiction of the events of November 25th, 1970.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4kIXsE4SwUjO0eUqpolsHNO5GLH.jpg", + "length": "2h 1m" + }, + { + "title": "Prizzi's Honor", + "director": "John Huston", + "year": "1985", + "tags": "Romance", + "desc": "Charley Partanna is a hitman who works for the Prizzis, one of the richest crime families in the US. When he sees Irene Walker, it's love at first sight. But he soon finds that she, too, is a killer for hire. Charley can overlook his suspicions, but he can't turn off his heart. And the couple must remember that even if they love each other, the Prizzis love only money.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5azGfZXuUFYjYfz6etYOdlyLXwL.jpg", + "length": "2h 4m" + }, + { + "title": "Vagabond", + "director": "Agn\u00e8s Varda", + "year": "1985", + "tags": "Drama", + "desc": "Mona Bergeron is dead, her frozen body found in a ditch in the French countryside. From this, the film flashes back to the weeks leading up to her death. Through these flashbacks, Mona gradually declines as she travels from place to place, taking odd jobs and staying with whomever will offer her a place to sleep. Mona is fiercely independent, craving freedom over comfort, but it is this desire to be free that will eventually lead to her demise.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2KFfwiPct1hwqi9dkKqoom0BenC.jpg", + "length": "2h 45m" + }, + { + "title": "Shoah", + "director": "Claude Lanzmann", + "year": "1985", + "tags": "Documentary", + "desc": "Director Claude Lanzmann spent 11 years on this sprawling documentary about the Holocaust, conducting his own interviews and refusing to use a single frame of archival footage. Dividing Holocaust witnesses into three categories \u2013 survivors, bystanders, and perpetrators \u2013 Lanzmann presents testimonies from survivors of the Chelmno concentration camp, an Auschwitz escapee, and witnesses of the Warsaw Ghetto Uprising, as well as a chilling report of gas chambers from an SS officer at Treblinka.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yvwF7dfSCybFcBOklUzKpE46bHM.jpg", + "length": "9h 26m" + }, + { + "title": "The Color Purple", + "director": "Steven Spielberg", + "year": "1985", + "tags": "Drama", + "desc": "An epic tale spanning forty years in the life of Celie, an African-American woman living in the South who survives incredible abuse and bigotry. After Celie's abusive father marries her off to the equally debasing 'Mister' Albert Johnson, things go from bad to worse, leaving Celie to find companionship anywhere she can. She perseveres, holding on to her dream of one day being reunited with her sister in Africa.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ziosRyziefrmEmAMIswpjQzvAur.jpg", + "length": "3h 34m" + }, + { + "title": "Manhunter", + "director": "Michael Mann", + "year": "1986", + "tags": "Crime", + "desc": "FBI Agent Will Graham, who retired after catching Hannibal Lecter, returns to duty to engage in a risky cat-and-mouse game with Lecktor to capture a new killer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6rb24x39vV8n5301IelC8rCPJTH.jpg", + "length": "2h 0m" + }, + { + "title": "Stand by Me", + "director": "Rob Reiner", + "year": "1986", + "tags": "Crime", + "desc": "After learning that a boy their age has been accidentally killed near their rural homes, four Oregon boys decide to go see the body. On the way, Gordie, Vern, Chris and Teddy encounter a mean junk man and a marsh full of leeches, as they also learn more about one another and their very different home lives. Just a lark at first, the boys' adventure evolves into a defining event in their lives.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vz0w9BSehcqjDcJOjRaCk7fgJe7.jpg", + "length": "1h 29m" + }, + { + "title": "Blue Velvet", + "director": "David Lynch", + "year": "1986", + "tags": "Mystery", + "desc": "Clean-cut Jeffrey Beaumont realizes his hometown is not so normal when he discovers a human ear in a field, the investigation soon catapulting him toward a disturbed nightclub singer and a drug-addicted sadist.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7hlgzJXLgyECS1mk3LSN3E72l5N.jpg", + "length": "2h 0m" + }, + { + "title": "Hannah and Her Sisters", + "director": "Woody Allen", + "year": "1986", + "tags": "Comedy", + "desc": "Between two Thanksgivings, Hannah's husband falls in love with her sister Lee, while her hypochondriac ex-husband rekindles his relationship with her sister Holly.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gARgIRb2QFRFVrsziwWE389u1pK.jpg", + "length": "2h 47m" + }, + { + "title": "She's Gotta Have It", + "director": "Spike Lee", + "year": "2017", + "tags": "Comedy", + "desc": "The story of Nola Darling's simultaneous sexual relationships with three different men is told by her and by her partners and other friends. All three men wanted her to commit solely to them; Nola resists being \"owned\" by a single partner.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qiJuXvPONqTSSnzhbCBqE7EotV.jpg", + "length": "1h 24m" + }, + { + "title": "The Decline of the American Empire", + "director": "Denys Arcand", + "year": "1986", + "tags": "Comedy", + "desc": "Four very different Montreal university teachers gather at a rambling country house to prepare a dinner. Remy (married), Claude (a homosexual), Pierre (involved with a girlfriend) and Alain (a bachelor) discuss sex, the female body and their affairs with them. Meanwhile, their four female guests, Louise (Remy's wife of 15 years), Dominique (a spinster), Diane (a divorc\u00e9e) and Danielle (Pierre's girlfriend) are spending the time at a downtown health gym. They also discuss sex, the female body and, naturally, men. Later in the evening, they finally meet at the country house and have dinner. A ninth guest, named Mario, who used to know Diane, drops in on the group for some talk and has a surprise of his own.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/j5Bi5lr7Z2tr9fEJI0YuS0AS2iG.jpg", + "length": "2h 41m" + }, + { + "title": "The Fly", + "director": "David Cronenberg", + "year": "1986", + "tags": "Horror", + "desc": "When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8gZWMhJHRvaXdXsNhERtqNHYpH3.jpg", + "length": "2h 36m" + }, + { + "title": "Aliens", + "director": "James Cameron", + "year": "1986", + "tags": "Action", + "desc": "Ripley, the sole survivor of the Nostromo's deadly encounter with the monstrous Alien, returns to Earth after drifting through space in hypersleep for 57 years. Although her story is initially met with skepticism, she agrees to accompany a team of Colonial Marines back to LV-426.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r1x5JGpyqZU8PYhbs4UcrO1Xb6x.jpg", + "length": "2h 17m" + }, + { + "title": "Ferris Bueller's Day Off", + "director": "John Hughes", + "year": "1986", + "tags": "Comedy", + "desc": "After high school slacker Ferris Bueller successfully fakes an illness in order to skip school for the day, he goes on a series of adventures throughout Chicago with his girlfriend Sloane and best friend Cameron, all the while trying to outwit his wily school principal and fed-up sister.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9LTQNCvoLsKXP0LtaKAaYVtRaQL.jpg", + "length": "2h 43m" + }, + { + "title": "Down by Law", + "director": "Jim Jarmusch", + "year": "1986", + "tags": "Crime", + "desc": "A disc jockey, a pimp and an Italian tourist escape from jail in New Orleans.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4IyxoUQ7BB5kcSd7gASe2dTyWu7.jpg", + "length": "2h 46m" + }, + { + "title": "A Room With a View", + "director": "James Ivory", + "year": "1985", + "tags": "Drama", + "desc": "When Lucy Honeychurch and chaperon Charlotte Bartlett find themselves in Florence with rooms without views, fellow guests Mr Emerson and son George step in to remedy the situation. Meeting the Emersons could change Lucy's life forever but, once back in England, how will her experiences in Tuscany affect her marriage plans?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5xRAqywVo6tNUNQbAESGVP930la.jpg", + "length": "2h 57m" + }, + { + "title": "Children of a Lesser God", + "director": "Randa Haines", + "year": "1986", + "tags": "Drama", + "desc": "Starting his new job as an instructor at a New England school for the deaf, James Leeds meets Sarah Norman, a young deaf woman who works at the school as a member of the custodial staff. In spite of Sarah's withdrawn emotional state, a romance slowly develops between the pair.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yAiJlASIXC306qpqe5NZX2GgVlQ.jpg", + "length": "2h 59m" + }, + { + "title": "Platoon", + "director": "Oliver Stone", + "year": "1986", + "tags": "Drama", + "desc": "As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m3mmFkPQKvPZq5exmh0bDuXlD9T.jpg", + "length": "2h 0m" + }, + { + "title": "Caravaggio", + "director": "Derek Jarman", + "year": "1986", + "tags": "Drama", + "desc": "A retelling of the life of the celebrated 17th-century Baroque painter Michelangelo Merisi da Caravaggio through his brilliant, nearly blasphemous paintings and his flirtations with the underworld.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4TsayIEhoId7iahurgpKSNdSdEo.jpg", + "length": "2h 33m" + }, + { + "title": "Tampopo", + "director": "J\u016bz\u014d Itami", + "year": "1985", + "tags": "Comedy", + "desc": "In this humorous paean to the joys of food, a pair of truck drivers happen onto a decrepit roadside shop selling ramen noodles. The widowed owner, Tampopo, begs them to help her turn her establishment into a paragon of the \"art of noodle-soup making\". Interspersed are satirical vignettes about the importance of food to different aspects of human life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2XLDb3RDQmtlxt5Snnig9W4moq4.jpg", + "length": "2h 55m" + }, + { + "title": "Peking Opera Blues", + "director": "Tsui Hark", + "year": "1986", + "tags": "Action", + "desc": "The film is set in 1913 Beijing, during Yuan Shikai's presidency of the Republic of China. It depicts the adventures of a team of unlikely heroines: Tsao Wan, a patriotic rebel who dresses as a man; Sheung Hung, a woman in search of a missing box of jewels; and Pat Neil, the daughter of a Peking Opera impresario.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6IcSrruE0hpBvqo40DRfX65nBRX.jpg", + "length": "2h 44m" + }, + { + "title": "Salvador", + "director": "Oliver Stone", + "year": "1986", + "tags": "Drama", + "desc": "In 1980, an American journalist covering the Salvadoran Civil War becomes entangled with both the leftist guerrilla groups and the right-wing military dictatorship while trying to rescue his girlfriend and her children.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/c5JgUmzN7syTFy9suwoHF3vhNsN.jpg", + "length": "2h 3m" + }, + { + "title": "Top Gun", + "director": "Tony Scott", + "year": "1986", + "tags": "Drama", + "desc": "For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw, being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy, as well as personal demons, will threaten Pete's dreams of becoming an ace pilot.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xUuHj3CgmZQ9P2cMaqQs4J0d4Zc.jpg", + "length": "2h 50m" + }, + { + "title": "Sherman's March", + "director": "Ross McElwee", + "year": "1985", + "tags": "Documentary", + "desc": "Ross McElwee sets out to make a documentary about the lingering effects of General Sherman's march of destruction through the South during the Civil War, but is continually sidetracked by women who come and go in his life, his recurring dreams of nuclear holocaust, and Burt Reynolds.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/55YscDYNXdffYwDGMrpveqnsa9d.jpg", + "length": "3h 38m" + }, + { + "title": "The Horse Thief", + "director": "Tian Zhuangzhuang", + "year": "1986", + "tags": "Drama", + "desc": "Devout Buddhists, Norbu and Dolma live with their young son Tashi in a clan in Tibet. Norbu is a highwayman. After Norbu is charged with stealing from the temple, he and his family are banished. Impoverished and marginalized, they can do little when their beloved son becomes ill. Tashi dies of a fever. After a second son is born, Norbu focuses his every action on keeping this child alive, seeking re-admission to the clan for his wife and child, then risking all to save them from isolation and starvation in winter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/s4hIycQ1SAQQEB14R6V9BsKdWMP.jpg", + "length": "1h 28m" + }, + { + "title": "Wings of Desire", + "director": "Wim Wenders", + "year": "1987", + "tags": "Drama", + "desc": "Two angels, Damiel and Cassiel, glide through the streets of Berlin, observing the bustling population, providing invisible rays of hope to the distressed but never interacting with them. When Damiel falls in love with lonely trapeze artist Marion, the angel longs to experience life in the physical world, and finds -- with some words of wisdom from actor Peter Falk -- that it might be possible for him to take human form.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iZQs2vUeCzvS1KfZJ6uYNCGJBBV.jpg", + "length": "2h 8m" + }, + { + "title": "Project a Part 2", + "director": "Jackie Chan", + "year": "1987", + "tags": "Action", + "desc": "Dragon is now transferred to be the police head of Sai Wan district, and has to contend with a gangster kingpin, anti-Manchu revolutionaries, some runaway pirates, Manchu Loyalists and a corrupt police superintendent.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oY6wOuPmeeDoKjPdPlMwwmDCYmA.jpg", + "length": "2h 46m" + }, + { + "title": "Babette's Feast", + "director": "Gabriel Axel", + "year": "1987", + "tags": "Drama", + "desc": "A French housekeeper with a mysterious past brings quiet revolution in the form of one exquisite meal to a circle of starkly pious villagers in late 19th century Denmark.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3ibptSbnAHd0SUBnOKapNZQBpCl.jpg", + "length": "2h 42m" + }, + { + "title": "Raising Arizona", + "director": "Joel Coen", + "year": "1987", + "tags": "Comedy", + "desc": "When a childless couple of an ex-con and an ex-cop decide to help themselves to one of another family's quintuplets, their lives become more complicated than they anticipated.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/niKyjOqiB4XVl0BqgKTHIlHOCeF.jpg", + "length": "2h 34m" + }, + { + "title": "Full Metal Jacket", + "director": "Stanley Kubrick", + "year": "1987", + "tags": "Drama", + "desc": "A pragmatic U.S. Marine observes the dehumanizing effects the U.S.-Vietnam War has on his fellow recruits from their brutal boot camp training to the bloody street fighting in Hue.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kMKyx1k8hWWscYFnPbnxxN4Eqo4.jpg", + "length": "2h 57m" + }, + { + "title": "Withnail & I", + "director": "Bruce Robinson", + "year": "1987", + "tags": "Comedy", + "desc": "Two out-of-work actors -- the anxious, luckless Marwood and his acerbic, alcoholic friend, Withnail -- spend their days drifting between their squalid flat, the unemployment office and the pub. When they take a holiday \"by mistake\" at the country house of Withnail's flamboyantly gay uncle, Monty, they encounter the unpleasant side of the English countryside: tedium, terrifying locals and torrential rain.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fAaF0qyjJJuAZO7viwYUaO2XNlF.jpg", + "length": "2h 48m" + }, + { + "title": "Good Morning, Vietnam", + "director": "Barry Levinson", + "year": "1987", + "tags": "Comedy", + "desc": "A disk jockey goes to Vietnam to work for the Armed Forces Radio Service. While he becomes popular among the troops, his superiors disapprove of his humour.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rcod81d34X1avhRIKBOQ4BsHtYZ.jpg", + "length": "2h 1m" + }, + { + "title": "Au Revoir Les Enfants", + "director": "Louis Malle", + "year": "1987", + "tags": "Drama", + "desc": "Au revoir les enfants tells a heartbreaking story of friendship and devastating loss concerning two boys living in Nazi-occupied France. At a provincial Catholic boarding school, the precocious youths enjoy true camaraderie\u2014until a secret is revealed. Based on events from writer-director Malle\u2019s own childhood, the film is a subtle, precisely observed tale of courage, cowardice, and tragic awakening.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qrHM4mBVresi7UPYh7TWoQFuusd.jpg", + "length": "2h 45m" + }, + { + "title": "Broadcast News", + "director": "James L. Brooks", + "year": "1987", + "tags": "Comedy", + "desc": "Basket-case network news producer Jane Craig falls for new reporter Tom Grunnick, a pretty boy who represents the trend towards entertainment news she despises. Aaron Altman, a talented but plain correspondent, carries an unrequited torch for Jane. Sparks fly between the three as the network prepares for big changes, and both the news and Jane must decide between style and substance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8YhpZz85umXsa4cH5U7a0hJ2Vuu.jpg", + "length": "2h 13m" + }, + { + "title": "Housekeeping", + "director": "Bill Forsyth", + "year": "1987", + "tags": "Comedy", + "desc": "In the Pacific Northwest during the 1950s, two young sisters whose mother has abandoned them wind up living with their Aunt Sylvie, whose views of the world and its conventions don't quite live up to most people's expectations.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/chLoHQjsw484y6nUYTtSgr5BKBF.jpg", + "length": "2h 56m" + }, + { + "title": "The Princess Bride", + "director": "Rob Reiner", + "year": "1987", + "tags": "Adventure", + "desc": "In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dvjqlp2sAhUeFjUOfQDgqwpphHj.jpg", + "length": "2h 39m" + }, + { + "title": "Moonstruck", + "director": "Norman Jewison", + "year": "1987", + "tags": "Comedy", + "desc": "37-year-old Italian-American widow Loretta Castorini believes she is unlucky in love, and so accepts a marriage proposal from her boyfriend Johnny, even though she doesn't love him. When she meets his estranged younger brother Ronny, an emotional and passionate man, she finds herself drawn to him. She tries to resist, but Ronny, who blames his brother for the loss of his hand, has no scruples about aggressively pursuing her while Johnny is out of the country. As Loretta falls for Ronny, she learns that she's not the only one in her family with a secret romance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2mnVWpvsHEHHnfvLn1NXYVvBGl5.jpg", + "length": "2h 42m" + }, + { + "title": "The Untouchables", + "director": "Brian De Palma", + "year": "1987", + "tags": "Crime", + "desc": "Young Treasury Agent Eliot Ness arrives in Chicago and is determined to take down Al Capone, but it's not going to be easy because Capone has the police in his pocket. Ness meets Jim Malone, a veteran patrolman and probably the most honorable one on the force. He asks Malone to help him get Capone, but Malone warns him that if he goes after Capone, he is going to war.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8BquGK22zCcsmBWiaIakaaPpSZb.jpg", + "length": "2h 59m" + }, + { + "title": "Red Sorghum", + "director": "Zhang Yimou", + "year": "1987", + "tags": "Drama", + "desc": "An old leper who owned a remote sorghum winery dies. Jiu'er, the wife bought by the leper, and her lover, identified only as \"my Grandpa\" by the narrator, take over the winery and set up an idealized quasi-matriarchal community headed by Jiu'er. When the Japanese invaders subject the area to their rule and cut down the sorghum to make way for a road, the community rises up and resists as the sorghum grows anew.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2CP2eazEBKJ3njm4HM63pMfs5tW.jpg", + "length": "2h 31m" + }, + { + "title": "The Dead", + "director": "John Huston", + "year": "1987", + "tags": "Drama", + "desc": "After a convivial holiday dinner party, things begin to unravel when a husband and wife address some prickly issues concerning their marriage.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hFLUqiwvvtcUqA5NZNejaaNpTv0.jpg", + "length": "1h 23m" + }, + { + "title": "Fatal Attraction", + "director": "Adrian Lyne", + "year": "1987", + "tags": "Drama", + "desc": "For Dan Gallagher, life is good. He is on the rise at his New York law firm, is happily married to his wife, Beth, and has a loving daughter. But, after a casual fling with a sultry book editor named Alex, everything changes. Jilted by Dan, Alex becomes unstable, her behavior escalating from aggressive pursuit to obsessive stalking. Dan realizes that his main problem is not hiding his affair, but rather saving himself and his family.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vjB9XwJKnYqFKKjhWcE6WpAf5Ki.jpg", + "length": "2h 59m" + }, + { + "title": "A Chinese Ghost Story", + "director": "Tony Ching Siu-Tung", + "year": "1987", + "tags": "Fantasy", + "desc": "Ning Tsai-Shen, a humble tax collector, arrives in a small town to carry out his work. No one is willing to give him shelter for the night, so he ends up in the haunted Lan Ro temple. There, he meets Taoist Swordsman Yen Che-Hsia, and the beautiful Nieh Hsiao-Tsing, with whom he falls in love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pGQy2KB3I0DouwnKNjChyCgULJQ.jpg", + "length": "2h 38m" + }, + { + "title": "Henry: Portrait of a Serial Killer", + "director": "John McNaughton", + "year": "1986", + "tags": "Crime", + "desc": "Henry likes to kill people, in different ways each time. Henry shares an apartment with Otis. When Otis' sister comes to stay, we see both sides of Henry: \"the guy next door\" and the serial killer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yIvaGoLc95R4noKPjfTYUvuV7qp.jpg", + "length": "1h 23m" + }, + { + "title": "Wall Street", + "director": "Oliver Stone", + "year": "1987", + "tags": "Crime", + "desc": "A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2tQYq9ntzn2dEwDIGLBSipYPenv.jpg", + "length": "2h 6m" + }, + { + "title": "Brightness", + "director": "Andrew Tsao", + "year": "1987", + "tags": "#Movie", + "desc": "Wes and Nick are two small time crooks facing the end of their lives. When they get a second chance from the mysterious Mr. Bix, time, space and reality seem to shift as they try and make amends.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pNpn1txFx61bpWIusuRNVvF9kMm.jpg", + "length": "0h 25m" + }, + { + "title": "Women on the Verge of a Nervous Breakdown", + "director": "Pedro Almod\u00f3var", + "year": "1988", + "tags": "Comedy", + "desc": "Pepa resolves to kill herself with a batch of sleeping-pill-laced gazpacho after her lover leaves her. Fortunately, she is interrupted by a deliciously chaotic series of events.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8C5FJlUo96pj1xAs2BKnB58PYzi.jpg", + "length": "1h 28m" + }, + { + "title": "The Vanishing", + "director": "George Sluizer", + "year": "1988", + "tags": "Thriller", + "desc": "Rex and Saskia, a young couple in love, are on vacation. They stop at a busy service station and Saskia is abducted. After three years and no sign of Saskia, Rex begins receiving letters from the abductor.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eE5bbuRJluooG2MjEAsLEYyuJoa.jpg", + "length": "2h 46m" + }, + { + "title": "Bull Durham", + "director": "Ron Shelton", + "year": "1988", + "tags": "Comedy", + "desc": "Veteran catcher Crash Davis is brought to the minor league Durham Bulls to help their up and coming pitching prospect, \"Nuke\" Laloosh. Their relationship gets off to a rocky start and is further complicated when baseball groupie Annie Savoy sets her sights on the two men.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/q3T9bO6p74NcTxWOhdUA6fASQ5T.jpg", + "length": "2h 48m" + }, + { + "title": "Ariel", + "director": "Aki Kaurism\u00e4ki", + "year": "1988", + "tags": "Drama", + "desc": "After the coal mine he works at closes and his father commits suicide, a Finnish man leaves for the city to make a living but there, he is framed and imprisoned for various crimes.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ojDg0PGvs6R9xYFodRct2kdI6wC.jpg", + "length": "1h 13m" + }, + { + "title": "The Thin Blue Line", + "director": "Errol Morris", + "year": "1988", + "tags": "Crime", + "desc": "Errol Morris's unique documentary dramatically re-enacts the crime scene and investigation of a police officer's murder in Dallas.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4w4BJk3l8y9gYwPPLRs6uPHOmGL.jpg", + "length": "2h 43m" + }, + { + "title": "Akira", + "director": "Katsuhiro Otomo", + "year": "1988", + "tags": "Animation", + "desc": "A secret military project endangers Neo-Tokyo when it turns a biker gang member into a rampaging psychic psychopath that only two teenagers and a group of psychics can stop.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/neZ0ykEsPqxamsX6o5QNUFILQrz.jpg", + "length": "2h 4m" + }, + { + "title": "Cinema Paradiso", + "director": "Giuseppe Tornatore", + "year": "1988", + "tags": "Drama", + "desc": "A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8SRUfRUi6x4O68n0VCbDNRa6iGL.jpg", + "length": "2h 4m" + }, + { + "title": "Hotel Terminus: The Life and Times of Klaus Barbie", + "director": "Marcel Oph\u00fcls", + "year": "1988", + "tags": "War", + "desc": "Marcel Ophuls' riveting film details the heinous legacy of the Gestapo head dubbed \"The Butcher of Lyon.\" Responsible for over 4,000 deaths in occupied France during World War II, Barbie would escape\u2014with U.S. help\u2014to South America in 1951, where he lived until a global manhunt led to his 1983 arrest and subsequent trial.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gyU6I5h7K4M59QxFLCPJTMSzkDC.jpg", + "length": "4h 28m" + }, + { + "title": "A Fish Called Wanda", + "director": "Charles Crichton", + "year": "1988", + "tags": "Comedy", + "desc": "While a diamond advocate attempts to steal a collection of diamonds, troubles arise when he realises he\u2019s not the only one after the collection.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hkSGFNVfEEUXFCxRZDITFHVhUlu.jpg", + "length": "2h 49m" + }, + { + "title": "The Naked Gun: From the Files of Police Squad!", + "director": "David Zucker", + "year": "1988", + "tags": "Comedy", + "desc": "When the incompetent Lieutenant Frank Drebin seeks the ruthless killer of his partner, he stumbles upon an attempt to assassinate Queen Elizabeth II.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wQHTHJ3jBKtz2c6VT9JZ8TD73yl.jpg", + "length": "1h 26m" + }, + { + "title": "Big", + "director": "Penny Marshall", + "year": "1988", + "tags": "Fantasy", + "desc": "When a young boy makes a wish at a carnival machine to be big\u2014he wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/eWhCDJiwxvx3YXkAFRiHjimnF0j.jpg", + "length": "2h 44m" + }, + { + "title": "Dangerous Liaisons", + "director": "Stephen Frears", + "year": "1988", + "tags": "Drama", + "desc": "In 18th century France, Marquise de Merteuil asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don\u2019t go as planned.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5MEl1xrbM93zjpFgS3sHJ2SlIFm.jpg", + "length": "2h 59m" + }, + { + "title": "Grave of the Fireflies", + "director": "Isao Takahata", + "year": "1988", + "tags": "Animation", + "desc": "In the final months of World War II, 14-year-old Seita and his sister Setsuko are orphaned when their mother is killed during an air raid in Kobe, Japan. After a falling out with their aunt, they move into an abandoned bomb shelter. With no surviving relatives and their emergency rations depleted, Seita and Setsuko struggle to survive.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k9tv1rXZbOhH7eiCk378x61kNQ1.jpg", + "length": "1h 29m" + }, + { + "title": "Landscape in the Mist", + "director": "Theo Angelopoulos", + "year": "1988", + "tags": "Drama", + "desc": "Two Greek children embark on a journey to search for their father, who supposedly live in Germany.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/icNqzWxjwXuD6FSRtTWNj8sa5B1.jpg", + "length": "2h 5m" + }, + { + "title": "Die Hard", + "director": "John McTiernan", + "year": "1988", + "tags": "Action", + "desc": "NYPD cop John McClane's plan to reconcile with his estranged wife is thrown for a serious loop when, minutes after he arrives at her office, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yFihWxQcmqcaBR31QM6Y8gT6aYV.jpg", + "length": "2h 12m" + }, + { + "title": "A Tale of the Wind", + "director": "Joris Ivens", + "year": "1988", + "tags": "Documentary", + "desc": "It is an autobiographical fiction starring Ivens as an old man who has spent his life trying to \"tame the wind and harness the sea\" by capturing them on film.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qASzOVtIGk2VDG0I4mTbKXDJXmV.jpg", + "length": "1h 20m" + }, + { + "title": "Who Framed Roger Rabbit", + "director": "Robert Zemeckis", + "year": "1988", + "tags": "Fantasy", + "desc": "'Toon star Roger is worried that his wife Jessica is playing pattycake with someone else, so the studio hires detective Eddie Valiant to snoop on her. But the stakes are quickly raised when Marvin Acme is found dead and Roger is the prime suspect.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lYfRc57Kx9VgLZ48iulu0HKnM15.jpg", + "length": "2h 44m" + }, + { + "title": "Rain Man", + "director": "Barry Levinson", + "year": "1988", + "tags": "Drama", + "desc": "When car dealer Charlie Babbitt learns that his estranged father has died, he returns home to Cincinnati, where he discovers that he has a savant older brother named Raymond and that his father's $3 million fortune is being left to the mental institution in which Raymond lives. Motivated by his father's money, Charlie checks Raymond out of the facility in order to return with him to Los Angeles. The brothers' cross-country trip ends up changing both their lives.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iTNHwO896WKkaoPtpMMS74d8VNi.jpg", + "length": "2h 14m" + }, + { + "title": "Story of Women", + "director": "Claude Chabrol", + "year": "1989", + "tags": "Drama", + "desc": "France, World War II. In order to somehow make ends meet, the mother of two children, Marie Latour, does underground abortions and rents a room to a familiar prostitute. She doesn't pay any attention to her husband, who returned from the war because of his injury and lives her own life. Abortions gradually begin to bring a good income, and boredom can be easily dispelled by starting a young lover.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gIBOAemklR8MVYP0Vn5RE0MYYWT.jpg", + "length": "2h 48m" + }, + { + "title": "The Accidental Tourist", + "director": "Lawrence Kasdan", + "year": "1988", + "tags": "Comedy", + "desc": "After the death of his son, travel writer Macon Leary seems to be sleep walking through life. Macon's wife is having similar problems. They separate, and Macon meets a strange, outgoing woman who brings him 'back down to earth', but his wife soon thinks their marriage is still worth another try.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dyk2BqPajLRBpVQ6jsSJJdgfuXe.jpg", + "length": "2h 1m" + }, + { + "title": "Alice", + "director": "Gabriel Benattar", + "year": "1988", + "tags": "Fantasy", + "desc": "A quiet young English girl, Alice, finds herself in an alternate version of her own reality after chasing a white rabbit. She becomes surrounded by living inanimate objects and stuffed dead animals, and must find her way out of this nightmare- no matter how twisted or odd that way must be. A bizarre, surreal screen retelling of Lewis Carroll's novel 'Alice's Adventures in Wonderland'.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/46CQcMkaCxaAj4xqdnUiwMFXEQB.jpg", + "length": "1h 25m" + }, + { + "title": "The Asthenic Syndrome", + "director": "Kira Muratova", + "year": "1990", + "tags": "Drama", + "desc": "In the old days it was called hypochrondria, or black melancholia. Now, apparently, it's termed the Asthenic Syndrome. Whatever it is, Nikolai, a teacher of epicly indifferent pupils, has got it, and it's not much fun.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kE0HAjG6Awe0nOta9uvnzVKVgsH.jpg", + "length": "3h 33m" + }, + { + "title": "Drowning by Numbers", + "director": "Peter Greenaway", + "year": "1988", + "tags": "Comedy", + "desc": "Three generations of women who seek to murder their husbands share a solidarity for one another which brings about three copy-cat drownings.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zTltoKsUD5ArBpRBP6PH4iCjX9o.jpg", + "length": "2h 59m" + }, + { + "title": "Dead Ringers", + "director": "David Cronenberg", + "year": "1988", + "tags": "Thriller", + "desc": "Elliot, a successful gynecologist, works at the same practice as his identical twin, Beverly. Elliot is attracted to many of his patients and has affairs with them. When he inevitably loses interest, he will give the woman over to Beverly, the meeker of the two, without the woman knowing the difference. Beverly falls hard for one of the patients, Claire, but when she inadvertently deceives him, he slips into a state of madness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ofXwDfM8uYAaftD7cBPcIWdCpMn.jpg", + "length": "2h 55m" + }, + { + "title": "Robocop", + "director": "Paul Verhoeven", + "year": "1987", + "tags": "Action", + "desc": "In a violent, near-apocalyptic Detroit, evil corporation Omni Consumer Products wins a contract from the city government to privatize the police force. To test their crime-eradicating cyborgs, the company leads street cop Alex Murphy into an armed confrontation with crime lord Boddicker so they can use his body to support their untested RoboCop prototype. But when RoboCop learns of the company's nefarious plans, he turns on his masters.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hHtOgGb3NihlyRATHlKPaFApbrd.jpg", + "length": "2h 42m" + }, + { + "title": "Distant Voices, Still Lives", + "director": "Terence Davies", + "year": "1988", + "tags": "Drama", + "desc": "Siblings Maisie and Tony, along with their mother, gather for their sister Eileen's wedding. It is a joyous occasion, but through flashbacks, it becomes clear that the family was not always happy. Their father was physically abusive to his wife and left the children emotionally traumatized. As a result, the children have grown into unhappy adults, looking for love they didn't receive when they were young.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nFUyQm41PlZuIvi3LYNVVoVio8K.jpg", + "length": "1h 24m" + }, + { + "title": "The Decalogue", + "director": "Krzysztof Kie\u015blowski", + "year": "2000", + "tags": "Drama", + "desc": "Krzysztof, a semantics professor and computer hobbyist, is raising his young son, Pawe\u0142, to look to science for answers, while Irena, Pawe\u0142\u2019s aunt, lives a life rooted in faith. Over the course of one day, both adults are forced to question their belief systems.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5A5RFF4k0hgTEQa6yhawUtSKgdk.jpg", + "length": "1h 53m" + }, + { + "title": "Batman", + "director": "Tim Burton", + "year": "1989", + "tags": "Fantasy", + "desc": "Batman must face his most ruthless nemesis when a deformed madman calling himself \"The Joker\" seizes control of Gotham's criminal underworld.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cij4dd21v2Rk2YtUQbV5kW69WB2.jpg", + "length": "2h 6m" + }, + { + "title": "Crimes and Misdemeanors", + "director": "Woody Allen", + "year": "1989", + "tags": "Comedy", + "desc": "An ophthalmologist's mistress threatens to reveal their affair to his wife, while a married documentary filmmaker is infatuated by another woman.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6vC6MLYUICH57MmEVi1UaNaj2Qs.jpg", + "length": "2h 44m" + }, + { + "title": "The Cook, the Thief, His Wife & Her Lover", + "director": "Peter Greenaway", + "year": "1989", + "tags": "Crime", + "desc": "The wife of an abusive criminal finds solace in the arms of a kind regular guest in her husband's restaurant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/32iU6yyYzlHRgeOqL4RPVxotwU4.jpg", + "length": "2h 4m" + }, + { + "title": "Drugstore Cowboy", + "director": "Gus Van Sant", + "year": "1989", + "tags": "Drama", + "desc": "Portland, Oregon, 1971. Bob Hughes is the charismatic leader of a peculiar quartet, formed by his wife, Dianne, and another couple, Rick and Nadine, who skillfully steal from drugstores and hospital medicine cabinets in order to appease their insatiable need for drugs. But neither fun nor luck last forever.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2bQXK39axyedUL6DE1pzdMYgAw1.jpg", + "length": "2h 38m" + }, + { + "title": "My Left Foot: The Story of Christy Brown", + "director": "Jim Sheridan", + "year": "1989", + "tags": "Drama", + "desc": "No one expects much from Christy Brown, a boy with cerebral palsy born into a working-class Irish family. Though Christy is a spastic quadriplegic and essentially paralyzed, a miraculous event occurs when, at the age of 5, he demonstrates control of his left foot by using chalk to scrawl a word on the floor. With the help of his steely mother \u2014 and no shortage of grit and determination \u2014 Christy overcomes his infirmity to become a painter, poet and author.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/GRAAl0bMQFoFIjV3aunc5jsM5u.jpg", + "length": "2h 43m" + }, + { + "title": "The Killer", + "director": "John Woo", + "year": "1989", + "tags": "Action", + "desc": "Mob assassin Jeffrey is no ordinary hired gun; the best in his business, he views his chosen profession as a calling rather than simply a job. So, when beautiful nightclub chanteuse Jennie is blinded in the crossfire of his most recent hit, Jeffrey chooses to retire after one last job to pay for his unintended victim's sight-restoring operation. But when Jeffrey is double-crossed, he reluctantly joins forces with a rogue policeman to make things right.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8hTxlSqMAHBXAh1eB69ir0BXhzE.jpg", + "length": "2h 50m" + }, + { + "title": "Do the Right Thing", + "director": "Spike Lee", + "year": "1989", + "tags": "Drama", + "desc": "Salvatore \"Sal\" Fragione is the Italian owner of a pizzeria in Brooklyn. A neighborhood local, Buggin' Out, becomes upset when he sees that the pizzeria's Wall of Fame exhibits only Italian actors. Buggin' Out believes a pizzeria in a black neighborhood should showcase black actors, but Sal disagrees. The wall becomes a symbol of racism and hate to Buggin' Out and to other people in the neighborhood, and tensions rise.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/63rmSDPahrH7C1gEFYzRuIBAN9W.jpg", + "length": "2h 0m" + }, + { + "title": "Roger & Me", + "director": "Michael Moore", + "year": "1989", + "tags": "Documentary", + "desc": "A documentary about the closure of General Motors' plant at Flint, Michigan, which resulted in the loss of 30,000 jobs. Details the attempts of filmmaker Michael Moore to get an interview with GM CEO Roger Smith.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ePVEnKOMtrIfHZ6wQBfWihTvwqD.jpg", + "length": "2h 31m" + }, + { + "title": "Glory", + "director": "Edward Zwick", + "year": "1989", + "tags": "Drama", + "desc": "Robert Gould Shaw leads the US Civil War's first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tubPIJJah9iJ9eDHXxaxjLdOcQd.jpg", + "length": "2h 2m" + }, + { + "title": "Sex, Lies, and Videotape", + "director": "Steven Soderbergh", + "year": "1989", + "tags": "Drama", + "desc": "Ann, a frustrated wife, enters into counseling due to a troubled marriage. Unbeknownst to her, her husband John has begun an affair with her sister. When John\u2019s best friend Graham arrives, his penchant for interviewing women about their sex lives forever changes John and Ann\u2019s rocky marriage.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pj1uKm07svgXZDHbYE8AzRfNHcu.jpg", + "length": "2h 41m" + }, + { + "title": "Say Anything...", + "director": "Cameron Crowe", + "year": "1989", + "tags": "Romance", + "desc": "Lloyd, an eternal optimist, seeks to capture the heart of Diane, an unattainable high school beauty and straight-A student. He surprises just about everyone-including himself-when she returns the sentiment. But Diane's over-possessive, divorced Dad disapproves and it's going to take more than just the power of love to conquer all.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nkucKciFGSRalw6dJtsglWqOXMC.jpg", + "length": "2h 40m" + }, + { + "title": "The Unbelievable Truth", + "director": "Hal Hartley", + "year": "1989", + "tags": "Comedy", + "desc": "After serving time for murder, Josh Hutton returns to his home town where he meets Audry Hugo. No one can remember exactly what Josh did...", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/36Gqgyh1nOguvnIH8RBfhj7EpjH.jpg", + "length": "2h 30m" + }, + { + "title": "A City of Sadness", + "director": "Hou Hsiao-hsien", + "year": "1989", + "tags": "Drama", + "desc": "The story of a family embroiled in the \"White Terror\", mainland China's political repression that was wrought on the Taiwanese people by the Kuomintang government in the late 1940s.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7XstBzqWHRCaFk8v5TB3syuE11X.jpg", + "length": "3h 39m" + }, + { + "title": "Tetsuo: The Iron Man", + "director": "Shinya Tsukamoto", + "year": "1989", + "tags": "Horror", + "desc": "A \"metal fetishist\", driven mad by the maggots wriggling in the wound he's made to embed metal into his flesh, runs out into the night and is accidentally run down by a Japanese businessman and his girlfriend. The pair dispose of the corpse in hopes of quietly moving on with their lives. However, the businessman soon finds that he is now plagued by a vicious curse that transforms his flesh into iron.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zeoILvZbBIdxDSRguP2UuZXCHOy.jpg", + "length": "1h 7m" + }, + { + "title": "Field of Dreams", + "director": "Phil Alden Robinson", + "year": "1989", + "tags": "Drama", + "desc": "Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8PT4sAcneQ7MtZ1Mqoe2EyOJHmZ.jpg", + "length": "2h 47m" + }, + { + "title": "When Harry Met Sally...", + "director": "Rob Reiner", + "year": "1989", + "tags": "Comedy", + "desc": "During their travel from Chicago to New York, Harry and Sally debate whether or not sex ruins a friendship between a man and a woman. Eleven years later, and they're still no closer to finding the answer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3wkbKeowUp1Zpkw1KkBqMWbt0P9.jpg", + "length": "2h 36m" + }, + { + "title": "No Fear, No Die", + "director": "Claire Denis", + "year": "1990", + "tags": "Drama", + "desc": "Dah and Jocelyn come from Benin, Africa, to coach their rooster, \"S'en fout la mort\", for an illicit cock-fight in the basement of a restaurant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8ZrxzxS9KWQj5UdYFGxH4nKXNea.jpg", + "length": "2h 30m" + }, + { + "title": "Reversal of Fortune", + "director": "Barbet Schroeder", + "year": "1990", + "tags": "Drama", + "desc": "Wealthy Sunny von B\u00fclow lies brain-dead, husband Claus guilty of attempted murder; but he says he's innocent and hires Alan Dershowitz for his appeal.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dQY7XqBDDsV1wSsUsa4m50QCTV1.jpg", + "length": "2h 51m" + }, + { + "title": "Goodfellas", + "director": "Martin Scorsese", + "year": "1990", + "tags": "Drama", + "desc": "The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aKuFiU82s5ISJpGZp7YkIr3kCUd.jpg", + "length": "2h 25m" + }, + { + "title": "Jacob's Ladder", + "director": "Adrian Lyne", + "year": "1990", + "tags": "Drama", + "desc": "After returning home from the Vietnam War, veteran Jacob Singer struggles to maintain his sanity. Plagued by hallucinations and flashbacks, Singer rapidly falls apart as the world and people around him morph and twist into disturbing images. His girlfriend, Jezzie, and ex-wife, Sarah, try to help, but to little avail. Even Singer's chiropractor friend, Louis, fails to reach him as he descends into madness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4GY4FsM0ZOtbSTeMpY0g4WkEuBW.jpg", + "length": "2h 53m" + }, + { + "title": "King of New York", + "director": "Abel Ferrara", + "year": "1990", + "tags": "Thriller", + "desc": "A former drug lord returns from prison determined to wipe out all his competition and distribute the profits of his operations to New York's poor and lower classes in this stylish and ultra violent modern twist on Robin Hood.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1MyH4MJAJZJbb6wDVeOc2bTECtK.jpg", + "length": "2h 43m" + }, + { + "title": "Dances With Wolves", + "director": "Kevin Costner", + "year": "1990", + "tags": "Adventure", + "desc": "Wounded Civil War soldier, John Dunbar tries to commit suicide\u2014and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cvaBVpS0GzKqBd63pFT8f1E8OKv.jpg", + "length": "3h 1m" + }, + { + "title": "Europa Europa", + "director": "Agnieszka Holland", + "year": "1990", + "tags": "History", + "desc": "A Jewish boy separated from his family in the early days of WWII poses as a German orphan and is taken into the heart of the Nazi world as a 'war hero' and eventually becomes a Hitler Youth.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hkh3GzBHquwB5nkdEeQUbFSo5Ju.jpg", + "length": "2h 52m" + }, + { + "title": "Pretty Woman", + "director": "Garry Marshall", + "year": "1990", + "tags": "Comedy", + "desc": "When a millionaire wheeler-dealer enters a business contract with a Hollywood hooker Vivian Ward, he loses his heart in the bargain.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hVHUfT801LQATGd26VPzhorIYza.jpg", + "length": "2h 59m" + }, + { + "title": "Archangel", + "director": "Guy Maddin", + "year": "1990", + "tags": "Comedy", + "desc": "At the height of the October Revolution during the 1919 allied intervention in Arkhangelsk, the exploits of one-legged Canadian soldier Lt. John Boles are told, after he is taken in from the cold by a dysfunctional Russian family and mistakes a local woman for his presumed dead lover.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1jP593tyrN5PIP5rIKrDmMkNyae.jpg", + "length": "1h 22m" + }, + { + "title": "Trust", + "director": "Hal Hartley", + "year": "1990", + "tags": "Drama", + "desc": "After being thrown away from home, pregnant high school dropout Maria meets Matthew, a highly educated and extremely moody electronics repairman. The two begin an unusual romance built on their sense of mutual admiration and trust.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xlh6cbXxsDMOBFISUDzWxSGt78C.jpg", + "length": "2h 47m" + }, + { + "title": "Close-Up", + "director": "Abbas Kiarostami", + "year": "1990", + "tags": "Crime", + "desc": "This fiction-documentary hybrid uses a sensational real-life event\u2014the arrest of a young man on charges that he fraudulently impersonated the well-known filmmaker Mohsen Makhmalbaf\u2014as the basis for a stunning, multilayered investigation into movies, identity, artistic creation, and existence, in which the real people from the case play themselves.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m9HG2N9ZKCmNN9qOHJTNyy18wn3.jpg", + "length": "2h 38m" + }, + { + "title": "Edward Scissorhands", + "director": "Tim Burton", + "year": "1990", + "tags": "Fantasy", + "desc": "A small suburban town receives a visit from a castaway unfinished science experiment named Edward.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/e0FqKFvGPdQNWG8tF9cZBtev9Em.jpg", + "length": "2h 45m" + }, + { + "title": "Total Recall", + "director": "Paul Verhoeven", + "year": "1990", + "tags": "Action", + "desc": "Construction worker Douglas Quaid's obsession with the planet Mars leads him to visit Recall, a company who manufacture memories. Something goes wrong during his memory implant turning Doug's life upside down and even to question what is reality and what isn't.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wVbeL6fkbTKSmNfalj4VoAUUqJv.jpg", + "length": "2h 53m" + }, + { + "title": "Once Upon a Time in China", + "director": "Tsui Hark", + "year": "1991", + "tags": "Action", + "desc": "Set in late 19th century Canton, this martial arts film depicts the stance taken by the legendary martial arts hero Wong Fei-Hung against foreign forces' plundering of China.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dkBQC0jmkmTOJJMgwsBdgkzZ6Ry.jpg", + "length": "2h 14m" + }, + { + "title": "Boyz N the Hood", + "director": "John Singleton", + "year": "1991", + "tags": "Crime", + "desc": "Boyz n the Hood is the popular and successful film and social criticism from John Singleton about the conditions in South Central Los Angeles where teenagers are involved in gun fights and drug dealing on a daily basis.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v4ox4aSCNT5vyLXl4Q71JiWwCXW.jpg", + "length": "2h 52m" + }, + { + "title": "Raise the Red Lantern", + "director": "Zhang Yimou", + "year": "1991", + "tags": "Drama", + "desc": "In 1920s China, a nineteen year old Songlian is forced to marry the much older lord of a powerful family. With three wives already, each living in a separate chamber in the mansion, they constantly play mind games for his attention. Songlian joins the fierce competition, slowly uncovering the dark truths that lie within their gilded cage.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/j6MGZpg55cTqlHHwahBtzI2qQg1.jpg", + "length": "2h 5m" + }, + { + "title": "Delicatessen", + "director": "Jean-Pierre Jeunet", + "year": "1991", + "tags": "Comedy", + "desc": "In a post-apocalyptic world, the residents of an apartment above the butcher shop receive an occasional delicacy of meat, something that is in low supply. A young man new in town falls in love with the butcher's daughter, which causes conflicts in her family, who need the young man for other business-related purposes.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gNtOgQHxE5B8e08zuNRAdDpmK5Z.jpg", + "length": "2h 39m" + }, + { + "title": "A Brighter Summer Day", + "director": "Edward Yang", + "year": "1991", + "tags": "Crime", + "desc": "A boy experiences first love, friendships and injustices growing up in 1960s Taiwan.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rDZ2mNQkZrnSzHPLQ7SzhzgCSoj.jpg", + "length": "4h 57m" + }, + { + "title": "Naked Lunch", + "director": "David Cronenberg", + "year": "1991", + "tags": "Crime", + "desc": "Blank-faced bug killer Bill Lee and his dead-eyed wife, Joan, like to get high on Bill's pest poisons while lounging with Beat poet pals. After meeting the devilish Dr. Benway, Bill gets a drug made from a centipede. Upon indulging, he accidentally kills Joan, takes orders from his typewriter-turned-cockroach, ends up in a constantly mutating Mediterranean city and learns that his hip friends have published his work -- which he doesn't remember writing.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u01kh5jKUWjhom76mguRqUgdvja.jpg", + "length": "2h 55m" + }, + { + "title": "La Belle Noiseuse", + "director": "Jacques Rivette", + "year": "1991", + "tags": "Drama", + "desc": "The former famous painter Frenhofer lives quietly with his wife on a countryside residence in the French Provence. When the young artist Nicolas visits him with his girlfriend Marianne, Frenhofer decides to start again the work on a painting he long ago stopped: La Belle Noiseuse. And he wants Marianne as model.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n6f7I9RUdoDa9AgM9X2oAc3pk4l.jpg", + "length": "4h 58m" + }, + { + "title": "The Rapture", + "director": "Michael Tolkin", + "year": "1991", + "tags": "Mystery", + "desc": "A lonely telephone operator leading an empty, amoral life finds God \u2013 only to have her faith continually tested in ways beyond what she could have imagined.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4EkFm13ecqO0eszr7OKT8vf1YjJ.jpg", + "length": "2h 40m" + }, + { + "title": "My Own Private Idaho", + "director": "Gus Van Sant", + "year": "1991", + "tags": "Drama", + "desc": "In this loose adaptation of Shakespeare's \"Henry IV,\" Mike Waters is a hustler afflicted with narcolepsy. Scott Favor is the rebellious son of a mayor. Together, the two travel from Portland, Oregon to Idaho and finally to the coast of Italy in a quest to find Mike's estranged mother. Along the way they turn tricks for money and drugs, eventually attracting the attention of a wealthy benefactor and sexual deviant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hiFGxsq7Mzss536Rc1cahaNWCJe.jpg", + "length": "2h 44m" + }, + { + "title": "Thelma & Louise", + "director": "Ridley Scott", + "year": "1991", + "tags": "Drama", + "desc": "Whilst on a short weekend getaway, Louise shoots a man who had tried to rape Thelma. Due to the incriminating circumstances, they make a run for it and thus a cross country chase ensues for the two fugitives. Along the way, both women rediscover the strength of their friendship and surprising aspects of their personalities and self-strengths in the trying times.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gQSUVGR80RVHxJywtwXm2qa1ebi.jpg", + "length": "2h 10m" + }, + { + "title": "Terminator 2: Judgment Day", + "director": "James Cameron", + "year": "1991", + "tags": "Action", + "desc": "Set ten years after the events of the original, James Cameron\u2019s classic sci-fi action flick tells the story of a second attempt to get the rid of rebellion leader John Connor, this time targeting the boy himself. However, the rebellion has sent a reprogrammed terminator to protect Connor.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5M0j0B18abtBI5gi2RhfjjurTqb.jpg", + "length": "2h 17m" + }, + { + "title": "The Silence of the Lambs", + "director": "Jonathan Demme", + "year": "1991", + "tags": "Crime", + "desc": "Clarice Starling is a top student at the FBI's training academy. Jack Crawford wants Clarice to interview Dr. Hannibal Lecter, a brilliant psychiatrist who is also a violent psychopath, serving life behind bars for various acts of murder and cannibalism. Crawford believes that Lecter may have insight into a case and that Starling, as an attractive young woman, may be just the bait to draw him out.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uS9m8OBk1A8eM9I042bx8XXpqAq.jpg", + "length": "2h 59m" + }, + { + "title": "JFK", + "director": "Oliver Stone", + "year": "1991", + "tags": "Drama", + "desc": "Follows the investigation into the assassination of President John F. Kennedy led by New Orleans district attorney Jim Garrison.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r0VWVTYlqdRCK5ZoOdNnHdqM2gt.jpg", + "length": "3h 9m" + }, + { + "title": "Slacker", + "director": "Richard Linklater", + "year": "1991", + "tags": "Drama", + "desc": "Austin, Texas, is an Eden for the young and unambitious, from the enthusiastically eccentric to the dangerously apathetic. Here, the nobly lazy can eschew responsibility in favor of nursing their esoteric obsessions. The locals include a backseat philosopher who passionately expounds on his dream theories to a seemingly comatose cabbie, a young woman who tries to hawk Madonna's Pap test to anyone who will listen and a kindly old anarchist looking for recruits.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uNtzrTiQQMHwabGr0aAi8TvuII9.jpg", + "length": "2h 37m" + }, + { + "title": "Tongues Untied", + "director": "Marlon Riggs", + "year": "1989", + "tags": "Documentary", + "desc": "Marlon Riggs, with assistance from other gay Black men, especially poet Essex Hemphill, celebrates Black men loving Black men as a revolutionary act. The film intercuts footage of Hemphill reciting his poetry, Riggs telling the story of his growing up, scenes of men in social intercourse and dance, and various comic riffs, including a visit to the \"Institute of Snap!thology,\" where men take lessons in how to snap their fingers: the sling snap, the point snap, the diva snap.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wbrcRd695aB8D6pkWh0hSurKRbO.jpg", + "length": "1h 55m" + }, + { + "title": "Hearts of Darkness: A Filmmaker's Apocalypse", + "director": "Fax Bahr", + "year": "1991", + "tags": "Documentary", + "desc": "A chronicle of the production problems \u2014 including bad weather, actors' health, war near the filming locations, and more \u2014 which plagued the filming of Apocalypse Now, increasing costs and nearly destroying the life and career of Francis Ford Coppola.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nVMCtL3r2nj4fySihDDvamaVkfx.jpg", + "length": "2h 36m" + }, + { + "title": "The Double Life of Veronique", + "director": "Krzysztof Kie\u015blowski", + "year": "1991", + "tags": "Drama", + "desc": "V\u00e9ronique is a beautiful young French woman who aspires to be a renowned singer; Weronika lives in Poland, has a similar career goal and looks identical to V\u00e9ronique, though the two are not related. The film follows both women as they contend with the ups and downs of their individual lives, with V\u00e9ronique embarking on an unusual romance with Alexandre Fabbri, a puppeteer who may be able to help her with her existential issues.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oqRyO9xrNBRaxqF9pCHHgLuaATx.jpg", + "length": "2h 38m" + }, + { + "title": "Strictly Ballroom", + "director": "Baz Luhrmann", + "year": "1992", + "tags": "Comedy", + "desc": "Brave new steps put Scott's career in jeopardy. With a new partner and determination, can he still succeed?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/usXL7s72m1NlcROo42Y0hpbeEdO.jpg", + "length": "2h 34m" + }, + { + "title": "The Player", + "director": "Robert Altman", + "year": "1992", + "tags": "Mystery", + "desc": "A Hollywood studio executive is being sent death threats by a writer whose script he rejected - but which one?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tZ3kDut2dhFVGkWNEn9xoCHCNAx.jpg", + "length": "2h 4m" + }, + { + "title": "Reservoir Dogs", + "director": "Quentin Tarantino", + "year": "1992", + "tags": "Crime", + "desc": "A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xi8Iu6qyTfyZVDVy60raIOYJJmk.jpg", + "length": "2h 39m" + }, + { + "title": "Romper Stomper", + "director": "Geoffrey Wright", + "year": "1992", + "tags": "Action", + "desc": "Nazi skinheads in Melbourne take out their anger on local Vietnamese, who are seen as threatening racial purity. Finally the Vietnamese have had enough and confront the skinheads in an all-out confrontation, sending the skinheads running. A woman who is prone to epileptic seizures joins the skins' merry band, and helps them on their run from justice, but is her affliction also a sign of impurity?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/w5v1la4WQgh5c2faGUDRnMqKmhk.jpg", + "length": "2h 34m" + }, + { + "title": "Glengarry Glen Ross", + "director": "James Foley", + "year": "1992", + "tags": "Crime", + "desc": "When an office full of Chicago real estate salesmen is given the news that all but the top two will be fired at the end of the week, the atmosphere begins to heat up. Shelley Levene, who has a sick daughter, does everything in his power to get better leads from his boss, John Williamson, but to no avail. When his coworker Dave Moss comes up with a plan to steal the leads, things get complicated for the tough-talking salesmen.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nGZCeCfNseq1ee3cJLBp0rH0djT.jpg", + "length": "2h 40m" + }, + { + "title": "Unforgiven", + "director": "Clint Eastwood", + "year": "1992", + "tags": "Western", + "desc": "William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/54roTwbX9fltg85zjsmrooXAs12.jpg", + "length": "2h 10m" + }, + { + "title": "Dracula", + "director": "Terence Fisher", + "year": "1992", + "tags": "Horror", + "desc": "After Jonathan Harker attacks Dracula at his castle, the vampire travels to a nearby city, where he preys on the family of Harker's fianc\u00e9e. The only one who may be able to protect them is Dr. van Helsing, Harker's friend and fellow-student of vampires, who is determined to destroy Dracula, whatever the cost.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1L45hwUu1P4NRhbRRrE5d9oHamm.jpg", + "length": "1h 22m" + }, + { + "title": "Candyman", + "director": "Bernard Rose", + "year": "1992", + "tags": "Drama", + "desc": "The Candyman, a murderous soul with a hook for a hand, is accidentally summoned to reality by a skeptic grad student researching the monster's myth.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n38YbNqUf5KWpMJFc4X3t0rlhg5.jpg", + "length": "2h 40m" + }, + { + "title": "A Tale of Winter", + "director": "\u00c9ric Rohmer", + "year": "1992", + "tags": "Drama", + "desc": "Felicie and Charles have a whirlwind holiday romance. Due to a mix-up on addresses they lose contact, and five years later at Christmas-time Felicie is living with her mother in a cold Paris with a daughter as a reminder of that long-ago summer. For male companionship she oscillates between hairdresser Maxence and the intellectual Loic, but seems unable to commit to either as the memory of Charles and what might have been hangs over everything.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uHmgUZXl7qkgu97E5ruDetLyDPt.jpg", + "length": "2h 54m" + }, + { + "title": "Aileen Wuornos: The Selling of a Serial Killer", + "director": "Nick Broomfield", + "year": "1992", + "tags": "Documentary", + "desc": "Aileen Wuornos: The Selling of a Serial Killer (1993) is a documentary film about Aileen Wuornos, made by Nick Broomfield. It documents Broomfield's attempts to interview Wuornos, which involves a long process of mediation through her adopted mother Arlene Pralle and lawyer, Steve Glazer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d80rVXOywbuT6iJjHC0MSEQXUo2.jpg", + "length": "1h 27m" + }, + { + "title": "The Crying Game", + "director": "Neil Jordan", + "year": "1992", + "tags": "Crime", + "desc": "Irish Republican Army member Fergus forms an unexpected bond with Jody, a kidnapped British soldier in his custody, despite the warnings of fellow IRA members Jude and Maguire. Jody makes Fergus promise he'll visit his girlfriend, Dil, in London, and when Fergus flees to the city, he seeks her out. Hounded by his former IRA colleagues, he finds himself increasingly drawn to the enigmatic, and surprising, Dil.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ynEfiiwS0dosbPjzGqBLo7FXMlD.jpg", + "length": "2h 52m" + }, + { + "title": "Man Bites Dog", + "director": "Beno\u00eet Poelvoorde", + "year": "1992", + "tags": "Comedy", + "desc": "The activities of rampaging, indiscriminate serial killer Ben are recorded by a willingly complicit documentary team, who eventually become his accomplices and active participants. Ben provides casual commentary on the nature of his work and arbitrary musings on topics of interest to him, such as music or the conditions of low-income housing, and even goes so far as to introduce the documentary crew to his family. But their reckless indulgences soon get the better of them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wFjMK1QaH8an5JcgDEDoSReQ7aL.jpg", + "length": "2h 36m" + }, + { + "title": "Center Stage", + "director": "Stanley Kwan", + "year": "1992", + "tags": "Drama", + "desc": "Based on the tragic true story of China's first prima donna of the silver screen, Ruan Lingyu, chronicling her rise to fame as a movie actress in Shanghai during the 1930s.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oxeiEVNJDLwSGByC70gQULpXiKk.jpg", + "length": "3h 34m" + }, + { + "title": "Farewell My Concubine", + "director": "Chen Kaige", + "year": "1993", + "tags": "Drama", + "desc": "Abandoned by his prostitute mother in 1920, Douzi was raised by a theater troupe. There he meets Shitou and over the following years the two develop an act entitled \"Farewell My Concubine\" that brings them fame and fortune. When Shitou marries Juxian, Douzi becomes jealous, the beginnings of the acting duo's explosive breakup and tragic fall take root.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ySf9I93w6kJiaEb2T4zpoQjY8PR.jpg", + "length": "3h 51m" + }, + { + "title": "The Blue Kite", + "director": "Tian Zhuangzhuang", + "year": "1994", + "tags": "Drama", + "desc": "A young man recalls his childhood growing up in a poor alley in Beijing during the 1950s and 1960s.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/r3VkKXNPOyxyGc6fSENL1ewLT0d.jpg", + "length": "2h 21m" + }, + { + "title": "Thirty Two Short Films About Glenn Gould", + "director": "Fran\u00e7ois Girard", + "year": "1993", + "tags": "Drama", + "desc": "A collection of vignettes highlighting different aspects of the life, work, and character of the acclaimed Canadian classical pianist.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gIvypJ6N8aUN9DoeRY1siPDF9AW.jpg", + "length": "2h 33m" + }, + { + "title": "Groundhog Day", + "director": "Harold Ramis", + "year": "1993", + "tags": "Romance", + "desc": "A narcissistic TV weatherman, along with his attractive-but-distant producer, and his mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gCgt1WARPZaXnq523ySQEUKinCs.jpg", + "length": "2h 41m" + }, + { + "title": "Short Cuts", + "director": "Robert Altman", + "year": "1993", + "tags": "Drama", + "desc": "Many loosely connected characters cross paths in this film, based on the stories of Raymond Carver. Waitress Doreen Piggot accidentally runs into a boy with her car. Soon after walking away, the child lapses into a coma. While at the hospital, the boy's grandfather tells his son, Howard, about his past affairs. Meanwhile, a baker starts harassing the family when they fail to pick up the boy's birthday cake.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nAEBc3g9bHAcF9whKFMfIxHxVwn.jpg", + "length": "3h 8m" + }, + { + "title": "Philadelphia", + "director": "Jonathan Demme", + "year": "1993", + "tags": "Drama", + "desc": "Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tFe5Yoo5zT495okA49bq1vPPkiV.jpg", + "length": "2h 6m" + }, + { + "title": "Jurassic Park", + "director": "Steven Spielberg", + "year": "1993", + "tags": "Adventure", + "desc": "A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oU7Oq2kFAAlGqbU4VoAE36g4hoI.jpg", + "length": "2h 7m" + }, + { + "title": "The Age of Innocence", + "director": "Martin Scorsese", + "year": "1993", + "tags": "Drama", + "desc": "In 19th century New York high society, a young lawyer falls in love with a woman separated from her husband, while he is engaged to the woman's cousin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5Tuyt26v7qNR8Cl3m7ZRx36rduf.jpg", + "length": "2h 19m" + }, + { + "title": "The Puppetmaster", + "director": "Hou Hsiao-hsien", + "year": "1993", + "tags": "Drama", + "desc": "In the first half of this century, young Li Tienlu joins a travelling puppet theatre and subsequently makes a career as one of Taiwan's leading puppeteers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d7RYoQ8j5d9rIGwSZOUgLyJ48QP.jpg", + "length": "2h 22m" + }, + { + "title": "Schindler's List", + "director": "Steven Spielberg", + "year": "1993", + "tags": "Drama", + "desc": "The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sF1U4EUQS8YHUYjNl3pMGNIQyr0.jpg", + "length": "3h 15m" + }, + { + "title": "Three Colors: Blue", + "director": "Krzysztof Kie\u015blowski", + "year": "1993", + "tags": "Drama", + "desc": "The wife of a famous composer survives a car accident that kills her husband and daughter. Now alone, she shakes off her old identity and explores her newfound freedom but finds that she is unbreakably bound to other humans, including her husband\u2019s mistress, whose existence she never suspected.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/33wsWxzsNstI8N7dvuwzFmj1qBd.jpg", + "length": "2h 38m" + }, + { + "title": "The Piano", + "director": "Jane Campion", + "year": "1993", + "tags": "Drama", + "desc": "A mute Scottish woman arrives in colonial New Zealand for an arranged marriage. Her husband refuses to move her beloved piano, giving it to neighbor George Baines, who agrees to return the piano in exchange for lessons. As desire swirls around the duo, the wilderness consumes the European enclave.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rx8RKXn8OtuS6lqloYsjyrGOUp4.jpg", + "length": "2h 57m" + }, + { + "title": "The Wedding Banquet", + "director": "Ang Lee", + "year": "1993", + "tags": "Comedy", + "desc": "A Taiwanese-American man is happily settled in New York with his American boyfriend. He plans a marriage of convenience to a Chinese woman in order to keep his parents off his back and to get the woman a green card. Chaos follows when his parents arrive in New York for the wedding.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/arWCA8lg0rbdlwHUMvI46LNDhnL.jpg", + "length": "2h 49m" + }, + { + "title": "Clerks", + "director": "Kevin Smith", + "year": "1994", + "tags": "Comedy", + "desc": "Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zeFhNF0SXlYIvWXpaOLuXVQ3jB4.jpg", + "length": "2h 32m" + }, + { + "title": "Chungking Express", + "director": "Wong Kar-wai", + "year": "1994", + "tags": "Drama", + "desc": "Two melancholic Hong Kong policemen fall in love: one with a mysterious underworld figure, the other with a beautiful and ethereal server at a late-night restaurant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/43I9DcNoCzpyzK8JCkJYpHqHqGG.jpg", + "length": "2h 43m" + }, + { + "title": "Crumb", + "director": "Terry Zwigoff", + "year": "1994", + "tags": "Documentary", + "desc": "This movie chronicles the life and times of R. Crumb. Robert Crumb is the cartoonist/artist who drew Keep On Truckin', Fritz the Cat, and played a major pioneering role in the genesis of underground comix. Through interviews with his mother, two brothers, wife, and ex-girlfriends, as well as selections from his vast quantity of graphic art, we are treated to a darkly comic ride through one man's subconscious mind.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oJWGWzaYdYG4mkQK6sbus5Tenho.jpg", + "length": "2h 59m" + }, + { + "title": "Three Colors: Red", + "director": "Krzysztof Kie\u015blowski", + "year": "1994", + "tags": "Drama", + "desc": "Valentine, a student model in Geneva, struggles with a possessive boyfriend and a troubled family. When she runs over a dog, she discovers that its owner, a retired judge, is illegally wiretapping and eavesdropping on his neighbors' phone calls. Although Valentine is outraged, she develops a strange bond with the judge \u2013 and as the two become closer, she finds herself caught in the middle of events that could change her life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/JHmsBiX1tjCKqAul1lzC20WcAW.jpg", + "length": "2h 40m" + }, + { + "title": "Three Colors: White", + "director": "Krzysztof Kie\u015blowski", + "year": "1994", + "tags": "Comedy", + "desc": "Polish immigrant Karol Karol finds himself out of a marriage, a job and a country when his French wife, Dominique, divorces him after six months due to his impotence. Forced to leave France after losing the business they jointly owned, Karol enlists fellow Polish expatriate Miko\u0142aj to smuggle him back to their homeland.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fdIet3NSa27gobMbaUml66oCQNT.jpg", + "length": "2h 32m" + }, + { + "title": "Hoop Dreams", + "director": "Steve James", + "year": "1994", + "tags": "Documentary", + "desc": "Every school day, African-American teenagers William Gates and Arthur Agee travel 90 minutes each way from inner-city Chicago to St. Joseph High School in Westchester, Illinois, a predominately white suburban school well-known for the excellence of its basketball program. Gates and Agee dream of NBA stardom, and with the support of their close-knit families, they battle the social and physical obstacles that stand in their way. This acclaimed documentary was shot over the course of five years.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7qHwh3mFJs7ldwzGSWsBLmgecfj.jpg", + "length": "3h 54m" + }, + { + "title": "Forrest Gump", + "director": "Robert Zemeckis", + "year": "1994", + "tags": "Comedy", + "desc": "A man with a low IQ has accomplished great things in his life and been present during significant historic events\u2014in each case, far exceeding what anyone imagined he could do. But despite all he has achieved, his one true love eludes him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/arw2vcBveWOVZr6pxd9XTd1TdQa.jpg", + "length": "2h 22m" + }, + { + "title": "Four Weddings and a Funeral", + "director": "Mike Newell", + "year": "1994", + "tags": "Comedy", + "desc": "Over the course of five social occasions, a committed bachelor must consider the notion that he may have discovered love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qa72G2VS0bpxms6yo0tI9vsHm2e.jpg", + "length": "2h 57m" + }, + { + "title": "The Lion King", + "director": "Roger Allers", + "year": "1994", + "tags": "Family", + "desc": "A young lion prince is cast out of his pride by his cruel uncle, who claims he killed his father. While the uncle rules with an iron paw, the prince grows up beyond the Savannah, living by a philosophy: No worries for the rest of your days. But when his past comes to haunt him, the young prince must decide his fate: Will he remain an outcast or face his demons and become what he needs to be?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/sKCr78MXSLixwmZ8DyJLrpMsd15.jpg", + "length": "1h 29m" + }, + { + "title": "Satantango", + "director": "B\u00e9la Tarr", + "year": "1994", + "tags": "Drama", + "desc": "Inhabitants of a small village in Hungary deal with the effects of the fall of Communism. The town's source of revenue, a factory, has closed, and the locals, who include a doctor and three couples, await a cash payment offered in the wake of the shuttering. Irimias, a villager thought to be dead, returns and, unbeknownst to the locals, is a police informant. In a scheme, he persuades the villagers to form a commune with him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/y38z0v4HJ12MHiKddLEoFlvPiBt.jpg", + "length": "7h 12m" + }, + { + "title": "Natural Born Killers", + "director": "Oliver Stone", + "year": "1994", + "tags": "Crime", + "desc": "Two victims of traumatized childhoods become lovers and serial murderers irresponsibly glorified by the mass media.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fEKZwT91gxvkAoyPgpNXo8W5fu0.jpg", + "length": "2h 58m" + }, + { + "title": "The Last Seduction", + "director": "John Dahl", + "year": "1994", + "tags": "Thriller", + "desc": "A devious femme fatale steals her husband\u2019s drug money and hides out in a small town where she meets the perfect dupe for her next scheme.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kK8IiJDkz2Tv6DwaK60vJVHKH85.jpg", + "length": "2h 50m" + }, + { + "title": "Pulp Fiction", + "director": "Quentin Tarantino", + "year": "1994", + "tags": "Thriller", + "desc": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d5iIlFn5s0ImszYzBPb8JPIfbXD.jpg", + "length": "3h 34m" + }, + { + "title": "The Shawshank Redemption", + "director": "Frank Darabont", + "year": "1994", + "tags": "Drama", + "desc": "Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9cqNxx0GxF0bflZmeSMuL5tnGzr.jpg", + "length": "2h 22m" + }, + { + "title": "Wild Reeds", + "director": "Andr\u00e9 T\u00e9chin\u00e9", + "year": "1994", + "tags": "Drama", + "desc": "As the Algerian War draws to a close, a teenager with a girlfriend starts feeling homosexual urges for two of his classmates: a country boy, and a French-Algerian intellectual.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/31lBDXmmg0p7mXkSZaM9kfHbY0d.jpg", + "length": "2h 55m" + }, + { + "title": "Heavenly Creatures", + "director": "Peter Jackson", + "year": "1994", + "tags": "Drama", + "desc": "Wealthy and precocious teenager Juliet transfers from England to New Zealand with her family, and soon befriends the quiet, brooding Pauline through their shared love of fantasy and literature. When their parents begin to suspect that their increasingly intense and obsessive bond is becoming unhealthy, the girls hatch a dark plan for those who threaten to keep them apart.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uvb86wVCIqD3Rlbr0GTNgWDF7Zo.jpg", + "length": "2h 49m" + }, + { + "title": "Through the Olive Trees", + "director": "Abbas Kiarostami", + "year": "1994", + "tags": "Drama", + "desc": "Complications arise in a director's attempt to film a scene in Life, and Nothing more... (1992).", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xcwCF0YTyAOMrVLgXHjvPP0gGbh.jpg", + "length": "2h 43m" + }, + { + "title": "The Kingdom", + "director": "Peter Berg", + "year": "1994", + "tags": "Thriller", + "desc": "A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1RkL0PGod3b75MSrc1nVJxZsoRT.jpg", + "length": "2h 50m" + }, + { + "title": "Caro Diario", + "director": "Nanni Moretti", + "year": "1993", + "tags": "Comedy", + "desc": "Nanni Moretti recalls in his diary three slice of life stories characterized by a sharply ironic look: in the first one he wanders through a deserted Rome, in the second he visits a reclusive friend on an island, and in the last he has to grapple with an unknown illness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3BV4iLXqPdcQzfKpLVaLuWdRY25.jpg", + "length": "2h 41m" + }, + { + "title": "Babe", + "director": "Chris Noonan", + "year": "1995", + "tags": "Fantasy", + "desc": "Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mum, Babe realises that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs, Babe learns that a pig can be anything that he wants to be.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zKuQMtnbVTz9DsOnOJmlW71v4qH.jpg", + "length": "2h 31m" + }, + { + "title": "Braveheart", + "director": "Mel Gibson", + "year": "1995", + "tags": "Action", + "desc": "Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/or1gBugydmjToAEq7OZY0owwFk.jpg", + "length": "3h 57m" + }, + { + "title": "Dilwale Dulhania Le Jayenge", + "director": "Aditya Chopra", + "year": "1995", + "tags": "Comedy", + "desc": "Raj is a rich, carefree, happy-go-lucky second generation NRI. Simran is the daughter of Chaudhary Baldev Singh, who in spite of being an NRI is very strict about adherence to Indian values. Simran has left for India to be married to her childhood fianc\u00e9. Raj leaves for India with a mission at his hands, to claim his lady love under the noses of her whole family. Thus begins a saga.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lfRkUr7DYdHldAqi3PwdQGBRBPM.jpg", + "length": "3h 10m" + }, + { + "title": "The Adventures of Priscilla, Queen of the Desert", + "director": "Stephan Elliott", + "year": "1994", + "tags": "Drama", + "desc": "Two drag queens and a transgender woman contract to perform a drag show at a resort in Alice Springs, a town in the remote Australian desert. As they head west from Sydney aboard their lavender bus, Priscilla, the three friends come to the forefront of a comedy of errors, encountering a number of strange characters, as well as incidents of homophobia, whilst widening comfort zones and finding new horizons.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rRhmw7xc73r8GnCYA0hXKYUsZsq.jpg", + "length": "2h 44m" + }, + { + "title": "Muriel's Wedding", + "director": "P.J. Hogan", + "year": "1994", + "tags": "Comedy", + "desc": "A young social outcast in Australia steals money from her parents to finance a vacation where she hopes to find happiness, and perhaps love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zJyTr8Fo412a2OIfJGXTRAm4IwX.jpg", + "length": "2h 46m" + }, + { + "title": "Casino", + "director": "Martin Scorsese", + "year": "1995", + "tags": "Crime", + "desc": "In early-1970s Las Vegas, Sam \"Ace\" Rothstein gets tapped by his bosses to head the Tangiers Casino. At first, he's a great success in the job, but over the years, problems with his loose-cannon enforcer Nicky Santoro, his ex-hustler wife Ginger, her con-artist ex Lester Diamond and a handful of corrupt politicians put Sam in ever-increasing danger.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4TS5O1IP42bY2BvgMxL156EENy.jpg", + "length": "3h 59m" + }, + { + "title": "Deseret", + "director": "James Benning", + "year": "1995", + "tags": "Documentary", + "desc": "This is multifaceted look at the landscape and history of Utah (or Deseret, as the Mormon Church prefers to call it). Benning condenses 93 news stories from the New York Times from 1852 to 1992 (read offscreen by Fred Gardner) and sets them against contemporary Utah landscapes, the shots changing with each sentence.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vkqes5KployYGOnzfCqT3rLNlEs.jpg", + "length": "1h 22m" + }, + { + "title": "Toy Story", + "director": "John Lasseter", + "year": "1995", + "tags": "Animation", + "desc": "Led by Woody, Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uXDfjJbdP4ijW5hWSBrPrlKpxab.jpg", + "length": "1h 21m" + }, + { + "title": "Strange Days", + "director": "Kathryn Bigelow", + "year": "1995", + "tags": "Crime", + "desc": "Former policeman Lenny Nero has moved into a more lucrative trade: the illegal sale of virtual reality-like recordings that allow users to experience the emotions and past experiences of others. While they typically contain tawdry incidents, Nero is shocked when he receives one showing a murder.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rY5BrDRcYAKE0BYmmT66YG6Uy5Q.jpg", + "length": "2h 25m" + }, + { + "title": "Safe", + "director": "Todd Haynes", + "year": "1995", + "tags": "Drama", + "desc": "Carol White, a Los Angeles housewife in the late 1980s, comes down with a debilitating illness with no clear diagnosis.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2O71QsBkbqdLqQdx2yuNpJ4pFPq.jpg", + "length": "2h 59m" + }, + { + "title": "Clueless", + "director": "Amy Heckerling", + "year": "1995", + "tags": "Comedy", + "desc": "Shallow, rich and socially successful Cher is at the top of her Beverly Hills high school's pecking scale. Seeing herself as a matchmaker, Cher first coaxes two teachers into dating each other. Emboldened by her success, she decides to give hopelessly klutzy new student Tai a makeover. When Tai becomes more popular than she is, Cher realizes that her disapproving ex-stepbrother was right about how misguided she was -- and falls for him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8AwVTcgpTnmeOs4TdTWqcFDXEsA.jpg", + "length": "2h 37m" + }, + { + "title": "Heat", + "director": "Michael Mann", + "year": "1995", + "tags": "Action", + "desc": "Obsessive master thief Neil McCauley leads a top-notch crew on various daring heists throughout Los Angeles while determined detective Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/umSVjVdbVwtx5ryCA2QXL44Durm.jpg", + "length": "3h 50m" + }, + { + "title": "Zero Kelvin", + "director": "Hans Petter Moland", + "year": "1995", + "tags": "Drama", + "desc": "Larsen, an aspiring poet in '20s Oslo, leaves his girlfriend to spend a year as a trapper in East Greenland. There he is teamed with a seemingly rough old sailor/trapper, Randb\u00e6k, and a scientist, Holm. Trapped in a tiny hut together as the Arctic winter sets in, a complex and intense love/hate relationship develops between Randb\u00e6k and Larsen, who are more similar than either would like to admit. A powerful psychological and physical drama set against stunningly bleak Arctic scenery.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gt9ueOkcTt6UVZqNCH8qhgHfM8n.jpg", + "length": "2h 58m" + }, + { + "title": "Se7en", + "director": "David Fincher", + "year": "1995", + "tags": "Crime", + "desc": "Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6yoghtyTpznpBik8EngEmJskVUO.jpg", + "length": "2h 7m" + }, + { + "title": "Smoke", + "director": "Wayne Wang", + "year": "1995", + "tags": "Comedy", + "desc": "Writer Paul Benjamin is nearly hit by a bus when he leaves Auggie Wren's smoke shop. Stranger Rashid Cole saves his life, and soon middle-aged Paul tells homeless Rashid that he wouldn't mind a short-term housemate. Still grieving over his wife's murder, Paul is moved by both Rashid's quest to reconnect with his father and Auggie's discovery that a woman who might be his daughter is about to give birth.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/phvnN7OPEnlHoAZe8nsSqPDD8B0.jpg", + "length": "2h 52m" + }, + { + "title": "The White Balloon", + "director": "Jafar Panahi", + "year": "1995", + "tags": "Drama", + "desc": "Several people try to take advantage of a little girl's innocence to hustle money her mom gave to her to buy a goldfish with.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u6jrlgZZx3zSFPDPTVOYpueljgH.jpg", + "length": "1h 25m" + }, + { + "title": "Cyclo", + "director": "Leonardo Pieraccioni", + "year": "1995", + "tags": "Comedy", + "desc": "The everyday life of accountant Levante, his family and the other people of a small town in the Tuscan countryside is taken by storm by the serendipitous arrival of five gorgeous Spanish flamenco dancers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uyIO4UfPiJgnugMtg754dL3izcy.jpg", + "length": "1h 29m" + }, + { + "title": "Underground", + "director": "Emir Kusturica", + "year": "1995", + "tags": "Comedy", + "desc": "A group of Serbian socialists prepares for the war in a surreal underground filled by parties, tragedies, love and hate.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/h8N6y13t4VusrDdH5PzTkwvBvgN.jpg", + "length": "3h 50m" + }, + { + "title": "Dead Man", + "director": "Jim Jarmusch", + "year": "1995", + "tags": "Drama", + "desc": "A fatally wounded white man is found by an outcast Native American who prepares him for the afterlife.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dOvHDs2jlMYL1dMfbFabEwyBNWg.jpg", + "length": "2h 1m" + }, + { + "title": "The Usual Suspects", + "director": "Bryan Singer", + "year": "1995", + "tags": "Drama", + "desc": "Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor \u2013 leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord's almost supernatural prowess.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rWbsxdwF9qQzpTPCLmDfVnVqTK1.jpg", + "length": "2h 46m" + }, + { + "title": "Fargo", + "director": "Joel Coen", + "year": "1996", + "tags": "Crime", + "desc": "Jerry, a small-town Minnesota car salesman is bursting at the seams with debt... but he's got a plan. He's going to hire two thugs to kidnap his wife in a scheme to collect a hefty ransom from his wealthy father-in-law. It's going to be a snap and nobody's going to get hurt... until people start dying. Enter Police Chief Marge, a coffee-drinking, parka-wearing - and extremely pregnant - investigator who'll stop at nothing to get her man. And if you think her small-time investigative skills will give the crooks a run for their ransom... you betcha!", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rt7cpEr1uP6RTZykBFhBTcRaKvG.jpg", + "length": "2h 38m" + }, + { + "title": "Breaking the Waves", + "director": "Lars von Trier", + "year": "1996", + "tags": "Drama", + "desc": "In a small and conservative Scottish village, a woman's paralytic husband convinces her to have extramarital intercourse so she can tell him about it and give him a reason for living.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dQWMcdHXUOSHtr7ypOCa5T79JMS.jpg", + "length": "3h 38m" + }, + { + "title": "The English Patient", + "director": "Anthony Minghella", + "year": "1996", + "tags": "Drama", + "desc": "In the 1930s, Count Alm\u00e1sy is a Hungarian map maker employed by the Royal Geographical Society to chart the vast expanses of the Sahara Desert along with several other prominent explorers. As World War II unfolds, Alm\u00e1sy enters into a world of love, betrayal, and politics.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8eHHqMg8qEYtVw8LQLygsHXSR2q.jpg", + "length": "3h 42m" + }, + { + "title": "Gabbeh", + "director": "Mohsen Makhmalbaf", + "year": "1996", + "tags": "Drama", + "desc": "An elderly couple go about their routine of cleaning their gabbeh, while bickering gently with each other. Magically, a young woman appears, helping the two clean the rug. This young woman belongs to the clan whose history is depicted in the design of the gabbeh, and the rug recounts the story of the courtship of the young woman by a stranger from the clan.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ierN63KDyfhgflZBXXvSqEcX3Sv.jpg", + "length": "1h 15m" + }, + { + "title": "The Pillow Book", + "director": "Peter Greenaway", + "year": "1996", + "tags": "Drama", + "desc": "A woman with a body writing fetish seeks to find a combined lover and calligrapher.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gQlv9t0522IBEOctwJph92amVyG.jpg", + "length": "2h 6m" + }, + { + "title": "Three Lives and Only One Death", + "director": "Ra\u00fal Ruiz", + "year": "1996", + "tags": "Comedy", + "desc": "Four intertwining stories of bizarre occurrences in Paris featuring a man who was stolen away by fairies, a professor who becomes a tramp, the lovers who inherit a chateau \u2013 and the last tale that connects all that has gone before.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v5zPLrTdFWox2AO7aTytgVhmdoU.jpg", + "length": "2h 3m" + }, + { + "title": "Independence Day", + "director": "Roland Emmerich", + "year": "1996", + "tags": "Action", + "desc": "On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped 'destroyer' spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4, a plan is devised to gain access to the interior of the alien mothership in space, in order to plant a nuclear missile.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/p0BPQGSPoSa8Ml0DAf2mB2kCU0R.jpg", + "length": "2h 25m" + }, + { + "title": "Secrets & Lies", + "director": "Fr\u00e9d\u00e9ric Schoendoerffer", + "year": "1996", + "tags": "Action", + "desc": "From his offices in Switzerland, Russian Igor Lipovsky is engaged in a vast and profitable gunrunning operation with Africa. The French government wants to hinder the activities of the arms dealer and sends a team to sink one of his ships heading for Angola with a load of illegal weaponry. Lisa, Brisseau, Lo\u00efc, Tony and Raymond are professionals: they carefully set up their cover, plan all their moves meticulously, and carry out orders without asking questions. Perhaps they should. The code-name of the mission is \"Janus\"; and just like with the ancient deity, there are two opposite faces for every aspect of the operation: the objective of the French government, the role of each team member, the presumed friend and the assumed foe...", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5tzRPF8TUQ1XTz3UnABCLOhMug4.jpg", + "length": "2h 49m" + }, + { + "title": "Lone Star", + "director": "John Sayles", + "year": "1996", + "tags": "Drama", + "desc": "When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lBxY8znsRoqa9Dy2NCe8I6GPsRm.jpg", + "length": "2h 15m" + }, + { + "title": "Trainspotting", + "director": "Danny Boyle", + "year": "1996", + "tags": "Drama", + "desc": "Heroin addict Mark Renton stumbles through bad ideas and sobriety attempts with his unreliable friends -- Sick Boy, Begbie, Spud and Tommy. He also has an underage girlfriend, Diane, along for the ride. After cleaning up and moving from Edinburgh to London, Mark finds he can't escape the life he left behind when Begbie shows up at his front door on the lam, and a scheming Sick Boy follows.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/y0HmDV0bZDTtXWHqqYYbT9XoshB.jpg", + "length": "2h 34m" + }, + { + "title": "Scream", + "director": "Wes Craven", + "year": "1996", + "tags": "Crime", + "desc": "After a series of mysterious deaths befalls their small town, an offbeat group of friends led by Sidney Prescott become the target of a masked killer.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3O3klyyYpAZBBE4n7IngzTomRDp.jpg", + "length": "2h 52m" + }, + { + "title": "Deconstructing Harry", + "director": "Woody Allen", + "year": "1997", + "tags": "Comedy", + "desc": "Writer Harry Block draws inspiration from people he knows, and from events that happened to him, sometimes causing these people to become alienated from him as a result.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/i7Z5DdznqANJUjqWISEFu9bw6J7.jpg", + "length": "2h 36m" + }, + { + "title": "The Butcher Boy", + "director": "Neil Jordan", + "year": "1997", + "tags": "Comedy", + "desc": "Francie and Joe live the usual playful, fantasy filled childhoods of normal boys. However, with a violent, alcoholic father and a manic depressive, suicidal mother the pressure on Francie to grow up are immense. When Francie's world turns to madness, he tries to counter it with further insanity, with dire consequences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/f6IlMNPHW2v9EiL9iCSYs0yQCR9.jpg", + "length": "2h 50m" + }, + { + "title": "Funny Games", + "director": "Michael Haneke", + "year": "1997", + "tags": "Drama", + "desc": "Two psychotic young men take a mother, father, and son hostage in their vacation cabin and force them to play sadistic \"games\" with one another for their own amusement.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vUJxLlRGM6KfXQDeAHqyMyhrI59.jpg", + "length": "2h 49m" + }, + { + "title": "Open Your Eyes", + "director": "Alejandro Amen\u00e1bar", + "year": "1997", + "tags": "Drama", + "desc": "A very handsome man finds the love of his life, but he suffers an accident and needs to have his face rebuilt by surgery after it is severely disfigured.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/orjSy9xEGI9jxrtodACH04gANmF.jpg", + "length": "2h 57m" + }, + { + "title": "Shine", + "director": "Scott Hicks", + "year": "1996", + "tags": "Drama", + "desc": "Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z6WM18EoqfkSnaOYPCttNEMp0aC.jpg", + "length": "2h 45m" + }, + { + "title": "L.A. Confidential", + "director": "Curtis Hanson", + "year": "1997", + "tags": "Crime", + "desc": "Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lWCgf5sD5FpMljjpkRhcC8pXcch.jpg", + "length": "2h 18m" + }, + { + "title": "Happy Together", + "director": "Wong Kar-wai", + "year": "1997", + "tags": "Drama", + "desc": "A gay couple from Hong Kong takes a trip to Argentina in search of a new beginning but instead begins drifting even further apart.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kO4KjUkQOfWSBw06Bdl7m6AlEP7.jpg", + "length": "2h 36m" + }, + { + "title": "Princess Mononoke", + "director": "Hayao Miyazaki", + "year": "1997", + "tags": "Adventure", + "desc": "Ashitaka, a prince of the disappearing Emishi people, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cMYCDADoLKLbB83g4WnJegaZimC.jpg", + "length": "2h 14m" + }, + { + "title": "The Ice Storm", + "director": "Ang Lee", + "year": "1997", + "tags": "Drama", + "desc": "In the weekend after thanksgiving 1973 the Hood family is skidding out of control. Then an ice storm hits, the worst in a century.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3a6uLta7K8Dzojps4RoJAPHD0km.jpg", + "length": "2h 52m" + }, + { + "title": "Kundun", + "director": "Martin Scorsese", + "year": "1997", + "tags": "Drama", + "desc": "The Tibetans refer to the Dalai Lama as 'Kundun', which means 'The Presence'. He was forced to escape from his native home, Tibet, when communist China invaded and enforced an oppressive regime upon the peaceful nation. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yvdFRDoQIQ5PBk4u8x8gJT8NJAw.jpg", + "length": "2h 14m" + }, + { + "title": "The Sweet Hereafter", + "director": "Atom Egoyan", + "year": "1997", + "tags": "Drama", + "desc": "A small mountain community in Canada is devastated when a school bus accident leaves more than a dozen of its children dead. A big-city lawyer arrives to help the survivors' and victims' families prepare a class-action suit, but his efforts only seem to push the townspeople further apart. At the same time, one teenage survivor of the accident has to reckon with the loss of innocence brought about by a different kind of damage.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gJy7LMq4b5qO5fsSUSoBgm24BHf.jpg", + "length": "2h 52m" + }, + { + "title": "Taste of Cherry", + "director": "Abbas Kiarostami", + "year": "1997", + "tags": "Drama", + "desc": "A middle-aged Tehranian man, Mr. Badii is intent on killing himself and seeks someone to bury him after his demise. Driving around the city, the seemingly well-to-do Badii meets with numerous people, including a Muslim student, asking them to take on the job, but initially he has little luck. Eventually, Badii finds a man who is up for the task because he needs the money, but his new associate soon tries to talk him out of committing suicide.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/u6GYH4HyR0BVwpqFuTOc2g4KB1L.jpg", + "length": "2h 39m" + }, + { + "title": "Mother and Son", + "director": "Aleksandr Sokurov", + "year": "1997", + "tags": "Drama", + "desc": "A man goes for a walk through the countryside with his dying mother.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mOecN5ZKgNNhHhmpxrdvpzsWu8O.jpg", + "length": "1h 13m" + }, + { + "title": "Titanic", + "director": "James Cameron", + "year": "1997", + "tags": "Drama", + "desc": "101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic, 84 years later. A young Rose boards the ship with her mother and fianc\u00e9. Meanwhile, Jack Dawson and Fabrizio De Rossi win third-class tickets aboard the ship. Rose tells the whole story from Titanic's departure through to its death\u2014on its first and last voyage\u2014on April 15, 1912.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9xjZS2rlVxm8SFx8kPC3aIGCOYQ.jpg", + "length": "3h 14m" + }, + { + "title": "The Celebration", + "director": "Thomas Vinterberg", + "year": "1998", + "tags": "Drama", + "desc": "A grandiose party to celebrate a sixtieth birthday unleashes a family drama with all the lies that conceal horrendous secrets. The eldest son, Christian, stages a showdown with the popular pater familias; his provocative, moving after-dinner speech dislodges all the masks, which finally fall completely as the father-son conflict intensifies and the bewildered guests look on.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2LRzNq41yrY8EjCnD1S8sCCPvKk.jpg", + "length": "2h 45m" + }, + { + "title": "Buffalo '66", + "director": "Vincent Gallo", + "year": "1998", + "tags": "Drama", + "desc": "Billy is released after five years in prison. In the next moment, he kidnaps teenage student Layla and visits his parents with her, pretending she is his girlfriend and they will soon marry.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fxzXFzbSGNA52NHQCMqQiwzMIQw.jpg", + "length": "2h 50m" + }, + { + "title": "Run Lola Run", + "director": "Tom Tykwer", + "year": "1998", + "tags": "Action", + "desc": "Lola receives a phone call from her boyfriend Manni. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manni. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v0giIi4bTILVhNhJajet3WWY3FA.jpg", + "length": "1h 21m" + }, + { + "title": "Pi", + "director": "Darren Aronofsky", + "year": "1998", + "tags": "Mystery", + "desc": "A mathematical genius discovers a link between numbers and reality, and thus believes he can predict the future.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fJA22FjlAW8rzrOw9Mwanl6oTc9.jpg", + "length": "1h 24m" + }, + { + "title": "Happiness", + "director": "Todd Solondz", + "year": "1998", + "tags": "Comedy", + "desc": "The lives of many individuals connected by the desire for happiness, often from sources usually considered dark or evil.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rYfUcEV88Z3gENrfYTE6i8yBkDr.jpg", + "length": "2h 19m" + }, + { + "title": "The Idiots", + "director": "Lars von Trier", + "year": "1998", + "tags": "Comedy", + "desc": "With his first Dogma-95 film director Lars von Trier opens up a completely new film platform. With a mix of home-video and documentary styles the film tells the story of a group of young people who have decided to get to know their \u201cinner-idiots\u201d and thus not only facing and breaking their outer appearance but also their inner.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zICUj2GCVubqp6p9BgpmudNVfvR.jpg", + "length": "2h 54m" + }, + { + "title": "Ringu", + "director": "Sergiu Nicolaescu", + "year": "1998", + "tags": "Drama", + "desc": "Andrei is now a truck driver, but in one of his travels to Germany, he must become once again a boxer just for one night at the middleweight category.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6Nm0jN1RCk2C5ARCtaxAM5Pkf97.jpg", + "length": "2h 31m" + }, + { + "title": "Fireworks", + "director": "Jenny Okun", + "year": "1997", + "tags": "Documentary", + "desc": "This film uses the image of fireworks (as points of light) superimposed in the camera and in the optical printer until the surface of the film begins to bleach out.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/e2GDrZaKEEjSWY9VSCVtkQcHTRP.jpg", + "length": "0h 3m" + }, + { + "title": "Boogie Nights", + "director": "Paul Thomas Anderson", + "year": "1997", + "tags": "Drama", + "desc": "Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams' rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, \"Dirk Diggler\". Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams' dreams of turning sex into stardom are about to collide with cold, hard reality.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wnE24UPCPQsQnbBOu4zVE2qaDNm.jpg", + "length": "3h 36m" + }, + { + "title": "Saving Private Ryan", + "director": "Steven Spielberg", + "year": "1998", + "tags": "Drama", + "desc": "As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uqx37cS8cpHg8U35f9U5IBlrCV3.jpg", + "length": "3h 49m" + }, + { + "title": "Lock, Stock and Two Smoking Barrels", + "director": "Guy Ritchie", + "year": "1998", + "tags": "Comedy", + "desc": "A card shark and his unwillingly-enlisted friends need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wt2TRBmFmBn5M5MBcPTwovlREaB.jpg", + "length": "2h 45m" + }, + { + "title": "Rushmore", + "director": "Wes Anderson", + "year": "1998", + "tags": "Comedy", + "desc": "When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max's new friend becomes involved with her, setting the two pals against one another in a war for her attention.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dfSdVJRvye1npQYCHMD9hKfYhhy.jpg", + "length": "2h 33m" + }, + { + "title": "The Thin Red Line", + "director": "Terrence Malick", + "year": "1998", + "tags": "Drama", + "desc": "The story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/seMydAaoxQP6F0xbE1jOcTmn5Jr.jpg", + "length": "3h 51m" + }, + { + "title": "Sombre", + "director": "Philippe Grandrieux", + "year": "1998", + "tags": "Drama", + "desc": "A serial killer stalks a woman he befriended after her car broke down.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3jZbSQcw0ABXHsxzw9lgK7QKAjJ.jpg", + "length": "2h 52m" + }, + { + "title": "There's Something About Mary", + "director": "Bobby Farrelly", + "year": "1998", + "tags": "Romance", + "desc": "For Ted, prom night went about as bad as it\u2019s possible for any night to go. Thirteen years later, he finally gets another chance with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/g03pwohXHOI75InM3zraiaEGguO.jpg", + "length": "2h 59m" + }, + { + "title": "Magnolia", + "director": "Paul Thomas Anderson", + "year": "1999", + "tags": "Drama", + "desc": "An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uq2u8HgtLFJkjNq2kHb2jvipIPT.jpg", + "length": "3h 9m" + }, + { + "title": "Beau Travail", + "director": "Claire Denis", + "year": "2000", + "tags": "Drama", + "desc": "Foreign Legion officer Galoup recalls his once glorious life, training troops in the Gulf of Djibouti. His existence there was happy, strict and regimented, until the arrival of a promising young recruit, Sentain, plants the seeds of jealousy in Galoup's mind.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m3FaQ55Ywk0oUBDrBVarHOcXZw6.jpg", + "length": "2h 32m" + }, + { + "title": "The Blair Witch Project", + "director": "Daniel Myrick", + "year": "1999", + "tags": "Horror", + "desc": "In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9050VGrYjYrEjpOvDZVAngLbg1f.jpg", + "length": "1h 21m" + }, + { + "title": "Rosetta", + "director": "Luc Dardenne", + "year": "1999", + "tags": "Drama", + "desc": "Young, impulsive Rosetta lives a hard and stressful life as she struggles to support herself and her alcoholic mother. Refusing all charity, she is desperate to maintain a dignified job.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zdWX3mNm9rzEU9f363y0NPehFrS.jpg", + "length": "2h 35m" + }, + { + "title": "All About My Mother", + "director": "Pedro Almod\u00f3var", + "year": "1999", + "tags": "Comedy", + "desc": "Following the tragic death of her teenage son, Manuela travels from Madrid to Barcelona in an attempt to contact the long-estranged father the boy never knew. She reunites with an old friend, an outspoken transgender sex worker, and befriends a troubled actress and a pregnant, HIV-positive nun.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hjQhzhkGYXPNM96k0mOgob6HMmn.jpg", + "length": "2h 41m" + }, + { + "title": "Fight Club", + "director": "David Fincher", + "year": "1999", + "tags": "Drama", + "desc": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg", + "length": "2h 19m" + }, + { + "title": "Being John Malkovich", + "director": "Spike Jonze", + "year": "1999", + "tags": "Comedy", + "desc": "One day at work, unsuccessful puppeteer Craig finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters its mad and controlling world of overtaking another human body.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xVSvIwRNzwXSs0CLefiiG6A96m4.jpg", + "length": "2h 53m" + }, + { + "title": "American Beauty", + "director": "Sam Mendes", + "year": "1999", + "tags": "Drama", + "desc": "Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wby9315QzVKdW9BonAefg8jGTTb.jpg", + "length": "2h 2m" + }, + { + "title": "The Matrix", + "director": "Lilly Wachowski", + "year": "1999", + "tags": "Action", + "desc": "Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/f89U3ADr1oiB1s9GkdPOEpXUk5H.jpg", + "length": "2h 16m" + }, + { + "title": "The Big Lebowski", + "director": "Joel Coen", + "year": "1998", + "tags": "Comedy", + "desc": "Jeffrey 'The Dude' Lebowski, a Los Angeles slacker who only wants to bowl and drink White Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fkP7gx8nTSRn8iESIRxs3ySwAU.jpg", + "length": "2h 57m" + }, + { + "title": "Taboo", + "director": "Nagisa \u014cshima", + "year": "1999", + "tags": "Drama", + "desc": "Set during Japan's Shogun era, this film looks at life in a samurai compound where young warriors are trained in swordfighting. A number of interpersonal conflicts are brewing in the training room, all centering around a handsome young samurai named Sozaburo Kano. The school's stern master can choose to intervene, or to let Kano decide his own path.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6XLAMQCcX6dpn92vSjZN7oVrL67.jpg", + "length": "2h 40m" + }, + { + "title": "Three Kings", + "director": "David O. Russell", + "year": "1999", + "tags": "Action", + "desc": "A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fClJQW8xn8wHOFqoA4jUn0PZh1f.jpg", + "length": "2h 54m" + }, + { + "title": "The Wind Will Carry Us", + "director": "Abbas Kiarostami", + "year": "1999", + "tags": "Drama", + "desc": "Irreverent city engineer Behzad comes to a rural Kurdish village in Iran to keep vigil for a dying relative. In the meanwhile the film follows his efforts to fit in with the local community and how he changes his own attitudes as a result.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zGFailx3ZZmPLYvJ4VdodJ53zlq.jpg", + "length": "2h 58m" + }, + { + "title": "Audition", + "director": "Takashi Miike", + "year": "1999", + "tags": "Horror", + "desc": "Seven years after the death of his wife, widower Shigeharu seeks advice on how to find a new wife from a colleague. Taking advantage of their position as a film company, they stage an audition. Interviewing a series of women, Shigeharu is enchanted by the quiet Asami. But soon things take a twisted turn as Asami isn\u2019t what she seems to be.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zwGaUMm0wAqi0wkO7LJDlwoA5LP.jpg", + "length": "2h 55m" + }, + { + "title": "Time Regained", + "director": "Ra\u00fal Ruiz", + "year": "1999", + "tags": "Drama", + "desc": "In early 1920s France, an author, lying on his deathbed, looks at various photographs and is flooded with memories of the people and events that have shaped his life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1ZbBR18GU7XpVfooWV9NsrV4RGV.jpg", + "length": "3h 43m" + }, + { + "title": "Attack the Gas Station!", + "director": "Kim Sang-jin", + "year": "1999", + "tags": "Action", + "desc": "A quartet of disaffected Korean youths have robbed a Seoul gas station. After taking the gas station over, their wacky antics ensue; forcing the manager to sing, kidnapping customers that complain about the service, and staging fist-fights between street gang members and gas station employees; all of these reflect their own gripes against society.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z4EXiiifZCfqE9nc4FYhcCt12Kw.jpg", + "length": "2h 53m" + }, + { + "title": "Eyes Wide Shut", + "director": "Stanley Kubrick", + "year": "1999", + "tags": "Drama", + "desc": "After Dr. Bill Harford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/knEIz1eNGl5MQDbrEAVWA7iRqF9.jpg", + "length": "3h 39m" + }, + { + "title": "The Sixth Sense", + "director": "M. Night Shyamalan", + "year": "1999", + "tags": "Mystery", + "desc": "Following an unexpected tragedy, child psychologist Malcolm Crowe meets a nine year old boy named Cole Sear, who is hiding a dark secret.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4AfSDjjCy6T5LA1TMz0Lh2HlpRh.jpg", + "length": "2h 47m" + }, + { + "title": "Nine Queens", + "director": "Fabi\u00e1n Bielinsky", + "year": "2000", + "tags": "Crime", + "desc": "Two con artists try to swindle a stamp collector by selling him a sheet of counterfeit rare stamps (the \"nine queens\").", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tabMRXUTTBmprGax6ON2r9yBN0D.jpg", + "length": "2h 54m" + }, + { + "title": "The Captive", + "director": "Chantal Akerman", + "year": "2000", + "tags": "Drama", + "desc": "Ariane lives in Simon's large Parisian apartment. He wants to know everything from her, follows her, has her accompanied for her trips and constantly interrogates her. Knowing her taste for women and her double life only exacerbates his suffering, his helplessness, and his desire for her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/h7M7jy1tzLR5Il0jZptEYw0ECnt.jpg", + "length": "2h 58m" + }, + { + "title": "In the Mood for Love", + "director": "Wong Kar-wai", + "year": "2000", + "tags": "Drama", + "desc": "In Hong Kong of 1962, Mrs. Chan and Mr. Chow, a journalist, move into neighbouring apartments on the same day. Their encounters are formal and polite\u2014until a discovery about their respective spouses creates an intimate bond between them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iYypPT4bhqXfq1b6EnmxvRt6b2Y.jpg", + "length": "2h 39m" + }, + { + "title": "Ali Zaoua: Prince of the Streets", + "director": "Nabil Ayouch", + "year": "2000", + "tags": "Drama", + "desc": "Ali, Kwita, Omar and Boubker are street kids. The daily dose of glue sniffing represents their only escape from reality. Since they left Dib and his gang, they have been living on the portside of Casablanca. They live in constant fear of Dib's revenge. Ali wants to become a sailor - when he was living with his mother, a prostitute, he used to listen to a fairy tale about the sailor who discovered the miracle island with two suns. Instead of finding his island in the dream, Ali and his friends are confronted with Dib's gang. Matters are getting serious.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5Uf2zhivRpxTNI9c1MjGwjT3Szx.jpg", + "length": "2h 39m" + }, + { + "title": "Gladiator", + "director": "Ridley Scott", + "year": "2000", + "tags": "Action", + "desc": "In the year 180, the death of emperor Marcus Aurelius throws the Roman Empire into chaos. Maximus is one of the Roman army's most capable and trusted generals and a key advisor to the emperor. As Marcus' devious son Commodus ascends to the throne, Maximus is set to be executed. He escapes, but is captured by slave traders. Renamed Spaniard and forced to become a gladiator, Maximus must battle to the death with other men for the amusement of paying audiences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ty8TGRuvJLPUmAR1H1nRIsgwvim.jpg", + "length": "3h 35m" + }, + { + "title": "Kippur", + "director": "Amos Gitai", + "year": "2000", + "tags": "Drama", + "desc": "The film takes place in 1973 during the Yom Kippur War in which Egypt and Syria launched attacks in Sinai and the Golan Heights. The story is told from the perspective of Israeli soldiers. We are led by Weinraub and his friend Ruso on a day that begins with quiet city streets, but ends with death, destruction and devastation of both body and mind. Various scenes are awash in the surreal, as Weinraub's head hangs out over a rescue helicopter's open door, watching with tranquil desperation as the earth passes beneath, the overpowering whir of the blades creating a hypnotic state. It is not a traditional blood, guts and glory film. There are no men in battle, only the rescue crew trying to pick up the broken pieces.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/i7oZ01TVX0srYXemw35UM04QWGQ.jpg", + "length": "2h 57m" + }, + { + "title": "Amores Perros", + "director": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", + "year": "2000", + "tags": "Drama", + "desc": "A fatalistic car crash in Mexico city sets off a chain of events in the lives of three people: a supermodel, a young man wanting to run off with his sister-in-law, and a homeless man. Their lives are catapulted into unforeseen situations instigated by the seemingly inconsequential destiny of a dog.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vV4vlD4ool5JSsS1rB82qjCF6z8.jpg", + "length": "3h 34m" + }, + { + "title": "Meet the Parents", + "director": "Jay Roach", + "year": "2000", + "tags": "Comedy", + "desc": "Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5tXJ9ctuyEOMUFLaeqRisbXowWs.jpg", + "length": "2h 48m" + }, + { + "title": "Crouching Tiger, Hidden Dragon", + "director": "Ang Lee", + "year": "2000", + "tags": "Adventure", + "desc": "Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iNDVBFNz4XyYzM9Lwip6atSTFqf.jpg", + "length": "2h 0m" + }, + { + "title": "The Gleaners & I", + "director": "Agn\u00e8s Varda", + "year": "2000", + "tags": "Documentary", + "desc": "Varda focuses her eye on gleaners: those who scour already-reaped fields for the odd potato or turnip. Her investigation leads from forgotten corners of the French countryside to off-hours at the green markets of Paris, following those who insist on finding a use for that which society has cast off, whether out of necessity or activism.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6IdCTKi4Eu7i897jpe59wIDGCri.jpg", + "length": "1h 22m" + }, + { + "title": "Memento", + "director": "Christopher Nolan", + "year": "2000", + "tags": "Mystery", + "desc": "Leonard Shelby is tracking down the man who raped and murdered his wife. The difficulty of locating his wife's killer, however, is compounded by the fact that he suffers from a rare, untreatable form of short-term memory loss. Although he can recall details of life before his accident, Leonard cannot remember what happened fifteen minutes ago, where he's going, or why.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/yuNs09hvpHVU1cBTCAk9zxsL2oW.jpg", + "length": "2h 53m" + }, + { + "title": "Dancer in the Dark", + "director": "Lars von Trier", + "year": "2000", + "tags": "Drama", + "desc": "Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8Wdd3fQfbbQeoSfWpHrDfaFNhBU.jpg", + "length": "2h 20m" + }, + { + "title": "Yi Yi", + "director": "Edward Yang", + "year": "2000", + "tags": "Drama", + "desc": "Each member of a family in Taipei asks hard questions about life's meaning as they live through everyday quandaries. NJ is morose: his brother owes him money, his mother is in a coma, his wife suffers a spiritual crisis when she finds her life a blank and his business partners make bad decisions.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mR8dSQZI8X6Z1NClJhFrtJp636z.jpg", + "length": "3h 53m" + }, + { + "title": "Requiem for a Dream", + "director": "Darren Aronofsky", + "year": "2000", + "tags": "Crime", + "desc": "The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nOd6vjEmzCT0k4VYqsA2hwyi87C.jpg", + "length": "2h 42m" + }, + { + "title": "Signs & Wonders", + "director": "M. Night Shyamalan", + "year": "2001", + "tags": "Drama", + "desc": "A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hyZkNEbNgnciUVTyu4NZTjlCh4L.jpg", + "length": "2h 46m" + }, + { + "title": "Traffic", + "director": "Steven Soderbergh", + "year": "2000", + "tags": "Thriller", + "desc": "An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jbccmnqE4oAPI67bApgt2JiRPz8.jpg", + "length": "2h 27m" + }, + { + "title": "Amelie", + "director": "Jean-Pierre Jeunet", + "year": "2001", + "tags": "Comedy", + "desc": "At a tiny Parisian caf\u00e9, the adorable yet painfully shy Am\u00e9lie accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nSxDa3M9aMvGVLoItzWTepQ5h5d.jpg", + "length": "2h 2m" + }, + { + "title": "What Time Is It There?", + "director": "Tsai Ming-liang", + "year": "2001", + "tags": "Drama", + "desc": "When a young street vendor with a grim home life meets a woman on her way to Paris, they forge an instant connection. He changes all the clocks in Taipei to French time, as he watches Fran\u00e7ois Truffaut's Les 400 Coups; she has a strange encounter with its now-aging star, Jean-Pierre Leaud.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dRsZF1I4s4jx99wEyZyIsOpu3Uw.jpg", + "length": "2h 56m" + }, + { + "title": "Spirited Away", + "director": "Hayao Miyazaki", + "year": "2001", + "tags": "Animation", + "desc": "A young girl, Chihiro, becomes trapped in a strange new world of spirits. When her parents undergo a mysterious transformation, she must call upon the courage she never knew she had to free her family.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/39wmItIWsg5sZMyRUHLkWBcuVCM.jpg", + "length": "2h 5m" + }, + { + "title": "The Piano Teacher", + "director": "Michael Haneke", + "year": "2001", + "tags": "Drama", + "desc": "Erika Kohut, a sexually repressed piano teacher living with her domineering mother, meets a young man who starts romantically pursuing her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gNHKYQnP1RnqEhkivHJzBPb4MOP.jpg", + "length": "2h 11m" + }, + { + "title": "The Son's Room", + "director": "Nanni Moretti", + "year": "2001", + "tags": "Drama", + "desc": "A psychoanalyst and his family go through profound emotional trauma when their son dies in a scuba diving accident.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mUeDLodG63QSGBEGWDYZIsYjhok.jpg", + "length": "2h 39m" + }, + { + "title": "No Man's Land", + "director": "Danis Tanovi\u0107", + "year": "2001", + "tags": "Action", + "desc": "Two soldiers from opposite sites get stuck between the front lines in the same trench. The UN is asked to free them and both sides agree on a ceasefire, but will they stick to it?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jRffyv5gaJb6Sna1S6UMRCPHuso.jpg", + "length": "2h 38m" + }, + { + "title": "Moulin Rouge!", + "director": "Baz Luhrmann", + "year": "2001", + "tags": "Drama", + "desc": "A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club's most notorious and beautiful star.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2kjM5CUZRIU5yOANUowrbJcRL9L.jpg", + "length": "2h 8m" + }, + { + "title": "Monsoon Wedding", + "director": "Mira Nair", + "year": "2001", + "tags": "Comedy", + "desc": "As the romantic monsoon rains loom, the extended Verma family reunites from around the globe for a last-minute arranged marriage in New Delhi. This film traces five intersecting stories, each navigating different aspects of love as they cross boundaries of class, continent and morality.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nchsMqHcTE7kIylMKQjmEZb4E6H.jpg", + "length": "2h 54m" + }, + { + "title": "Fat Girl", + "director": "Catherine Breillat", + "year": "2001", + "tags": "Drama", + "desc": "Ana\u00efs is twelve and bears the weight of the world on her shoulders. She watches her older sister, Elena, whom she both loves and hates. Elena is fifteen and devilishly beautiful. Neither more futile, nor more stupid than her younger sister, she cannot understand that she is merely an object of desire. And, as such, she can only be taken. Or had. Indeed, this is the subject: a girl's loss of virginity. And, that summer, it opens a door to tragedy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/afzbY1h7huuxlITigPfcyQSkqLs.jpg", + "length": "1h 26m" + }, + { + "title": "Mulholland Drive", + "director": "David Lynch", + "year": "2001", + "tags": "Thriller", + "desc": "Blonde Betty Elms has only just arrived in Hollywood to become a movie star when she meets an enigmatic brunette with amnesia. Meanwhile, as the two set off to solve the second woman's identity, filmmaker Adam Kesher runs into ominous trouble while casting his latest project.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tVxGt7uffLVhIIcwuldXOMpFBPX.jpg", + "length": "2h 27m" + }, + { + "title": "The Royal Tenenbaums", + "director": "Wes Anderson", + "year": "2001", + "tags": "Comedy", + "desc": "Royal Tenenbaum and his wife Etheline had three children and then they separated. All three children are extraordinary --- all geniuses. Virtually all memory of the brilliance of the young Tenenbaums was subsequently erased by two decades of betrayal, failure, and disaster. Most of this was generally considered to be their father's fault. \"The Royal Tenenbaums\" is the story of the family's sudden, unexpected reunion one recent winter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3z2ZIhxcNmL0MhjtGCHRThn1WOi.jpg", + "length": "2h 50m" + }, + { + "title": "The Lord of the Rings: The Fellowship of the Ring", + "director": "Peter Jackson", + "year": "2001", + "tags": "Adventure", + "desc": "Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6oom5QYQ2yQTMJIbnvbkBL9cHo6.jpg", + "length": "3h 59m" + }, + { + "title": "Fast, Cheap & Out of Control", + "director": "Errol Morris", + "year": "1997", + "tags": "Documentary", + "desc": "Errol Morris\u2019s Fast, Cheap & Out of Control interweaves the stories of four men, each driven to create eccentric worlds from their unique obsessions, all of which involve animals. There\u2019s a lion tamer who shares his theories on the mental processes of wild animals; a topiary gardener who has devoted a lifetime to shaping bears and giraffes out of hedges and trees; a man fascinated with hairless mole rats; and an MIT scientist who has designed complex, autonomous robots that can crawl like bugs.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8uXV6w3ZQUtefqjCgxXswCwPSjk.jpg", + "length": "1h 23m" + }, + { + "title": "O Brother, Where Art Thou?", + "director": "Joel Coen", + "year": "2000", + "tags": "Adventure", + "desc": "In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them. On their journey they come across many comical characters and incredible situations. Based upon Homer's 'Odyssey'.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2YztYilviFCYcEtDAnrOstUWGie.jpg", + "length": "2h 47m" + }, + { + "title": "Y Tu Mam\u00e1 Tambi\u00e9n", + "director": "Alfonso Cuar\u00f3n", + "year": "2001", + "tags": "Drama", + "desc": "In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/izw41PkE8y891yraO6fN1tCNmOG.jpg", + "length": "2h 46m" + }, + { + "title": "Kandahar", + "director": "Mohsen Makhmalbaf", + "year": "2001", + "tags": "Drama", + "desc": "After an Afghanistan-born woman who lives in Canada receives a letter from her suicidal sister, she takes a perilous journey through Afghanistan to try to find her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uTeYg3RPKlGYbyvEYKq5Ht5QGch.jpg", + "length": "1h 25m" + }, + { + "title": "Lantana", + "director": "Ray Lawrence", + "year": "2001", + "tags": "Crime", + "desc": "Plagued with grief over the murder of her daughter, Valerie Somers suspects that her husband John is cheating on her. When Valerie disappears, Detective Leon Zat attempts to solve the mystery of her absence. A complex web of love, sex and deceit emerges -- drawing in four related couples whose various partners are distrustful and suspicious about each other's involvement.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nTEUCdpDsfVDZJ5H0ndP1EmVtj.jpg", + "length": "2h 1m" + }, + { + "title": "The Pianist", + "director": "Roman Polanski", + "year": "2002", + "tags": "Drama", + "desc": "The true story of pianist W\u0142adys\u0142aw Szpilman's experiences in Warsaw during the Nazi occupation. When the Jews of the city find themselves forced into a ghetto, Szpilman finds work playing in a caf\u00e9; and when his family is deported in 1942, he stays behind, works for a while as a laborer, and eventually goes into hiding in the ruins of the war-torn city.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2hFvxCCWrTmCYwfy7yum0GKRi3Y.jpg", + "length": "2h 30m" + }, + { + "title": "Talk to Her", + "director": "Pedro Almod\u00f3var", + "year": "2002", + "tags": "Drama", + "desc": "Two men share an odd friendship while they care for two women who are both in deep comas.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/p8ilqBhIT5YnKOf6hBPEVPc8uGS.jpg", + "length": "2h 52m" + }, + { + "title": "City of God", + "director": "Fernando Meirelles", + "year": "2002", + "tags": "Drama", + "desc": "In the slums of Rio, two kids' paths diverge as one struggles to become a photographer and the other a kingpin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k7eYdWvhYQyRQoU2TB2A2Xu2TfD.jpg", + "length": "2h 10m" + }, + { + "title": "Russian Ark", + "director": "Aleksandr Sokurov", + "year": "2002", + "tags": "Drama", + "desc": "A ghost and a French marquis wander through the Winter Palace in St Petersburg, encountering scenes from many different periods of its history.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7NhwiUZHBajpKC2xcGcpFhMJ07k.jpg", + "length": "2h 39m" + }, + { + "title": "Adaptation.", + "director": "Spike Jonze", + "year": "2002", + "tags": "Comedy", + "desc": "Nicolas Cage is Charlie Kaufman, a confused L.A. screenwriter overwhelmed by feelings of inadequacy, sexual frustration, self-loathing, and by the screenwriting ambitions of his freeloading twin brother Donald. While struggling to adapt \"The Orchid Thief,\" by Susan Orlean, Kaufman's life spins from pathetic to bizarre. The lives of Kaufman, Orlean's book, become strangely intertwined as each one's search for passion collides with the others'.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ffEmHQAiD0m5dEQ6rlsuA9vlllW.jpg", + "length": "2h 55m" + }, + { + "title": "Chicago", + "director": "Rob Marshall", + "year": "2002", + "tags": "Comedy", + "desc": "Murderesses Velma Kelly and Roxie Hart find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v1Sg3GuHDz9uhrKqYozOeCMLSpj.jpg", + "length": "2h 53m" + }, + { + "title": "Hero", + "director": "Masayuki Suzuki", + "year": "2002", + "tags": "Mystery", + "desc": "After six years away, D.A. Kuryu Kohei (Kimura Takuya) returns to his former Josai branch of the Tokyo District Public Prosecutors Office, just in time for a brewing storm. Kohei's first case starts out simple enough. The suspect, a blonde-haired security guard, had already confessed to manslaughter, but he suddenly retracts his confession and takes things to court with big-shot defense attorney Gamo (Matsumoto Koshiro). It turns out that the security guard is a key alibi witness in a high-profile political corruption case, and the results of his case will directly affect the next. With the media, politicians, and a special investigative team breathing down his back, Kohei must handle the case with care (and flair) to find out the truth.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uJSDj8S0Fes1yhvxyomCQ1BmbtR.jpg", + "length": "2h 10m" + }, + { + "title": "The Lord of the Rings: The Two Towers", + "director": "Peter Jackson", + "year": "2002", + "tags": "Adventure", + "desc": "Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5VTN0pR8gcqV3EPUHHfMGnJYN9L.jpg", + "length": "3h 59m" + }, + { + "title": "Bus 174", + "director": "Jos\u00e9 Padilha", + "year": "2002", + "tags": "Documentary", + "desc": "Documentary depicts what happened in Rio de Janeiro on June 12th 2000, when bus 174 was taken by an armed young man, threatening to shoot all the passengers. Transmitted live on all Brazilian TV networks, this shocking and tragic-ending event became one of violence's most shocking portraits, and one of the scariest examples of police incompetence and abuse in recent years.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/30v64yPfBbNSmnYHShExuWlXUJh.jpg", + "length": "2h 58m" + }, + { + "title": "Distant", + "director": "Josh Gordon", + "year": "2002", + "tags": "Science Fiction", + "desc": "After crash-landing on an alien planet, an asteroid miner must contend with the challenges of his new surroundings, while making his way across the harsh terrain to the only other survivor \u2013 a woman who is trapped in her escape pod.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rXbgn0NKeBOGyqUGa6hpYF996A6.jpg", + "length": "0h 0m" + }, + { + "title": "Rabbit-Proof Fence", + "director": "Phillip Noyce", + "year": "2002", + "tags": "Adventure", + "desc": "In 1931, three Aboriginal girls escape after being plucked from their homes to be trained as domestic staff, and set off on a trek across the Outback.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mHnGyTMwzLFEhZOKqs7kAOACKbe.jpg", + "length": "2h 34m" + }, + { + "title": "Irreversible", + "director": "Gaspar No\u00e9", + "year": "2002", + "tags": "Drama", + "desc": "A woman\u2019s lover and her ex-boyfriend take justice into their own hands after she becomes the victim of a rapist. Because some acts can\u2019t be undone. Because man is an animal. Because the desire for vengeance is a natural impulse. Because most crimes remain unpunished.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rxeDxo8FvZpLu6iplNpxdtAVnfu.jpg", + "length": "2h 34m" + }, + { + "title": "Gangs of New York", + "director": "Martin Scorsese", + "year": "2002", + "tags": "Drama", + "desc": "In 1863, Amsterdam Vallon returns to the Five Points of America to seek vengeance against the psychotic gangland kingpin, Bill the Butcher, who murdered his father years earlier. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lemqKtcCuAano5aqrzxYiKC8kkn.jpg", + "length": "3h 48m" + }, + { + "title": "Bowling for Columbine", + "director": "Michael Moore", + "year": "2002", + "tags": "Documentary", + "desc": "This is not a film about gun control. It is a film about the fearful heart and soul of the United States, and the 280 million Americans lucky enough to have the right to a constitutionally protected Uzi. From a look at the Columbine High School security camera tapes to the home of Oscar-winning NRA President Charlton Heston, from a young man who makes homemade napalm with The Anarchist's Cookbook to the murder of a six-year-old girl by another six-year-old. Bowling for Columbine is a journey through the US, through our past, hoping to discover why our pursuit of happiness is so riddled with violence.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5AlgeysilsfLdEwlTlYO7fqgsLn.jpg", + "length": "2h 0m" + }, + { + "title": "The Barbarian Invasions", + "director": "Denys Arcand", + "year": "2003", + "tags": "Comedy", + "desc": "In this belated sequel to 'The Decline of the American Empire', middle-aged Montreal college professor, Remy, learns that he is dying of liver cancer. His ex-wife, Louise, asks their estranged son, Sebastian, a successful businessman living in London, to come home. Sebastian makes the impossible happen, using his contacts and disrupting the Canadian healthcare system in every way possible to help his father fight his terminal illness to the bitter end, while reuniting some of Remy's old friends, including Pierre, Alain, Dominique, Diane, and Claude, who return to see their friend before he passes on.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ekmFbyMgm3SPklSlDUW1wZ33yMP.jpg", + "length": "2h 39m" + }, + { + "title": "Kill Bill: Vol. 1", + "director": "Quentin Tarantino", + "year": "2003", + "tags": "Action", + "desc": "An assassin is shot by her ruthless employer, Bill, and other members of their assassination circle \u2013 but she lives to plot her vengeance.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v7TaX8kXMXs5yFFGR41guUDNcnB.jpg", + "length": "2h 51m" + }, + { + "title": "Oldboy", + "director": "Park Chan-wook", + "year": "2003", + "tags": "Drama", + "desc": "With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate businessman seeks revenge on his captors.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pWDtjs568ZfOTMbURQBYuT4Qxka.jpg", + "length": "2h 0m" + }, + { + "title": "Good Bye, Lenin!", + "director": "Wolfgang Becker", + "year": "2003", + "tags": "Comedy", + "desc": "Alex Kerner's mother was in a coma while the Berlin wall fell. When she wakes up he must try to keep her from learning what happened (as she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2QlsdRwkug30lw6DAWG8pxmMuFQ.jpg", + "length": "2h 1m" + }, + { + "title": "The Lord of the Rings: The Return of the King", + "director": "Peter Jackson", + "year": "2003", + "tags": "Adventure", + "desc": "Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam take the ring closer to the heart of Mordor, the dark lord's realm.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rCzpDGLbOoPwLjy3OAm5NUPOTrC.jpg", + "length": "3h 21m" + }, + { + "title": "The Best of Youth", + "director": "Marco Tullio Giordana", + "year": "2003", + "tags": "Drama", + "desc": "After a fateful encounter in the summer of 1966, the lives of two brothers from a middle-class Roman family take different directions, intersecting with some of the most significant events of postwar Italian history in the following decades.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ltmcFRvTeAgBgMLUGa15KzDSQqs.jpg", + "length": "6h 6m" + }, + { + "title": "Lost in Translation", + "director": "Sofia Coppola", + "year": "2003", + "tags": "Drama", + "desc": "Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4k4Yz08WGfbu8ITIjaG99XTeco8.jpg", + "length": "2h 42m" + }, + { + "title": "Elephant", + "director": "Gus Van Sant", + "year": "2003", + "tags": "Crime", + "desc": "Several ordinary high school students go through their daily routine as two others prepare for something more malevolent.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1a4VU9z2hxEvugHMK7VsobB9xTX.jpg", + "length": "1h 21m" + }, + { + "title": "Aileen: Life and Death of a Serial Killer", + "director": "Nick Broomfield", + "year": "2003", + "tags": "Documentary", + "desc": "British documentarian Nick Broomfield creates a follow-up piece to his 1992 documentary of the serial killer Aileen Wuornos, a highway prostitute who was convicted of killing six men in Florida between 1989 and 1990. Interviewing an increasingly mentally unstable Wuornos, Broomfield captures the distorted mind of a murderer whom the state of Florida deems of sound mind -- and therefore fit to execute. Throughout the film, Broomfield includes footage of his testimony at Wuornos' trial.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/a77VTxHWxuraYUPlvdSG2idI0Dj.jpg", + "length": "1h 29m" + }, + { + "title": "Osama", + "director": "Siddiq Barmak", + "year": "2003", + "tags": "Drama", + "desc": "After the rise of the Taliban in Afghanistan and the restriction of women in public life, a pre-teen girl is forced to masquerade as a boy in order to find work to support her mother and grandmother.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pOKz4zpccIjdib2pfDRkg69Ojej.jpg", + "length": "1h 23m" + }, + { + "title": "Fahrenheit 9/11", + "director": "Michael Moore", + "year": "2004", + "tags": "Documentary", + "desc": "Michael Moore's view on how the Bush administration allegedly used the tragic events on 9/11 to push forward its agenda for unjust wars in Afghanistan and Iraq.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fqYHw4cCgEbbWqhA4MIuWKZZ4RA.jpg", + "length": "2h 3m" + }, + { + "title": "The Passion of the Christ", + "director": "Mel Gibson", + "year": "2004", + "tags": "Drama", + "desc": "A graphic portrayal of the last twelve hours of Jesus of Nazareth's life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v9f9MMrq2nGQrN7cHnQRmEq9lSE.jpg", + "length": "2h 7m" + }, + { + "title": "Collateral", + "director": "Michael Mann", + "year": "2004", + "tags": "Drama", + "desc": "Cab driver Max picks up a man who offers him $600 to drive him around. But the promise of easy money sours when Max realizes his fare is an assassin.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iOpi3ut5DhQIbrVVjlnmfy2U7dI.jpg", + "length": "2h 0m" + }, + { + "title": "The Aviator", + "director": "Martin Scorsese", + "year": "2004", + "tags": "Drama", + "desc": "A biopic depicting the life of filmmaker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate, while simultaneously growing more unstable due to severe obsessive-compulsive disorder.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lx4kWcZc3o9PaNxlQpEJZM17XUI.jpg", + "length": "3h 50m" + }, + { + "title": "Million Dollar Baby", + "director": "Clint Eastwood", + "year": "2004", + "tags": "Drama", + "desc": "Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2ti3l1OeB8G94yyqfAI7nmMZUbA.jpg", + "length": "2h 12m" + }, + { + "title": "Downfall", + "director": "Oliver Hirschbiegel", + "year": "2004", + "tags": "Drama", + "desc": "In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cP1ElGjBhbZAAqmueXjHDKlSwiP.jpg", + "length": "3h 35m" + }, + { + "title": "A Very Long Engagement", + "director": "Jean-Pierre Jeunet", + "year": "2004", + "tags": "Drama", + "desc": "Young Frenchwoman Mathilde searches for the truth about her missing fianc\u00e9, lost during World War I, and learns many unexpected things along the way. The love of her life is gone. But she refuses to believe he's gone forever \u2014 and she needs to know for sure.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/t73m7lX0eFYDjlB1Gcb7r3S5Yt.jpg", + "length": "2h 13m" + }, + { + "title": "Sideways", + "director": "Alexander Payne", + "year": "2004", + "tags": "Comedy", + "desc": "Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/ves41wF7MFWqYASIJvtgOXaSkaE.jpg", + "length": "2h 7m" + }, + { + "title": "Crash", + "director": "Paul Haggis", + "year": "2005", + "tags": "Drama", + "desc": "In post-Sept. 11 Los Angeles, tensions erupt when the lives of a Brentwood housewife, her district attorney husband, a Persian shopkeeper, two cops, a pair of carjackers and a Korean couple converge during a 36-hour period.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/86BdPC6RDX88NC880pLidKn2LCj.jpg", + "length": "2h 52m" + }, + { + "title": "3-Iron", + "director": "Kim Ki-duk", + "year": "2004", + "tags": "Drama", + "desc": "A young man, whose only possession is a motorcycle, spends his time riding around the city looking for empty apartments. After finding one, he hangs out for a while, fixing himself something to eat, washing laundry or making small repairs in return. He always tries to leave before the owners get back but in one ostensibly empty mansion he meets the abused wife of a rich man and she escapes with him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/myv6rYCghzi2lyWJLbdhZM43JYK.jpg", + "length": "1h 28m" + }, + { + "title": "Head-On", + "director": "Fatih Akin", + "year": "2004", + "tags": "Drama", + "desc": "With the intention to break free from the strict familial restrictions, a suicidal young woman sets up a marriage of convenience with a forty-year-old addict, an act that will lead to an outburst of envious love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9L5BBJiXZss58EBcbw0l4holdzZ.jpg", + "length": "2h 57m" + }, + { + "title": "Moolaad\u00e9", + "director": "Ousmane Semb\u00e8ne", + "year": "2004", + "tags": "Drama", + "desc": "When a woman shelters a group of girls from suffering female genital mutilation, she starts a conflict that tears her village apart.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/9S7lWdLExHw6LP3Vq7smiyGY5MR.jpg", + "length": "2h 4m" + }, + { + "title": "The Consequences of Love", + "director": "Paolo Sorrentino", + "year": "2004", + "tags": "Drama", + "desc": "Lugano, Switzerland. Titta Di Girolamo is a discreet and sullen man who has been living for almost a decade in a modest hotel room, a prisoner of an atrocious routine, apparently without purpose. His past is a mystery, nobody knows what he does for a living, he answers indiscreet questions evasively. What secrets does this enigmatic man hide?", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2ubdrvMHcRTFzkUdmSIuvupLqRS.jpg", + "length": "2h 40m" + }, + { + "title": "Hidden", + "director": "Tim McLachlan", + "year": "2005", + "tags": "Thriller", + "desc": "Deep within a dark, twisted forest, at a faraway adventure camp, a group of young 'camp leaders' play a fast and furious game of 'hide and seek'. The atmosphere is strange and thick with tension - there is a feeling in the air that all is not well. Alliances are formed; relationships are tested, and in some cases disintegrate to the point of violence. All the while they are being watched by someone... or something. In a spectacular climax, the mystery begins to unravel as everything becomes suddenly and painfully clear. The shocking, violent truth is far worse than could ever have been imagined...", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/4dhovjvhwv2emCF2IP4s8gD68nV.jpg", + "length": "2h 33m" + }, + { + "title": "Live and Become", + "director": "Radu Mih\u0103ileanu", + "year": "2005", + "tags": "Drama", + "desc": "In 1980 the black Falashas in Ethiopia are recognised as genuine Jews and are secretly carried to Israel. The day before the transport the son of a Jewish mother dies. In his place and with his name (Schlomo) she takes a Christian 9-year-old boy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kc1GnNnFH99VWoSCQwPQ9ZslU4t.jpg", + "length": "2h 20m" + }, + { + "title": "Paradise Now", + "director": "Hany Abu-Assad", + "year": "2005", + "tags": "Thriller", + "desc": "Two childhood friends are recruited for a suicide bombing in Tel Aviv.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qWZkYa8VdcDZk8uzRB2PfhpM9IL.jpg", + "length": "2h 30m" + }, + { + "title": "Brokeback Mountain", + "director": "Ang Lee", + "year": "2005", + "tags": "Drama", + "desc": "Rodeo cowboy Jack and ranch hand Ennis are hired as sheepherders in 1963 Wyoming. One night on Brokeback Mountain, they spark a physical relationship. Though Ennis marries his longtime sweetheart and Jack marries a fellow rodeo rider, they keep up their tortured, sporadic love affair for 20 years.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5UZ283LuT8ClE4Iqw3u4gGZizab.jpg", + "length": "2h 14m" + }, + { + "title": "Tsotsi", + "director": "Gavin Hood", + "year": "2005", + "tags": "Crime", + "desc": "The South African multi-award winning film about a young South African boy from the ghetto named Tsotsi, meaning Gangster. Tsotsi, who left home as a child to get away from helpless parents, finds a baby in the back seat of a car that he has just stolen. He decides that it his responsibility to take care of the baby and in the process learns that maybe the gangster life isn\u2019t the best way.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fvPGF7NYuZJACYVRAAF3FXicVf0.jpg", + "length": "2h 34m" + }, + { + "title": "The Constant Gardener", + "director": "Fernando Meirelles", + "year": "2005", + "tags": "Drama", + "desc": "Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nkXq7V7mmJVbvwZGr3nxkHo7HkS.jpg", + "length": "2h 9m" + }, + { + "title": "Little Miss Sunshine", + "director": "Jonathan Dayton", + "year": "2006", + "tags": "Comedy", + "desc": "A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wKn7AJw730emlmzLSmJtzquwaeW.jpg", + "length": "2h 42m" + }, + { + "title": "The Prestige", + "director": "Christopher Nolan", + "year": "2006", + "tags": "Drama", + "desc": "A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tRNlZbgNCNOpLpbPEz5L8G8A0JN.jpg", + "length": "2h 10m" + }, + { + "title": "The Lives of Others", + "director": "Florian Henckel von Donnersmarck", + "year": "2006", + "tags": "Drama", + "desc": "In 1984 East Berlin, an agent of the secret police, conducting surveillance on a writer and his lover, finds himself becoming increasingly absorbed by their lives.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/cVUDMnskSc01rdbyH0tLATTJUdP.jpg", + "length": "2h 17m" + }, + { + "title": "United 93", + "director": "Paul Greengrass", + "year": "2006", + "tags": "Drama", + "desc": "A real-time account of the events on United Flight 93, one of the planes hijacked on 9/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aahr1uIPrEej8q4baE1RYXOXwFB.jpg", + "length": "2h 51m" + }, + { + "title": "Children of Men", + "director": "Alfonso Cuar\u00f3n", + "year": "2006", + "tags": "Drama", + "desc": "In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/k9IAS4TehZFcKi4HVByxZNPfqex.jpg", + "length": "2h 49m" + }, + { + "title": "Pan's Labyrinth", + "director": "Guillermo del Toro", + "year": "2006", + "tags": "Fantasy", + "desc": "Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2VVhikIxoztAXEDQZLOdtBsu6vf.jpg", + "length": "2h 58m" + }, + { + "title": "The Last King of Scotland", + "director": "Kevin Macdonald", + "year": "2006", + "tags": "Drama", + "desc": "Young Scottish doctor, Nicholas Garrigan decides it's time for an adventure after he finishes his formal education, so he decides to try his luck in Uganda, and arrives during the downfall of President Obote. General Idi Amin comes to power and asks Garrigan to become his personal doctor.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mTtgpH6UnHUtD8moRJUzfGLOZTj.jpg", + "length": "2h 3m" + }, + { + "title": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", + "director": "Larry Charles", + "year": "2006", + "tags": "Comedy", + "desc": "Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kfkyALfD4G1mlBJI1lOt2QCra4i.jpg", + "length": "1h 24m" + }, + { + "title": "The Queen", + "director": "Stephen Frears", + "year": "2006", + "tags": "Drama", + "desc": "The Queen is an intimate behind the scenes glimpse at the interaction between HM Elizabeth II and Prime Minister Tony Blair during their struggle, following the death of Diana, to reach a compromise between what was a private tragedy for the Royal family and the public's demand for an overt display of mourning.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/v08RH5Cx9EFAQMBWQuE5jHAgHYs.jpg", + "length": "2h 43m" + }, + { + "title": "Apocalypto", + "director": "Mel Gibson", + "year": "2006", + "tags": "Action", + "desc": "Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xVTSNeqEymd0iZKByf68A5nLIGM.jpg", + "length": "2h 19m" + }, + { + "title": "The Departed", + "director": "Martin Scorsese", + "year": "2006", + "tags": "Drama", + "desc": "To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nT97ifVT2J1yMQmeq20Qblg61T.jpg", + "length": "3h 31m" + }, + { + "title": "Volver", + "director": "Pedro Almod\u00f3var", + "year": "2006", + "tags": "Comedy", + "desc": "While a woman attempts to cover up her daughter's murder and reinvent her life, her sister is visited by their mother, who was thought to have died.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vix37Kc7EUURMC5Rgd6Z6KaEj5n.jpg", + "length": "2h 1m" + }, + { + "title": "Once", + "director": "John Carney", + "year": "2007", + "tags": "Drama", + "desc": "A vacuum repairman moonlights as a street musician and hopes for his big break. One day a Czech immigrant, who earns a living selling flowers, approaches him with the news that she is also an aspiring singer-songwriter. The pair decide to collaborate, and the songs that they compose reflect the story of their blossoming love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7nW363kSYRCkr4VGOMvuSGwtzKs.jpg", + "length": "1h 25m" + }, + { + "title": "The Host", + "director": "Bong Joon-ho", + "year": "2006", + "tags": "Horror", + "desc": "A teenage girl is captured by a giant mutated squid-like creature that appears from Seoul's Han River after toxic waste was dumped in it, prompting her family into a frantic search for her.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/dEDLY3KeghKFzks5nTDWdigVikr.jpg", + "length": "2h 0m" + }, + { + "title": "The Diving Bell and the Butterfly", + "director": "Julian Schnabel", + "year": "2007", + "tags": "Drama", + "desc": "The true story of Elle France editor Jean-Dominique Bauby, who, in 1995 at the age of 43, suffered a stroke that paralyzed his entire body, except his left eye. Using that eye to blink out his memoir, Bauby eloquently described the aspects of his interior world, from the psychological torment of being trapped inside his body to his imagined stories from lands he'd only visited in his mind.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3MJUo4bCPai5r9zrw7nTS8sVzQ7.jpg", + "length": "2h 52m" + }, + { + "title": "La Vie En Rose", + "director": "Olivier Dahan", + "year": "2007", + "tags": "Music", + "desc": "From the mean streets of the Belleville district of Paris to the dazzling limelight of New York's most famous concert halls, Edith Piaf's life was a constant battle to sing and survive, to live and love. Raised in her grandmother's brothel, Piaf was discovered in 1935 by nightclub owner Louis Leplee, who persuaded her to sing despite her extreme nervousness. Piaf became one of France's immortal icons, her voice one of the indelible signatures of the 20th century.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pmKVYXBb57iQ9cKXuYF1GCWxBip.jpg", + "length": "2h 20m" + }, + { + "title": "No Country for Old Men", + "director": "Joel Coen", + "year": "2007", + "tags": "Crime", + "desc": "Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/bj1v6YKF8yHqA489VFfnQvOJpnc.jpg", + "length": "2h 2m" + }, + { + "title": "Into the Wild", + "director": "Sean Penn", + "year": "2007", + "tags": "Adventure", + "desc": "After graduating from Emory University in 1992, top student and athlete Christopher McCandless abandons his possessions, gives his entire $24,000 savings account to charity, and hitchhikes to Alaska to live in the wilderness.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/2MSGZEE6XZd2r4ODNziwAw7Hpw0.jpg", + "length": "2h 28m" + }, + { + "title": "There Will Be Blood", + "director": "Paul Thomas Anderson", + "year": "2007", + "tags": "Drama", + "desc": "Ruthless silver miner, turned oil prospector, Daniel Plainview, moves to oil-rich California. Using his son to project a trustworthy, family-man image, Plainview cons local landowners into selling him their valuable properties for a pittance. However, local preacher Eli Sunday suspects Plainview's motives and intentions, starting a slow-burning feud that threatens both their lives.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fa0RDkAlCec0STeMNAhPaF89q6U.jpg", + "length": "3h 38m" + }, + { + "title": "Atonement", + "director": "Joe Wright", + "year": "2007", + "tags": "Drama", + "desc": "As a 13-year-old, fledgling writer Briony Tallis irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hMRIyBjPzxaSXWM06se3OcNjIQa.jpg", + "length": "2h 3m" + }, + { + "title": "Surfwise", + "director": "Doug Pray", + "year": "2007", + "tags": "Documentary", + "desc": "The inspiring and tumultuous story of 85-year old surfer, health advocate and sex guru, Dr. Dorian \"Doc\" Paskowitz, his wife Juliette, and their nine children who were all home-schooled and raised in a small camper on the beach, where they surfed and had to adhere to the strict diet and lifestyle of animals in the wild.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jUDhBB4UPEifhPmjwviul5KxhIM.jpg", + "length": "2h 33m" + }, + { + "title": "The Bourne Ultimatum", + "director": "Paul Greengrass", + "year": "2007", + "tags": "Action", + "desc": "Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/15rMz5MRXFp7CP4VxhjYw4y0FUn.jpg", + "length": "2h 55m" + }, + { + "title": "Paranormal Activity", + "director": "Oren Peli", + "year": "2007", + "tags": "Horror", + "desc": "After a young, middle-class couple moves into what seems like a typical suburban house, they become increasingly disturbed by a presence that may or may not be demonic but is certainly the most active in the middle of the night.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tmclkEpjeo4Zu564gf3KrwIOuKw.jpg", + "length": "1h 26m" + }, + { + "title": "WALL-E", + "director": "Andrew Stanton", + "year": "2008", + "tags": "Animation", + "desc": "What if mankind had to leave Earth and somebody forgot to turn the last robot off? After hundreds of years doing what he was built for, WALL•E discovers a new purpose in life when he meets a sleek search robot named EVE. EVE comes to realize that WALL•E has inadvertently stumbled upon the key to the planet's future, and races back to space to report to the humans. Meanwhile, WALL•E chases EVE across the galaxy and sets into motion one of the most imaginative adventures ever brought to the big screen.", + "img": "https://www.themoviedb.org/t/p/w600_and_h900_bestv2/hbhFnRzzg6ZDmm8YAmxBnQpQIPh.jpg", + "length": "1h 38m" + }, + { + "title": "The Good, the Bad, the Weird", + "director": "Kim Jee-woon", + "year": "2008", + "tags": "Action", + "desc": "The story of three Korean outlaws in 1930s Manchuria and their dealings with the Japanese army and Chinese and Russian bandits. The Good (a bounty hunter), the Bad (a hitman), and the Weird (a thief) battle the army and the bandits in a race to use a treasure map to uncover the riches of legend.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lbPZ0aNoF0cHisg6DubFO2eS8so.jpg", + "length": "2h 10m" + }, + { + "title": "The Dark Knight", + "director": "Christopher Nolan", + "year": "2008", + "tags": "Drama", + "desc": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/qJ2tW6WMUDux911r6m7haRef0WH.jpg", + "length": "3h 32m" + }, + { + "title": "The Wrestler", + "director": "Darren Aronofsky", + "year": "2008", + "tags": "Drama", + "desc": "Aging wrestler Randy \"The Ram\" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6OTR8dSoNGjWohJNo3UhIGd3Tj.jpg", + "length": "2h 49m" + }, + { + "title": "The Curious Case of Benjamin Button", + "director": "David Fincher", + "year": "2008", + "tags": "Drama", + "desc": "Born under unusual circumstances, Benjamin Button springs into being as an elderly man in a New Orleans nursing home and ages in reverse. Twelve years after his birth, he meets Daisy, a child who flits in and out of his life as she grows up to be a dancer. Though he has all sorts of unusual adventures over the course of his life, it is his relationship with Daisy, and the hope that they will come together at the right time, that drives Benjamin forward.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/26wEWZYt6yJkwRVkjcbwJEFh9IS.jpg", + "length": "3h 46m" + }, + { + "title": "Gomorrah", + "director": "Matteo Garrone", + "year": "2008", + "tags": "Drama", + "desc": "An inside look at Italy's modern-day crime families, the Camorra in Naples and Caserta. Based on a book by Roberto Saviano. Power, money and blood: these are the \"values\" that the residents of the Province of Naples and Caserta have to face every day. They hardly ever have a choice and are forced to obey the rules of the Camorra. Only a lucky few can even think of leading a normal life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/3XcCTqSovFZE5GRebJmh1kHwziw.jpg", + "length": "2h 16m" + }, + { + "title": "The Class", + "director": "Laurent Cantet", + "year": "2008", + "tags": "Drama", + "desc": "Teacher and novelist Fran\u00e7ois B\u00e9gaudeau plays a version of himself as he negotiates a year with his racially mixed students from a tough Parisian neighborhood.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lKrakapUIo9OeqmcDrWkyQpjM3L.jpg", + "length": "2h 8m" + }, + { + "title": "Slumdog Millionaire", + "director": "Danny Boyle", + "year": "2008", + "tags": "Drama", + "desc": "A teenager reflects on his life after being accused of cheating on the Indian version of \"Who Wants to be a Millionaire?\".", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5leCCi7ZF0CawAfM5Qo2ECKPprc.jpg", + "length": "2h 0m" + }, + { + "title": "Anvil! the Story of Anvil", + "director": "Sacha Gervasi", + "year": "2008", + "tags": "Documentary", + "desc": "At 14, best friends Robb Reiner and Lips made a pact to rock together forever. Their band, Anvil, hailed as the \"demi-gods of Canadian metal\" influenced a musical generation that includes Metallica, Slayer, and Anthrax. Following a calamitous European tour, Lips and Robb, now in their fifties, set off to record their 13th album in one last attempt to fulfill their boyhood dreams.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rDrMuFaWBKwjwEnw4C06Sm97huY.jpg", + "length": "1h 21m" + }, + { + "title": "Let the Right One in", + "director": "Tomas Alfredson", + "year": "2008", + "tags": "Horror", + "desc": "Set in 1982 in the suburb of Blackeberg, Stockholm, twelve-year-old Oskar is a lonely outsider, bullied at school by his classmates; at home, Oskar dreams of revenge against a trio of bullies. He befriends his twelve-year-old, next-door neighbor Eli, who only appears at night in the snow-covered playground outside their building.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/hCv9Y4mR7NwwfeVVXUf6Rx8Ds3O.jpg", + "length": "2h 54m" + }, + { + "title": "The Hurt Locker", + "director": "Kathryn Bigelow", + "year": "2008", + "tags": "Drama", + "desc": "During the Iraq War, a Sergeant recently assigned to an army bomb squad is put at odds with his squad mates due to his maverick way of handling his work.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m2duGsKjBOl3BB8uFOTnRUzdEhg.jpg", + "length": "2h 11m" + }, + { + "title": "Avatar", + "director": "James Cameron", + "year": "2009", + "tags": "Action", + "desc": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kyeqWdyUXW608qlYkRqosgbbJyK.jpg", + "length": "3h 42m" + }, + { + "title": "District 9", + "director": "Neill Blomkamp", + "year": "2009", + "tags": "Science Fiction", + "desc": "Thirty years ago, aliens arrive on Earth. Not to conquer or give aid, but to find refuge from their dying planet. Separated from humans in a South African area called District 9, the aliens are managed by Multi-National United, which is unconcerned with the aliens' welfare but will do anything to master their advanced technology. When a company field agent contracts a mysterious virus that begins to alter his DNA, there is only one place he can hide: District 9.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tuGlQkqLxnodDSk6mp5c2wvxUEd.jpg", + "length": "2h 52m" + }, + { + "title": "The Hangover", + "director": "Todd Phillips", + "year": "2009", + "tags": "Comedy", + "desc": "When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug \u2013 who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/uluhlXubGu1VxU63X9VHCLWDAYP.jpg", + "length": "2h 40m" + }, + { + "title": "In the Loop", + "director": "Armando Iannucci", + "year": "2009", + "tags": "Comedy", + "desc": "The US President and the UK Prime Minister are planning on launching a war in the Middle East, but\u2014behind the scenes\u2014government officials and advisers are either promoting the war or are trying to prevent it.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/jL6txnziFSeEifQkqnPBtaPaiXU.jpg", + "length": "2h 46m" + }, + { + "title": "The White Ribbon", + "director": "Michael Haneke", + "year": "2009", + "tags": "Drama", + "desc": "An aged tailor recalls his life as the schoolteacher of a small village in Northern Germany that was struck by a series of strange events in the year leading up to WWI.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/54dlnGDexrwAFlDb8HWKfmmX4LB.jpg", + "length": "2h 24m" + }, + { + "title": "Inglourious Basterds", + "director": "Quentin Tarantino", + "year": "2009", + "tags": "Drama", + "desc": "In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7sfbEnaARXDDhKm0CZ7D7uc2sbo.jpg", + "length": "3h 33m" + }, + { + "title": "Fish Tank", + "director": "Andrea Arnold", + "year": "2009", + "tags": "Drama", + "desc": "Mia is a rebellious teenager on the verge of being kicked out of school. Her hard-partying mother, Joanne, neglects Mia's welfare in favor of her own, and her younger sister hangs out with a much older crowd. Sparks fly between Mia and Connor, Joanne's new boyfriend, and he encourages Mia to pursue her interest in dance. As the boundaries of the relationships become blurred, Mia and Joanne compete for Connor's affection.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rI3MKBDsWzQHi9PWDAMKkgmYcff.jpg", + "length": "2h 3m" + }, + { + "title": "An Education", + "director": "Lone Scherfig", + "year": "2009", + "tags": "Drama", + "desc": "Despite her sheltered upbringing, Jenny is a teen with a bright future; she's smart, pretty, and has aspirations of attending Oxford University. When David, a charming but much older suitor, motors into her life in a shiny automobile, Jenny gets a taste of adult life that she won't soon forget.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gLIvvUdlocGjm8XVLxhWHAKWrRq.jpg", + "length": "2h 40m" + }, + { + "title": "Precious", + "director": "Lee Daniels", + "year": "2009", + "tags": "Drama", + "desc": "Set in Harlem in 1987, Claireece \"Precious\" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret; She can't read.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d4ltLIDbvZskSwbzXqi0Hfv5ma4.jpg", + "length": "2h 50m" + }, + { + "title": "Monsters", + "director": "Gareth Edwards", + "year": "2010", + "tags": "Drama", + "desc": "Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain \"the creatures,\" while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/mDkqx9HDzVcAVsN7HgNEK2uOzWt.jpg", + "length": "2h 34m" + }, + { + "title": "Of Gods and Men", + "director": "Xavier Beauvois", + "year": "2010", + "tags": "Drama", + "desc": "French drama based on the 1996 kidnapping and killing of seven monks in Algeria. A group of Trappist monks reside in the monastery of Tibhirine in Algeria, where they live in harmony with the largely muslim population. When a bloody conflict between Algeria's army and Muslim Jihadi insurgents disrupts the peace, they are forced to consider fleeing the monastery and deserting the villagers they have ministered to. In the face of deadly violence the monks wrestle with their faith and their convictions, eventually deciding to stay and help their neighbours keep the army and the insurgents at bay.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fgrC0w62MCc7Fn77l5RVY0WKv0t.jpg", + "length": "2h 0m" + }, + { + "title": "Black Swan", + "director": "Darren Aronofsky", + "year": "2010", + "tags": "Drama", + "desc": "A journey through the psyche of a young ballerina whose starring role as the duplicitous swan queen turns out to be a part for which she becomes frighteningly perfect.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/rH19vkjAzCZ0HIUvrgB3rowm68h.jpg", + "length": "2h 48m" + }, + { + "title": "Four Lions", + "director": "Chris Morris", + "year": "2010", + "tags": "Comedy", + "desc": "A group of Muslim men living in Sheffield hatch an inept plan to become suicide bombers.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/x4JzaRPXBs9wiHCe3e3ymXWuwfd.jpg", + "length": "2h 37m" + }, + { + "title": "The Social Network", + "director": "David Fincher", + "year": "2010", + "tags": "Drama", + "desc": "In 2003, Harvard undergrad and computer genius Mark Zuckerberg begins work on a new concept that eventually turns into the global social network known as Facebook. Six years later, he is one of the youngest billionaires ever, but Zuckerberg finds that his unprecedented success leads to both personal and legal complications when he ends up on the receiving end of two lawsuits, one involving his former friend.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/n0ybibhJtQ5icDqTp8eRytcIHJx.jpg", + "length": "2h 1m" + }, + { + "title": "Inception", + "director": "Christopher Nolan", + "year": "2010", + "tags": "Action", + "desc": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oYuLEt3zVCKq57qu2F8dT7NIa6f.jpg", + "length": "2h 28m" + }, + { + "title": "The King's Speech", + "director": "Tom Hooper", + "year": "2010", + "tags": "Drama", + "desc": "The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/pVNKXVQFukBaCz6ML7GH3kiPlQP.jpg", + "length": "2h 58m" + }, + { + "title": "True Grit", + "director": "Joel Coen", + "year": "2010", + "tags": "Drama", + "desc": "Following the murder of her father by a hired hand, a 14-year-old farm girl sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find\u2014a man with 'true grit'\u2014Reuben J. 'Rooster' Cogburn.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/tCrB8pcjadZjsDk7rleGJaIv78k.jpg", + "length": "2h 50m" + }, + { + "title": "Senna", + "director": "Asif Kapadia", + "year": "2010", + "tags": "Documentary", + "desc": "The remarkable story of Brazilian racing driver Ayrton Senna, charting his physical and spiritual achievements on the track and off, his quest for perfection, and the mythical status he has since attained, is the subject of Senna, a documentary feature that spans the racing legend's years as an F1 driver, from his opening season in 1984 to his untimely death a decade later.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nZbLCbRoP6iJq5sr8daHQzjnzFh.jpg", + "length": "2h 46m" + }, + { + "title": "Toy Story 3", + "director": "Lee Unkrich", + "year": "2010", + "tags": "Animation", + "desc": "Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/AbbXspMOwdvwWZgVN0nabZq03Ec.jpg", + "length": "2h 43m" + }, + { + "title": "Cave of Forgotten Dreams", + "director": "Werner Herzog", + "year": "2010", + "tags": "Documentary", + "desc": "Werner Herzog gains exclusive access to film inside the Chauvet caves of Southern France, capturing the oldest known pictorial creations of humankind in their astonishing natural setting.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7qBfQ2x3FnbB7uRaHQOBjfWFBpc.jpg", + "length": "2h 30m" + }, + { + "title": "Shame", + "director": "Steve McQueen", + "year": "2011", + "tags": "Drama", + "desc": "Brandon, a thirty-something man living in New York, eludes intimacy with women but feeds his deepest desires with a compulsive addiction to sex. When his younger sister temporarily moves into his apartment, stirring up bitter memories of their shared painful past, Brandon's life, like his fragile mind, gets out of control.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/aywgzSw9LK4z3DxMPZsNbzWYqQ1.jpg", + "length": "2h 42m" + }, + { + "title": "Le Havre", + "director": "Aki Kaurism\u00e4ki", + "year": "2011", + "tags": "Drama", + "desc": "In the French harbor city of Le Havre, fate throws young African refugee Idrissa into the path of Marcel Marx, a well-spoken bohemian who works as a shoe-shiner. With innate optimism and the tireless support of his community, Marcel stands up to officials pursuing the boy for deportation.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/zBmY6X1hO1MKDj2bNXZ17Q6RDVJ.jpg", + "length": "2h 34m" + }, + { + "title": "The Tree of Life", + "director": "Terrence Malick", + "year": "2011", + "tags": "Drama", + "desc": "The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/l8cwuB5WJSoj4uMAsnzuHBOMaSJ.jpg", + "length": "2h 19m" + }, + { + "title": "The Kid With a Bike", + "director": "Luc Dardenne", + "year": "2011", + "tags": "Drama", + "desc": "Abandoned by his father, a young boy is left in the hands of an unqualified childcare provider.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/5uRiWyYSAYYScTRe9HP7BHpOQvr.jpg", + "length": "1h 27m" + }, + { + "title": "The Girl With the Dragon Tattoo", + "director": "David Fincher", + "year": "2011", + "tags": "Thriller", + "desc": "Disgraced journalist Mikael Blomkvist investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8bokS83zGdhaXgN9tjidUKmAftW.jpg", + "length": "3h 38m" + }, + { + "title": "Tinker Tailor Soldier Spy", + "director": "Tomas Alfredson", + "year": "2011", + "tags": "Drama", + "desc": "In the bleak days of the Cold War, espionage veteran George Smiley is forced from semi-retirement to uncover a Soviet mole within his former colleagues at the heart of MI6.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/e0dZ7TapGY9HtJ9xk1TUHPEOccl.jpg", + "length": "2h 7m" + }, + { + "title": "War Horse", + "director": "Steven Spielberg", + "year": "2011", + "tags": "War", + "desc": "On the brink of the First World War, Albert's beloved horse Joey is sold to the Cavalry by his father. Against the backdrop of the Great War, Joey begins an odyssey full of danger, joy, and sorrow, and he transforms everyone he meets along the way. Meanwhile, Albert, unable to forget his equine friend, searches the battlefields of France to find Joey and bring him home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nF66DU2zPLFb9CxDQNSNX2RgNaq.jpg", + "length": "2h 26m" + }, + { + "title": "A Separation", + "director": "Asghar Farhadi", + "year": "2011", + "tags": "Drama", + "desc": "A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xQadpnoLokxzN3hRpCPbBGpxsiz.jpg", + "length": "2h 3m" + }, + { + "title": "Bridesmaids", + "director": "Paul Feig", + "year": "2011", + "tags": "Comedy", + "desc": "Annie's life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian's maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she\u2019ll show Lillian and her bridesmaids just how far you\u2019ll go for someone you love.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/gJtA7hYsBMQ7EM3sPBMUdBfU7a0.jpg", + "length": "2h 5m" + }, + { + "title": "The Descendants", + "director": "Alexander Payne", + "year": "2011", + "tags": "Comedy", + "desc": "With his wife Elizabeth on life support after a boating accident, Hawaiian land baron Matt King takes his daughters on a trip from Oahu to Kauai to confront a young real estate broker, who was having an affair with Elizabeth before her misfortune.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/8cDq5UlOPYeKm39okALCEOsZPxk.jpg", + "length": "2h 56m" + }, + { + "title": "Hugo", + "director": "Martin Scorsese", + "year": "2011", + "tags": "Adventure", + "desc": "Orphaned and alone except for an uncle, Hugo Cabret lives in the walls of a train station in 1930s Paris. Hugo's job is to oil and maintain the station's clocks, but to him, his more important task is to protect a broken automaton and notebook left to him by his late father. Accompanied by the goddaughter of an embittered toy merchant, Hugo embarks on a quest to solve the mystery of the automaton and find a place he can call home.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/vDAhBTIHvIoNOlgCfmLirVgUK2p.jpg", + "length": "2h 6m" + }, + { + "title": "The Artist", + "director": "Michel Hazanavicius", + "year": "2011", + "tags": "Drama", + "desc": "Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/z68py0ZqPgeacGPG54AGVRbNBS7.jpg", + "length": "2h 40m" + }, + { + "title": "The Cabin in the Woods", + "director": "Drew Goddard", + "year": "2012", + "tags": "Horror", + "desc": "Five friends go for a break at a remote cabin, where they get more than they bargained for, discovering the truth behind the cabin in the woods.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kjDXrK3ReIwuDrpWElI5OQkKYTA.jpg", + "length": "2h 35m" + }, + { + "title": "Drive", + "director": "Nicolas Winding Refn", + "year": "2011", + "tags": "Drama", + "desc": "Driver is a skilled Hollywood stuntman who moonlights as a getaway driver for criminals. Though he projects an icy exterior, lately he's been warming up to a pretty neighbor named Irene and her young son, Benicio. When Irene's husband gets out of jail, he enlists Driver's help in a million-dollar heist. The job goes horribly wrong, and Driver must risk his life to protect Irene and Benicio from the vengeful masterminds behind the robbery.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/602vevIURmpDfzbnv5Ubi6wIkQm.jpg", + "length": "2h 40m" + }, + { + "title": "Lincoln", + "director": "Steven Spielberg", + "year": "2012", + "tags": "History", + "desc": "The revealing story of the 16th US President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/oOo905cttAIkHERDBya5sX6HbIV.jpg", + "length": "2h 29m" + }, + { + "title": "Les Mis\u00e9rables", + "director": "Not known", + "year": "2012", + "tags": "#Movie", + "desc": "Not known", + "img": "600x900.svg", + "length": "0h 0m" + }, + { + "title": "Django Unchained", + "director": "Quentin Tarantino", + "year": "2012", + "tags": "Drama", + "desc": "With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/7oWY8VDWW7thTzWh3OKYRkWUlD5.jpg", + "length": "3h 45m" + }, + { + "title": "Skyfall", + "director": "Sam Mendes", + "year": "2012", + "tags": "Action", + "desc": "When Bond's latest assignment goes gravely wrong, agents around the world are exposed and MI6 headquarters is attacked. While M faces challenges to her authority and position from Gareth Mallory, the new Chairman of the Intelligence and Security Committee, it's up to Bond, aided only by field agent Eve, to locate the mastermind behind the attack.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/d0IVecFQvsGdSbnMAHqiYsNYaJT.jpg", + "length": "2h 23m" + }, + { + "title": "Life of Pi", + "director": "Ang Lee", + "year": "2012", + "tags": "Adventure", + "desc": "The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/iLgRu4hhSr6V1uManX6ukDriiSc.jpg", + "length": "2h 7m" + }, + { + "title": "Argo", + "director": "Ben Affleck", + "year": "2012", + "tags": "Drama", + "desc": "As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/m5gPWFZFIp4UJFABgWyLkbXv8GX.jpg", + "length": "2h 0m" + }, + { + "title": "Amour", + "director": "Michael Haneke", + "year": "2012", + "tags": "Drama", + "desc": "Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has a stroke, and the couple's bond of love is severely tested.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/lRWvyGCmQzDT0ff5sOY0MWKRP6i.jpg", + "length": "2h 7m" + }, + { + "title": "Nostalgia for the Light", + "director": "Patricio Guzm\u00e1n", + "year": "2010", + "tags": "Documentary", + "desc": "In Chile's Atacama Desert, astronomers peer deep into the cosmos in search for answers concerning the origins of life. Nearby, a group of women sift through the sand searching for body parts of loved ones, dumped unceremoniously by Pinochet's regime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/62dxABTMRYgrMwK8nUvXzTITcR.jpg", + "length": "2h 33m" + }, + { + "title": "Wadjda", + "director": "Haifaa al-Mansour", + "year": "2012", + "tags": "Drama", + "desc": "An enterprising Saudi girl signs on for her school's Quran recitation competition as a way to raise the remaining funds she needs in order to buy the green bicycle that has captured her interest.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/w4iCIZ1kWSOCt0yELjfUMNAToUF.jpg", + "length": "2h 38m" + }, + { + "title": "Blancanieves", + "director": "Pablo Berger", + "year": "2012", + "tags": "Drama", + "desc": "A black and white silent movie, based on the Snow White fairy tale, that is set in a romantic version of 1920s Seville and centered on a female bullfighter.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/fxniOWnVgpJLAOBwXEsIpZs01uN.jpg", + "length": "2h 44m" + }, + { + "title": "The Act of Killing", + "director": "Joshua Oppenheimer", + "year": "2012", + "tags": "Documentary", + "desc": "Filmmakers expose the horrifying mass executions of accused communists in Indonesia and those who are celebrated in their country for perpetrating the crime.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/wg9QERtcZTTcOu6La3nZCfJUMHG.jpg", + "length": "3h 39m" + }, + { + "title": "12 Years a Slave", + "director": "Steve McQueen", + "year": "2013", + "tags": "Drama", + "desc": "In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon\u2019s chance meeting with a Canadian abolitionist will forever alter his life.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/xdANQijuNrJaw1HA61rDccME4Tm.jpg", + "length": "2h 14m" + }, + { + "title": "Gravity", + "director": "Alfonso Cuar\u00f3n", + "year": "2013", + "tags": "Science Fiction", + "desc": "Dr. Ryan Stone, a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kZ2nZw8D681aphje8NJi8EfbL1U.jpg", + "length": "2h 31m" + }, + { + "title": "The Great Beauty", + "director": "Paolo Sorrentino", + "year": "2013", + "tags": "Drama", + "desc": "Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/1cmOc3ZPkuCTOTqHEsRr3Pk81Um.jpg", + "length": "2h 22m" + }, + { + "title": "Blue Is the Warmest Color", + "director": "Abdellatif Kechiche", + "year": "2013", + "tags": "Romance", + "desc": "Ad\u00e8le's life is changed when she meets Emma, a young woman with blue hair, who will allow her to discover desire, to assert herself as a woman and as an adult. In front of others, Adele grows, seeks herself, loses herself, finds herself.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/kgUk1wti2cvrptIgUz0VTAtSF6w.jpg", + "length": "3h 0m" + }, + { + "title": "The Wolf of Wall Street", + "director": "Martin Scorsese", + "year": "2013", + "tags": "Crime", + "desc": "A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/34m2tygAYBGqA9MXKhRDtzYd4MR.jpg", + "length": "3h 0m" + }, + { + "title": "American Hustle", + "director": "David O. Russell", + "year": "2013", + "tags": "Drama", + "desc": "A conman and his seductive partner are forced to work for a wild FBI agent, who pushes them into a world of Jersey power-brokers and the Mafia.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/koXGRfatN0tURFWMA0Keb0p0Gtg.jpg", + "length": "2h 18m" + }, + { + "title": "Inside Llewyn Davis", + "director": "Joel Coen", + "year": "2013", + "tags": "Drama", + "desc": "In Greenwich Village in the early 1960s, gifted but volatile folk musician Llewyn Davis struggles with money, relationships, and his uncertain future.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/nNxK3pC3DMpPpWKMvo2p3liREVT.jpg", + "length": "2h 44m" + }, + { + "title": "Nebraska", + "director": "Alexander Payne", + "year": "2013", + "tags": "Drama", + "desc": "An aging, booze-addled father takes a trip from Montana to Nebraska with his estranged son in order to claim what he believes to be a million-dollar sweepstakes prize.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/o1t2Mw18EEBnl8v4Nby3PFjxnM1.jpg", + "length": "2h 55m" + }, + { + "title": "A Touch of Sin", + "director": "Jia Zhangke", + "year": "2013", + "tags": "Drama", + "desc": "Four independent stories set in modern China about random acts of violence.", + "img": "https://image.tmdb.org/t/p/w600_and_h900_bestv2/6I6XVBrUYBWPDPMdk647VvTSNqx.jpg", + "length": "2h 11m" + } + ] +} \ No newline at end of file diff --git a/src/img_movie.jpg b/src/img_movie.jpg deleted file mode 100644 index bbeb8bd253e71b2890b8ef053e5c2b23d957f9ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31527 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