From 7478e610d99d1f2fb383ecbfa0b70d72eae27f81 Mon Sep 17 00:00:00 2001 From: server Date: Tue, 10 Dec 2019 18:12:37 -0500 Subject: solr changes --- solr-8.3.1/example/films/README.txt | 138 + solr-8.3.1/example/films/film_data_generator.py | 117 + solr-8.3.1/example/films/films-LICENSE.txt | 3 + solr-8.3.1/example/films/films.csv | 1101 ++ solr-8.3.1/example/films/films.json | 15830 ++++++++++++++++++++++ solr-8.3.1/example/films/films.xml | 11438 ++++++++++++++++ 6 files changed, 28627 insertions(+) create mode 100644 solr-8.3.1/example/films/README.txt create mode 100644 solr-8.3.1/example/films/film_data_generator.py create mode 100644 solr-8.3.1/example/films/films-LICENSE.txt create mode 100644 solr-8.3.1/example/films/films.csv create mode 100644 solr-8.3.1/example/films/films.json create mode 100644 solr-8.3.1/example/films/films.xml (limited to 'solr-8.3.1/example/films') diff --git a/solr-8.3.1/example/films/README.txt b/solr-8.3.1/example/films/README.txt new file mode 100644 index 000000000..d1679d222 --- /dev/null +++ b/solr-8.3.1/example/films/README.txt @@ -0,0 +1,138 @@ +We have a movie data set in JSON, Solr XML, and CSV formats. +All 3 formats contain the same data. You can use any one format to index documents to Solr. + +The data is fetched from Freebase and the data license is present in the films-LICENSE.txt file. + +This data consists of the following fields: + * "id" - unique identifier for the movie + * "name" - Name of the movie + * "directed_by" - The person(s) who directed the making of the film + * "initial_release_date" - The earliest official initial film screening date in any country + * "genre" - The genre(s) that the movie belongs to + + Steps: + * Start Solr: + bin/solr start + + * Create a "films" core: + bin/solr create -c films + + * Set the schema on a couple of fields that Solr would otherwise guess differently (than we'd like) about: +curl http://localhost:8983/solr/films/schema -X POST -H 'Content-type:application/json' --data-binary '{ + "add-field" : { + "name":"name", + "type":"text_general", + "multiValued":false, + "stored":true + }, + "add-field" : { + "name":"initial_release_date", + "type":"pdate", + "stored":true + } +}' + + * Now let's index the data, using one of these three commands: + + - JSON: bin/post -c films example/films/films.json + - XML: bin/post -c films example/films/films.xml + - CSV: bin/post \ + -c films \ + example/films/films.csv \ + -params "f.genre.split=true&f.directed_by.split=true&f.genre.separator=|&f.directed_by.separator=|" + + * Let's get searching! + - Search for 'Batman': + http://localhost:8983/solr/films/query?q=name:batman + + * If you get an error about the name field not existing, you haven't yet indexed the data + * If you don't get an error, but zero results, chances are that the _name_ field schema type override wasn't set + before indexing the data the first time (it ended up as a "string" type, requiring exact matching by case even). + It's easiest to simply reset the environment and try again, ensuring that each step successfully executes. + + - Show me all 'Super hero' movies: + http://localhost:8983/solr/films/query?q=*:*&fq=genre:%22Superhero%20movie%22 + + - Let's see the distribution of genres across all the movies. See the facet section of the response for the counts: + http://localhost:8983/solr/films/query?q=*:*&facet=true&facet.field=genre + + - Browse the indexed films in a traditional browser search interface: + http://localhost:8983/solr/films/browse + + Now browse including the genre field as a facet: + http://localhost:8983/solr/films/browse?facet.field=genre + + If you want to set a facet for /browse to keep around for every request add the facet.field into the "facets" + param set (which the /browse handler is already configured to use): +curl http://localhost:8983/solr/films/config/params -H 'Content-type:application/json' -d '{ +"update" : { + "facets": { + "facet.field":"genre" + } + } +}' + + And now http://localhost:8983/solr/films/browse will display the _genre_ facet automatically. + +Exploring the data further - + + * Increase the MAX_ITERATIONS value, put in your freebase API_KEY and run the film_data_generator.py script using Python 3. + Now re-index Solr with the new data. + +FAQ: + Why override the schema of the _name_ and _initial_release_date_ fields? + + Without overriding those field types, the _name_ field would have been guessed as a multi-valued string field type + and _initial_release_date_ would have been guessed as a multi-valued pdate type. It makes more sense with this + particular data set domain to have the movie name be a single valued general full-text searchable field, + and for the release date also to be single valued. + + How do I clear and reset my environment? + + See the script below. + + Is there an easy to copy/paste script to do all of the above? + + Here ya go << END_OF_SCRIPT + +bin/solr stop +rm server/logs/*.log +rm -Rf server/solr/films/ +bin/solr start +bin/solr create -c films +curl http://localhost:8983/solr/films/schema -X POST -H 'Content-type:application/json' --data-binary '{ + "add-field" : { + "name":"name", + "type":"text_general", + "multiValued":false, + "stored":true + }, + "add-field" : { + "name":"initial_release_date", + "type":"pdate", + "stored":true + } +}' +bin/post -c films example/films/films.json +curl http://localhost:8983/solr/films/config/params -H 'Content-type:application/json' -d '{ +"update" : { + "facets": { + "facet.field":"genre" + } + } +}' + +# END_OF_SCRIPT + +Additional fun - + +Add highlighting: +curl http://localhost:8983/solr/films/config/params -H 'Content-type:application/json' -d '{ +"set" : { + "browse": { + "hl":"on", + "hl.fl":"name" + } + } +}' +try http://localhost:8983/solr/films/browse?q=batman now, and you'll see "batman" highlighted in the results diff --git a/solr-8.3.1/example/films/film_data_generator.py b/solr-8.3.1/example/films/film_data_generator.py new file mode 100644 index 000000000..7e2a46318 --- /dev/null +++ b/solr-8.3.1/example/films/film_data_generator.py @@ -0,0 +1,117 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" +This will generate a movie data set of 1100 records. +These are the first 1100 movies which appear when querying the Freebase of type '/film/film'. +Here is the link to the freebase page - https://www.freebase.com/film/film?schema= + +Usage - python3 film_data_generator.py +""" + +import csv +import copy +import json +import codecs +import datetime +import urllib.parse +import urllib.request +import xml.etree.cElementTree as ET +from xml.dom import minidom + +MAX_ITERATIONS=10 #10 limits it to 1100 docs + +# You need an API Key by Google to run this +API_KEY = '' +service_url = 'https://www.googleapis.com/freebase/v1/mqlread' +query = [{ + "id": None, + "name": None, + "initial_release_date": None, + "directed_by": [], + "genre": [], + "type": "/film/film", + "initial_release_date>" : "2000" +}] + +def gen_csv(filmlist): + filmlistDup = copy.deepcopy(filmlist) + #Convert multi-valued to % delimited string + for film in filmlistDup: + for key in film: + if isinstance(film[key], list): + film[key] = '|'.join(film[key]) + keys = ['name', 'directed_by', 'genre', 'type', 'id', 'initial_release_date'] + with open('films.csv', 'w', newline='', encoding='utf8') as csvfile: + dict_writer = csv.DictWriter(csvfile, keys) + dict_writer.writeheader() + dict_writer.writerows(filmlistDup) + +def gen_json(filmlist): + filmlistDup = copy.deepcopy(filmlist) + with open('films.json', 'w') as jsonfile: + jsonfile.write(json.dumps(filmlist, indent=2)) + +def gen_xml(filmlist): + root = ET.Element("add") + for film in filmlist: + doc = ET.SubElement(root, "doc") + for key in film: + if isinstance(film[key], list): + for value in film[key]: + field = ET.SubElement(doc, "field") + field.set("name", key) + field.text=value + else: + field = ET.SubElement(doc, "field") + field.set("name", key) + field.text=film[key] + tree = ET.ElementTree(root) + with open('films.xml', 'w') as f: + f.write( minidom.parseString(ET.tostring(tree.getroot(),'utf-8')).toprettyxml(indent=" ") ) + +def do_query(filmlist, cursor=""): + params = { + 'query': json.dumps(query), + 'key': API_KEY, + 'cursor': cursor + } + url = service_url + '?' + urllib.parse.urlencode(params) + data = urllib.request.urlopen(url).read().decode('utf-8') + response = json.loads(data) + for item in response['result']: + del item['type'] # It's always /film/film. No point of adding this. + try: + datetime.datetime.strptime(item['initial_release_date'], "%Y-%m-%d") + except ValueError: + #Date time not formatted properly. Keeping it simple by removing the date field from that doc + del item['initial_release_date'] + filmlist.append(item) + return response.get("cursor") + + +if __name__ == "__main__": + filmlist = [] + cursor = do_query(filmlist) + i=0 + while(cursor): + cursor = do_query(filmlist, cursor) + i = i+1 + if i==MAX_ITERATIONS: + break + + gen_json(filmlist) + gen_csv(filmlist) + gen_xml(filmlist) diff --git a/solr-8.3.1/example/films/films-LICENSE.txt b/solr-8.3.1/example/films/films-LICENSE.txt new file mode 100644 index 000000000..b1b630ba1 --- /dev/null +++ b/solr-8.3.1/example/films/films-LICENSE.txt @@ -0,0 +1,3 @@ +The films data (films.json/.xml/.csv) is licensed under the Creative Commons Attribution 2.5 Generic License. +To view a copy of this license, visit http://creativecommons.org/licenses/by/2.5/ +or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. diff --git a/solr-8.3.1/example/films/films.csv b/solr-8.3.1/example/films/films.csv new file mode 100644 index 000000000..82fe40d68 --- /dev/null +++ b/solr-8.3.1/example/films/films.csv @@ -0,0 +1,1101 @@ +name,directed_by,genre,type,id,initial_release_date +.45,Gary Lennon,Black comedy|Thriller|Psychological thriller|Indie film|Action Film|Crime Thriller|Crime Fiction|Drama,,/en/45_2006,2006-11-30 +9,Shane Acker,Computer Animation|Animation|Apocalyptic and post-apocalyptic fiction|Science Fiction|Short Film|Thriller|Fantasy,,/en/9_2005,2005-04-21 +69,Lee Sang-il,Japanese Movies|Drama,,/en/69_2004,2004-07-10 +300,Zack Snyder,Epic film|Adventure Film|Fantasy|Action Film|Historical fiction|War film|Superhero movie|Historical Epic,,/en/300_2007,2006-12-09 +2046,Wong Kar-wai,Romance Film|Fantasy|Science Fiction|Drama,,/en/2046_2004,2004-05-20 +¿Quién es el señor López?,Luis Mandoki,Documentary film,,/en/quien_es_el_senor_lopez, +"""Weird Al"" Yankovic: The Ultimate Video Collection","Jay Levey|""Weird Al"" Yankovic",Music video|Parody,,/en/weird_al_yankovic_the_ultimate_video_collection,2003-11-04 +15 Park Avenue,Aparna Sen,Art film|Romance Film|Musical|Drama|Musical Drama,,/en/15_park_avenue,2005-10-27 +2 Fast 2 Furious,John Singleton,Thriller|Action Film|Crime Fiction,,/en/2_fast_2_furious,2003-06-03 +7G Rainbow Colony,Selvaraghavan,Drama,,/en/7g_rainbow_colony,2004-10-15 +3-Iron,Kim Ki-duk,Crime Fiction|Romance Film|East Asian cinema|World cinema|Drama,,/en/3-iron,2004-09-07 +10.5: Apocalypse,John Lafia,Disaster Film|Thriller|Television film|Action/Adventure|Action Film,,/en/10_5_apocalypse,2006-03-18 +8 Mile,Curtis Hanson,Musical|Hip hop film|Drama|Musical Drama,,/en/8_mile,2002-09-08 +100 Girls,Michael Davis,Romantic comedy|Romance Film|Indie film|Teen film|Comedy,,/en/100_girls,2001-09-25 +40 Days and 40 Nights,Michael Lehmann,Romance Film|Romantic comedy|Sex comedy|Comedy|Drama,,/en/40_days_and_40_nights,2002-03-01 +50 Cent: The New Breed,Don Robinson|Damon Johnson|Philip Atwell|Ian Inaba|Stephen Marshall|John Quigley|Jessy Terrero|Noa Shaw,Documentary film|Music|Concert film|Biographical film,,/en/50_cent_the_new_breed,2003-04-15 +3: The Dale Earnhardt Story,Russell Mulcahy,Sports|Auto racing|Biographical film|Drama,,/en/3_the_dale_earnhardt_story,2004-12-11 +61*,Billy Crystal,Sports|History|Historical period drama|Television film|Drama,,/en/61__2001,2001-04-28 +24 Hour Party People,Michael Winterbottom,Biographical film|Comedy-drama|Comedy|Music|Drama,,/en/24_hour_party_people,2002-02-13 +10th & Wolf,Robert Moresco,Mystery|Thriller|Crime Fiction|Crime Thriller|Gangster Film|Drama,,/en/10th_wolf,2006-08-18 +25th Hour,Spike Lee,Crime Fiction|Drama,,/en/25th_hour,2002-12-16 +7 Seconds,Simon Fellows,Thriller|Action Film|Crime Fiction,,/en/7_seconds_2005,2005-06-28 +28 Days Later,Danny Boyle,Science Fiction|Horror|Thriller,,/en/28_days_later,2002-11-01 +21 Grams,Alejandro González Iñárritu,Thriller|Ensemble Film|Crime Fiction|Drama,,/en/21_grams,2003-09-05 +The 9th Company,Fedor Bondarchuk,War film|Action Film|Historical fiction|Drama,,/en/9th_company,2005-09-29 +102 Dalmatians,Kevin Lima,Family|Adventure Film|Comedy,,/en/102_dalmatians,2000-11-22 +16 Years of Alcohol,Richard Jobson,Indie film|Drama,,/en/16_years_of_alcohol,2003-08-14 +12B,Jeeva,Romance Film|Comedy|Tamil cinema|World cinema|Drama,,/en/12b,2001-09-28 +2009 Lost Memories,Lee Si-myung,Thriller|Action Film|Science Fiction|Mystery|Drama,,/en/2009_lost_memories,2002-02-01 +16 Blocks,Richard Donner,Thriller|Crime Fiction|Action Film|Drama,,/en/16_blocks,2006-03-01 +15 Minutes,John Herzfeld,Thriller|Action Film|Crime Fiction|Crime Thriller|Drama,,/en/15_minutes,2001-03-01 +50 First Dates,Peter Segal,Romantic comedy|Romance Film|Comedy,,/en/50_first_dates,2004-02-13 +9 Songs,Michael Winterbottom,Erotica|Musical|Romance Film|Erotic Drama|Musical Drama|Drama,,/en/9_songs,2004-05-16 +20 Fingers,Mania Akbari,World cinema|Drama,,/en/20_fingers_2004,2004-09-01 +3 Needles,Thom Fitzgerald,Indie film|Social problem film|Chinese Movies|Drama,,/en/3_needles,2006-12-01 +28 Days,Betty Thomas,Comedy-drama|Romantic comedy|Comedy|Drama,,/en/28_days_2000,2000-02-08 +36 China Town,Abbas Burmawalla|Mustan Burmawalla,Thriller|Musical|Comedy|Mystery|Crime Fiction|Bollywood|Musical comedy,,/en/36_china_town,2006-04-21 +"7 mujeres, 1 homosexual y Carlos",Rene Bueno,Romantic comedy|LGBT|Romance Film|World cinema|Sex comedy|Comedy|Drama,,/en/7_mujeres_1_homosexual_y_carlos,2004-06-01 +88 Minutes,Jon Avnet,Thriller|Psychological thriller|Mystery|Drama,,/en/88_minutes,2007-02-14 +500 Years Later,Owen 'Alik Shahadah,Indie film|Documentary film|History,,/en/500_years_later,2005-10-11 +50 Ways of Saying Fabulous,Stewart Main,LGBT|Indie film|Historical period drama|Gay Themed|World cinema|Coming of age|Drama,,/en/50_ways_of_saying_fabulous, +5x2,François Ozon,Romance Film|World cinema|Marriage Drama|Fiction|Drama,,/en/5x2,2004-09-01 +28 Weeks Later,Juan Carlos Fresnadillo,Science Fiction|Horror|Thriller,,/en/28_weeks_later,2007-04-26 +10.5,John Lafia,Disaster Film|Thriller|Action/Adventure|Drama,,/en/10_5,2004-05-02 +13 Going on 30,Gary Winick,Romantic comedy|Coming of age|Fantasy|Romance Film|Fantasy Comedy|Comedy,,/en/13_going_on_30,2004-04-14 +2LDK,Yukihiko Tsutsumi,LGBT|Thriller|Psychological thriller|World cinema|Japanese Movies|Comedy|Drama,,/en/2ldk,2004-05-13 +7½ Phere,Ishaan Trivedi,Bollywood|Comedy|Drama,,/en/7_phere,2005-07-29 +A Beautiful Mind,Ron Howard,Biographical film|Psychological thriller|Historical period drama|Romance Film|Marriage Drama|Documentary film|Drama,,/en/a_beautiful_mind,2001-12-13 +A Cinderella Story,Mark Rosman,Teen film|Romantic comedy|Romance Film|Family|Comedy,,/en/a_cinderella_story,2004-07-10 +A Cock and Bull Story,Michael Winterbottom,Mockumentary|Indie film|Comedy|Drama,,/en/a_cock_and_bull_story,2005-07-17 +A Common Thread,Éléonore Faucher,Romance Film|Drama,,/en/a_common_thread,2004-05-14 +A Dirty Shame,John Waters,Sex comedy|Cult film|Parody|Black comedy|Gross out|Gross-out film|Comedy,,/en/a_dirty_shame,2004-09-12 +A Duo Occasion,Pierre Lamoureux,Music video,,/en/a_duo_occasion,2005-11-22 +A Good Year,Ridley Scott,Romantic comedy|Film adaptation|Romance Film|Comedy-drama|Slice of life|Comedy of manners|Comedy|Drama,,/en/a_good_year,2006-09-09 +A History of Violence,David Cronenberg,Thriller|Psychological thriller|Crime Fiction|Drama,,/en/a_history_of_violence_2005,2005-05-16 +A Hole in My Heart,Lukas Moodysson,Horror|Experimental film|Social problem film|Drama,,/en/ett_hal_i_mitt_hjarta,2004-09-10 +A Knight's Tale,Brian Helgeland,Romantic comedy|Adventure Film|Action Film|Action/Adventure|Historical period drama|Costume Adventure|Comedy|Drama,,/en/a_knights_tale,2001-03-08 +A League of Ordinary Gentlemen,Christopher Browne|Alexander H. Browne,Documentary film|Sports|Culture & Society|Biographical film,,/en/a_league_of_ordinary_gentlemen,2006-03-21 +A Little Trip to Heaven,Baltasar Kormákur,Thriller|Crime Fiction|Black comedy|Indie film|Comedy-drama|Detective fiction|Ensemble Film|Drama,,/en/a_little_trip_to_heaven,2005-12-26 +A Lot like Love,Nigel Cole,Romantic comedy|Romance Film|Comedy-drama|Comedy|Drama,,/en/a_lot_like_love,2005-04-21 +A Love Song for Bobby Long,Shainee Gabel,Film adaptation|Melodrama|Drama,,/en/a_love_song_for_bobby_long,2004-09-02 +"A Man, a Real One",Arnaud Larrieu|Jean-Marie Larrieu,Comedy|Drama,,/en/a_man_a_real_one,2003-05-28 +A Midsummer Night's Rave,Gil Cates Jr.,Romance Film|Romantic comedy|Teen film|Comedy|Drama,,/en/a_midsummer_nights_rave, +A Mighty Wind,Christopher Guest,Mockumentary|Parody|Musical|Musical comedy|Comedy,,/en/a_mighty_wind,2003-03-12 +A Perfect Day,Khalil Joreige|Joana Hadjithomas,World cinema|Drama,,/en/a_perfect_day, +A Prairie Home Companion,Robert Altman,Musical comedy|Drama,,/en/a_prairie_home_companion_2006,2006-02-12 +A Ring of Endless Light,Greg Beeman,Drama,,/en/a_ring_of_endless_light_2002,2002-08-23 +A Scanner Darkly,Richard Linklater,Science Fiction|Dystopia|Animation|Future noir|Film adaptation|Thriller|Drama,,/en/a_scanner_darkly_2006,2006-07-07 +A Short Film About John Bolton,Neil Gaiman,Documentary film|Short Film|Black comedy|Indie film|Mockumentary|Graphic & Applied Arts|Comedy|Biographical film,,/en/a_short_film_about_john_bolton, +A Shot in the West,Bob Kelly,Western|Short Film,,/en/a_shot_in_the_west,2006-07-16 +A Sound of Thunder,Peter Hyams,Science Fiction|Adventure Film|Thriller|Action Film|Apocalyptic and post-apocalyptic fiction|Time travel,,/en/a_sound_of_thunder_2005,2005-05-15 +A State of Mind,Daniel Gordon,Documentary film|Political cinema|Sports,,/en/a_state_of_mind,2005-08-10 +A Time for Drunken Horses,Bahman Ghobadi,World cinema|War film|Drama,,/en/a_time_for_drunken_horses, +À ton image,Aruna Villiers,Thriller|Science Fiction,,/en/a_ton_image,2004-05-26 +A Very Long Engagement,Jean-Pierre Jeunet,War film|Romance Film|World cinema|Drama,,/en/a_very_long_engagement,2004-10-27 +A View from Eiffel Tower,Nikola Vukčević,Drama,,/en/a_view_from_the_eiffel_tower, +A Walk to Remember,Adam Shankman,Coming of age|Romance Film|Drama,,/en/a_walk_to_remember,2002-01-23 +A.I. Artificial Intelligence,Steven Spielberg,Science Fiction|Future noir|Adventure Film|Drama,,/en/a_i,2001-06-26 +a/k/a Tommy Chong,Josh Gilbert,Documentary film|Culture & Society|Law & Crime|Biographical film,,/en/a_k_a_tommy_chong,2006-06-14 +Aalvar,Chella,Action Film|Tamil cinema|World cinema,,/en/aalvar,2007-01-12 +Aap Ki Khatir,Dharmesh Darshan,Romance Film|Romantic comedy|Bollywood|Drama,,/en/aap_ki_khatir,2006-08-25 +Aaru,Hari,Thriller|Action Film|Drama|Tamil cinema|World cinema,,/en/aaru_2005,2005-12-09 +Aata,V.N. Aditya,Romance Film|Tollywood|World cinema,,/en/aata,2007-05-09 +Aadhi,Ramana,Thriller|Romance Film|Musical|Action Film|Tamil cinema|World cinema|Drama|Musical Drama,,/en/aathi,2006-01-14 +Aaytha Ezhuthu,Mani Ratnam,Thriller|Political thriller|Tamil cinema|World cinema|Drama,,/en/aayitha_ezhuthu,2004-05-21 +Abandon,Stephen Gaghan,Mystery|Thriller|Psychological thriller|Suspense|Drama,,/en/abandon_2002,2002-10-18 +Abduction: The Megumi Yokota Story,Patty Kim|Chris Sheridan,Documentary film|Political cinema|Culture & Society|Law & Crime,,/en/abduction_the_megumi_yokota_story, +About a Boy,Chris Weitz|Paul Weitz,Romance Film|Comedy|Drama,,/en/about_a_boy_2002,2002-04-26 +About Schmidt,Alexander Payne,Black comedy|Indie film|Comedy-drama|Tragicomedy|Comedy of manners|Comedy|Drama,,/en/about_schmidt,2002-05-22 +Accepted,Steve Pink,Teen film|Comedy,,/en/accepted,2006-08-18 +Across the Hall,Alex Merkin|Alex Merkin,Short Film|Thriller|Drama,,/en/across_the_hall, +Adam & Steve,Craig Chester,Romance Film|Romantic comedy|LGBT|Gay Themed|Indie film|Gay|Gay Interest|Comedy,,/en/adam_steve,2005-04-24 +Adam Resurrected,Paul Schrader,Historical period drama|Film adaptation|War film|Drama,,/en/adam_resurrected,2008-08-30 +Adaptation,Spike Jonze,Crime Fiction|Comedy|Drama,,/en/adaptation_2002,2002-12-06 +Address Unknown,Kim Ki-duk,War film|Drama,,/en/address_unknown,2001-06-02 +Adrenaline Rush,Marc Fafard,Documentary film|Short Film,,/en/adrenaline_rush_2002,2002-10-18 +Essential Keys To Better Bowling,,Documentary film|Sports,,/en/essential_keys_to_better_bowling_2006, +Adventures Into Digital Comics,Sébastien Dumesnil,Documentary film,,/en/adventures_into_digital_comics, +Ae Fond Kiss...,Ken Loach,Romance Film|Drama,,/en/ae_fond_kiss,2004-02-13 +Aetbaar,Vikram Bhatt,Thriller|Romance Film|Mystery|Horror|Musical|Bollywood|World cinema|Drama|Musical Drama,,/en/aetbaar,2004-01-23 +Aethirree,K. S. Ravikumar,Comedy|Tamil cinema|World cinema,,/en/aethiree,2004-04-23 +After Innocence,Jessica Sanders,Documentary film|Crime Fiction|Political cinema|Culture & Society|Law & Crime|Biographical film,,/en/after_innocence, +After the Sunset,Brett Ratner,Crime Fiction|Action/Adventure|Action Film|Crime Thriller|Heist film|Caper story|Crime Comedy|Comedy,,/en/after_the_sunset,2004-11-10 +Aftermath,Thomas Farone,Crime Fiction|Thriller,,/en/aftermath_2007,2013-03-01 +Against the Ropes,Charles S. Dutton,Biographical film|Sports|Drama,,/en/against_the_ropes,2004-02-20 +Agent Cody Banks 2: Destination London,Kevin Allen,Adventure Film|Action Film|Family|Action/Adventure|Spy film|Children's/Family|Family-Oriented Adventure|Comedy,,/en/agent_cody_banks_2_destination_london,2004-03-12 +Agent One-Half,Brian Bero,Comedy,,/en/agent_one-half, +Agnes and His Brothers,Oskar Roehler,Drama|Comedy,,/en/agnes_and_his_brothers,2004-09-05 +Mother of Mine,Klaus Härö,War film|Drama,,/en/aideista_parhain,2005-08-25 +Aileen: Life and Death of a Serial Killer,Nick Broomfield|Joan Churchill,Documentary film|Crime Fiction|Political drama,,/en/aileen_life_and_death_of_a_serial_killer,2003-05-10 +Air,Osamu Dezaki,Fantasy|Anime|Animation|Japanese Movies|Drama,,/en/air_2005,2005-02-05 +Air Bud: Seventh Inning Fetch,Robert Vince,Family|Sports|Comedy|Drama,,/en/air_bud_seventh_inning_fetch,2002-02-21 +Air Bud: Spikes Back,Mike Southon,Family|Sports|Comedy,,/en/air_bud_spikes_back,2003-06-24 +Air Buddies,Robert Vince,Family|Animal Picture|Children's/Family|Family-Oriented Adventure|Comedy,,/en/air_buddies,2006-12-10 +Aitraaz,Abbas Burmawalla|Mustan Burmawalla,Trial drama|Thriller|Bollywood|World cinema|Drama,,/en/aitraaz,2004-11-12 +AKA,Duncan Roy,LGBT|Indie film|Historical period drama|Drama,,/en/aka_2002,2002-01-19 +Aakasha Gopuram,K.P.Kumaran,Romance Film|Drama|Malayalam Cinema|World cinema,,/en/aakasha_gopuram,2008-08-22 +Jodhaa Akbar,Ashutosh Gowariker,Biographical film|Romance Film|Musical|World cinema|Adventure Film|Action Film|Historical fiction|Musical Drama|Drama,,/en/akbar-jodha,2008-02-13 +Akeelah and the Bee,Doug Atchison,Drama,,/en/akeelah_and_the_bee,2006-03-16 +The Reflection,Rakeysh Omprakash Mehra,Horror|Thriller|Mystery|Bollywood|World cinema,,/en/aks,2001-07-13 +Aksar,Anant Mahadevan,Romance Film|World cinema|Thriller|Drama,,/en/aksar,2006-02-03 +Al Franken: God Spoke,Nick Doob|Chris Hegedus,Mockumentary|Documentary film|Political cinema|Culture & Society|Biographical film,,/en/al_franken_god_spoke,2006-09-13 +Different,Ashu Trikha,Thriller|Science Fiction|Bollywood|World cinema,,/en/alag,2006-06-16 +Wave,Vikram Kumar,Romance Film|Drama|Comedy|Tamil cinema|World cinema,,/en/alai,2003-09-10 +Waves,Mani Ratnam,Musical|Romance Film|Musical Drama|Drama,,/en/alaipayuthey,2000-04-14 +Alatriste,Agustín Díaz Yanes,Thriller|War film|Adventure Film|Action Film|Drama|Historical fiction,,/en/alatriste,2006-09-01 +Alex & Emma,Rob Reiner,Romantic comedy|Romance Film|Comedy,,/en/alex_emma,2003-06-20 +Alexander,Oliver Stone|Wilhelm Sasnal|Anka Sasnal,War film|Action Film|Adventure Film|Romance Film|Biographical film|Historical fiction|Drama,,/en/alexander_2004,2004-11-16 +Alexandra's Project,Rolf de Heer,Thriller|Suspense|Psychological thriller|Indie film|World cinema|Drama,,/en/alexandras_project, +Alfie,Charles Shyer,Sex comedy|Remake|Comedy-drama|Romance Film|Romantic comedy|Comedy|Drama,,/en/alfie_2004,2004-10-22 +Ali,Michael Mann,Biographical film|Sports|Historical period drama|Sports films|Drama,,/en/ali_2001,2001-12-11 +Ali G Indahouse,Mark Mylod,Stoner film|Parody|Gross out|Gross-out film|Comedy,,/en/ali_g_indahouse,2002-03-22 +Alien Autopsy,Jonny Campbell,Science Fiction|Mockumentary|Comedy,,/en/alien_autopsy_2006,2006-04-07 +Alien vs. Predator,Paul W. S. Anderson,Science Fiction|Horror|Action Film|Monster movie|Thriller|Adventure Film,,/en/avp_alien_vs_predator,2004-08-12 +AVPR: Aliens vs Predator - Requiem,Colin Strause|Greg Strause,Science Fiction|Action Film|Action/Adventure|Horror|Monster movie|Thriller,,/en/avpr_aliens_vs_predator_requiem,2007-12-25 +Aliens of the Deep,James Cameron|Steven Quale|Steven Quale,Documentary film|Travel|Education|Biological Sciences,,/en/aliens_of_the_deep,2005-01-28 +Alive,Ryuhei Kitamura,Science Fiction|Action Film|Horror|Thriller|World cinema|Action/Adventure|Japanese Movies,,/en/alive_2002,2002-09-12 +All About Lily Chou-Chou,Shunji Iwai,Crime Fiction|Musical|Thriller|Art film|Romance Film|Drama|Musical Drama,,/en/all_about_lily_chou-chou,2001-09-07 +All About the Benjamins,Kevin Bray,Action Film|Crime Fiction|Comedy|Thriller,,/en/all_about_the_benjamins,2002-03-08 +All I Want,Jeffrey Porter,Romantic comedy|Coming of age|Romance Film|Comedy,,/en/all_i_want_2002,2002-09-10 +All Over the Guy,Julie Davis,Indie film|LGBT|Romantic comedy|Romance Film|Gay|Gay Interest|Gay Themed|Comedy,,/en/all_over_the_guy, +All Souls Day,Jeremy Kasten|Mark A. Altman,Horror|Supernatural|Zombie Film,,/en/all_souls_day_2005,2005-01-25 +All the King's Men,Steven Zaillian,Political drama|Thriller,,/en/all_the_kings_men_2006,2006-09-10 +All the Real Girls,David Gordon Green,Romance Film|Indie film|Coming of age|Drama,,/en/all_the_real_girls,2003-01-19 +Allari Bullodu,Kovelamudi Raghavendra Rao,Comedy|Romance Film|Tollywood|World cinema,,/en/allari_bullodu, +Allari Pidugu,Jayant Paranji,Drama|Tollywood|World cinema,,/en/allari_pidugu,2005-10-05 +Alles auf Zucker!,Dani Levy,Comedy,,/en/alles_auf_zucker,2004-12-31 +Alley Cats Strike!,Rod Daniel,Family|Sports,,/en/alley_cats_strike,2000-03-18 +Almost Famous,Cameron Crowe,Musical|Comedy-drama|Musical Drama|Road movie|Musical comedy|Comedy|Music|Drama,,/en/almost_famous,2000-09-08 +Almost: Round Three,Matt Hill|Matt Hill,Sports,,/en/almost_round_three,2004-11-10 +Alone and Restless,Michael Thomas Dunn,Drama,,/en/alone_and_restless, +Alone in the Dark,Uwe Boll,Science Fiction|Horror|Action Film|Thriller|B movie|Action/Adventure,,/en/alone_in_the_dark,2005-01-28 +Along Came Polly,John Hamburg,Romantic comedy|Romance Film|Gross out|Gross-out film|Comedy,,/en/along_came_polly,2004-01-12 +Alpha Dog,Nick Cassavetes,Crime Fiction|Biographical film|Drama,,/en/alpha_dog,2006-01-27 +Amélie,Jean-Pierre Jeunet,Romance Film|Comedy,,/en/amelie,2001-04-25 +America: Freedom to Fascism,Aaron Russo,Documentary film|Political cinema|Culture & Society,,/en/america_freedom_to_fascism,2006-07-28 +America's Sweethearts,Joe Roth,Romantic comedy|Romance Film|Comedy,,/en/americas_sweethearts,2001-07-17 +American Cowslip,Mark David,Black comedy|Indie film|Comedy,,/en/american_cowslip,2009-07-24 +American Desi,Piyush Dinker Pandya,Indie film|Romance Film|Romantic comedy|Musical comedy|Teen film|Comedy,,/en/american_desi, +Bolt,Chris Williams|Byron Howard,Family|Adventure Film|Animation|Comedy,,/en/american_dog,2008-11-17 +American Dreamz,Paul Weitz,Political cinema|Parody|Political satire|Media Satire|Comedy,,/en/american_dreamz,2006-04-21 +American Gangster,Ridley Scott,Crime Fiction|War film|Crime Thriller|Historical period drama|Biographical film|Crime Drama|Gangster Film|True crime|Drama,,/en/american_gangster,2007-10-19 +American Gun,Aric Avelino,Indie film|Drama,,/en/american_gun,2005-09-15 +American Hardcore,Paul Rachman,Music|Documentary film|Rockumentary|Punk rock|Biographical film,,/en/american_hardcore_2006,2006-03-11 +American Outlaws,Les Mayfield,Western|Costume drama|Action/Adventure|Action Film|Revisionist Western|Comedy Western|Comedy,,/en/american_outlaws,2001-08-17 +American Pie Presents: The Naked Mile,Joe Nussbaum,Comedy,,/en/american_pie_the_naked_mile,2006-12-07 +American Pie 2,James B. Rogers,Romance Film|Comedy,,/en/american_pie_2,2001-08-06 +American Pie Presents: Band Camp,Steve Rash,Comedy,,/en/american_pie_presents_band_camp,2005-10-31 +American Psycho,Mary Harron,Black comedy|Slasher|Thriller|Horror|Psychological thriller|Crime Fiction|Horror comedy|Comedy|Drama,,/en/american_psycho_2000,2000-01-21 +American Splendor,Shari Springer Berman|Robert Pulcini,Indie film|Biographical film|Comedy-drama|Marriage Drama|Comedy|Drama,,/en/american_splendor_2003,2003-01-20 +American Wedding,Jesse Dylan,Romance Film|Comedy,,/en/american_wedding,2003-07-24 +Americano,Kevin Noland,Romance Film|Comedy|Drama,,/en/americano_2005,2005-01-07 +Amma Nanna O Tamila Ammayi,Puri Jagannadh,Sports|Tollywood|World cinema|Drama,,/en/amma_nanna_o_tamila_ammayi,2003-04-19 +Amores perros,Alejandro González Iñárritu,Thriller|Drama,,/en/amores_perros,2000-05-14 +Amrutham,Sibi Malayil,Drama|Malayalam Cinema|World cinema,,/en/amrutham,2004-12-24 +An American Crime,Tommy O'Haver,Crime Fiction|Biographical film|Indie film|Drama,,/en/an_american_crime,2007-01-19 +An American Haunting,Courtney Solomon,Horror|Mystery|Thriller,,/en/an_american_haunting,2005-11-05 +An American Tail: The Mystery of the Night Monster,Larry Latham,Fantasy|Animated cartoon|Animation|Music|Family|Adventure Film|Children's Fantasy|Children's/Family|Family-Oriented Adventure,,/en/an_american_tail_the_mystery_of_the_night_monster,2000-07-25 +An Evening with Kevin Smith,J.M. Kenny,Documentary film|Stand-up comedy|Indie film|Film & Television History|Comedy|Biographical film|Media studies,,/en/an_evening_with_kevin_smith, +An Evening with Kevin Smith 2: Evening Harder,J.M. Kenny,Documentary film,,/en/an_evening_with_kevin_smith_2006, +An Everlasting Piece,Barry Levinson,Comedy,,/en/an_everlasting_piece,2000-12-25 +An Extremely Goofy Movie,Ian Harrowell|Douglas McCarthy,Animation|Coming of age|Animated Musical|Children's/Family|Comedy,,/en/an_extremely_goofy_movie,2000-02-29 +An Inconvenient Truth,Davis Guggenheim,Documentary film,,/en/an_inconvenient_truth,2006-01-24 +An Unfinished Life,Lasse Hallström,Melodrama|Drama,,/en/an_unfinished_life,2005-08-19 +Anacondas: The Hunt for the Blood Orchid,Dwight H. Little,Thriller|Adventure Film|Horror|Action Film|Action/Adventure|Natural horror film|Jungle Film,,/en/anacondas_the_hunt_for_the_blood_orchid,2004-08-25 +Anal Pick-Up,Decklin,Pornographic film|Gay pornography,,/en/anal_pick-up, +Analyze That,Harold Ramis,Buddy film|Crime Comedy|Gangster Film|Comedy,,/en/analyze_that,2002-12-06 +Anamorph,H.S. Miller,Psychological thriller|Crime Fiction|Thriller|Mystery|Crime Thriller|Suspense,,/en/anamorph, +Anand,Sekhar Kammula,Musical|Comedy|Drama|Musical comedy|Musical Drama|Tollywood|World cinema,,/en/anand_2004,2004-10-15 +Anbe Aaruyire,S. J. Surya,Romance Film|Tamil cinema|World cinema|Drama,,/en/anbe_aaruyire,2005-08-15 +Love is God,Sundar C.,Musical|Musical comedy|Comedy|Adventure Film|Tamil cinema|World cinema|Drama|Musical Drama,,/en/anbe_sivam,2003-01-14 +Ancanar,Sam R. Balcomb|Raiya Corsiglia,Fantasy|Adventure Film|Action/Adventure,,/en/ancanar, +Anchorman: The Legend of Ron Burgundy,Adam McKay,Comedy,,/en/anchorman_the_legend_of_ron_burgundy,2004-06-28 +Andaaz,Raj Kanwar,Musical|Romance Film|Drama|Musical Drama,,/en/andaaz,2003-05-23 +Andarivaadu,Srinu Vaitla,Comedy,,/en/andarivaadu,2005-06-03 +Andhrawala,Puri Jagannadh|V.V.S. Ram,Adventure Film|Action Film|Tollywood|Drama,,/en/andhrawala,2004-01-01 +Ang Tanging Ina,Wenn V. Deramas,Comedy|Drama,,/en/ang_tanging_ina,2003-05-28 +Angel Eyes,Luis Mandoki,Romance Film|Crime Fiction|Drama,,/en/angel_eyes,2001-05-18 +Angel-A,Luc Besson,Romance Film|Fantasy|Comedy|Romantic comedy|Drama,,/en/angel-a,2005-12-21 +Angels & Demons,Ron Howard,Thriller|Mystery|Crime Fiction,,/en/angels_and_demons_2008,2009-05-04 +Virgin Territory,David Leland,Romance Film|Comedy|Adventure Film|Drama,,/en/angels_and_virgins,2007-12-17 +Angels in the Infield,Robert King,Fantasy|Sports|Family|Children's/Family|Heavenly Comedy|Comedy,,/en/angels_in_the_infield,2000-04-09 +Anger Management,Peter Segal,Black comedy|Slapstick|Comedy,,/en/anger_management_2003,2003-03-05 +Angli: The Movie,Mario Busietta,Thriller|Action Film|Crime Fiction,,/en/angli_the_movie,2005-05-28 +Animal Factory,Steve Buscemi,Crime Fiction|Prison film|Drama,,/en/animal_factory,2000-10-22 +Anjaneya,Maharajan|N.Maharajan,Romance Film|Crime Fiction|Drama|World cinema|Tamil cinema,,/en/anjaneya,2003-10-24 +Ankahee,Vikram Bhatt,Romance Film|Thriller|Drama,,/en/ankahee,2006-05-19 +Annapolis,Justin Lin,Romance Film|Sports|Drama,,/en/annapolis_2006, +Annavaram,Gridhar|Bhimaneni Srinivasa Rao|Sippy,Thriller|Musical|Action Film|Romance Film|Tollywood|World cinema,,/en/annavaram_2007,2006-12-29 +Anniyan,S. Shankar,Horror|Short Film|Psychological thriller|Thriller|Musical Drama|Action Film|Drama,,/en/anniyan,2005-06-10 +Another Gay Movie,Todd Stephens,Parody|Coming of age|LGBT|Gay Themed|Romantic comedy|Romance Film|Gay|Gay Interest|Sex comedy|Comedy|Pornographic film,,/en/another_gay_movie,2006-04-28 +Ant-Man,Peyton Reed,Thriller|Science Fiction|Action/Adventure|Superhero movie|Comedy,,/en/ant_man,2015-07-17 +Anthony Zimmer,Jérôme Salle,Thriller|Romance Film|World cinema|Crime Thriller,,/en/anthony_zimmer,2005-04-27 +Antwone Fisher,Denzel Washington,Romance Film|Biographical film|Drama,,/en/antwone_fisher_2003,2002-09-12 +Anukokunda Oka Roju,Chandra Sekhar Yeleti,Thriller|Horror|Tollywood|World cinema,,/en/anukokunda_oka_roju,2005-06-30 +Anus Magillicutty,Morey Fineburgh,B movie|Romance Film|Comedy,,/en/anus_magillicutty,2003-04-15 +Any Way the Wind Blows,Tom Barman,Comedy-drama,,/en/any_way_the_wind_blows,2003-05-17 +Anything Else,Woody Allen,Romantic comedy|Romance Film|Comedy,,/en/anything_else,2003-08-27 +Apasionados,Juan José Jusid,Romantic comedy|Romance Film|World cinema|Comedy|Drama,,/en/apasionados,2002-06-06 +Apocalypto,Mel Gibson,Action Film|Adventure Film|Epic film|Thriller|Drama,,/en/apocalypto,2006-12-08 +April's Shower,Trish Doolan,Romantic comedy|Indie film|Romance Film|LGBT|Gay|Gay Interest|Gay Themed|Sex comedy|Comedy|Drama,,/en/aprils_shower,2006-01-13 +Aquamarine,Elizabeth Allen Rosenbaum,Coming of age|Teen film|Romance Film|Family|Fantasy|Fantasy Comedy|Comedy,,/en/aquamarine_2006,2006-02-26 +Arabian Nights,Steve Barron,Family|Fantasy|Adventure Film,,/en/arabian_nights,2000-04-30 +Aragami,Ryuhei Kitamura,Thriller|Action/Adventure|World cinema|Japanese Movies|Action Film|Drama,,/en/aragami,2003-03-27 +Arahan,Ryoo Seung-wan,Action Film|Comedy|Korean drama|East Asian cinema|World cinema,,/en/arahan,2004-04-30 +Ararat,Atom Egoyan,LGBT|Political drama|War film|Drama,,/en/ararat,2002-05-20 +Are We There Yet,Brian Levant,Family|Adventure Film|Romance Film|Comedy|Drama,,/en/are_we_there_yet,2005-01-21 +Arinthum Ariyamalum,Vishnuvardhan,Crime Fiction|Family|Romance Film|Comedy|Tamil cinema|World cinema|Drama,,/en/arinthum_ariyamalum,2005-05-20 +Arisan!,Nia Dinata,Comedy|Drama,,/en/arisan,2003-12-10 +Arjun,Gunasekhar|J. Hemambar,Action Film|Tollywood|World cinema,,/en/arjun_2004,2004-08-18 +Armaan,Honey Irani,Romance Film|Family|Drama,,/en/armaan,2003-05-16 +Around the Bend,Jordan Roberts,Family Drama|Comedy-drama|Road movie|Drama,,/en/around_the_bend,2004-10-08 +Around the World in 80 Days,Frank Coraci,Adventure Film|Action Film|Family|Western|Romance Film|Comedy,,/en/around_the_world_in_80_days_2004,2004-06-13 +Art of the Devil 2,Pasith Buranajan|Seree Phongnithi|Yosapong Polsap|Putipong Saisikaew|Art Thamthrakul|Kongkiat Khomsiri|Isara Nadee,Horror|Slasher|Fantasy|Mystery,,/en/art_of_the_devil_2,2005-12-01 +Art School Confidential,Terry Zwigoff,Comedy-drama,,/en/art_school_confidential, +Arul,Hari,Musical|Action Film|Tamil cinema|World cinema|Drama|Musical Drama,,/en/arul,2004-05-01 +Aarya,Balasekaran,Romance Film|Drama|Tamil cinema|World cinema,,/en/arya_2007,2007-08-10 +Arya,Sukumar,Musical|Romance Film|Romantic comedy|Musical comedy|Comedy|Drama|Musical Drama|World cinema|Tollywood,,/en/arya_2004,2004-05-07 +Aryan: Unbreakable,Abhishek Kapoor,Action Film|Drama,,/en/aryan_2006,2006-12-05 +As It Is in Heaven,Kay Pollak,Musical|Comedy|Romance Film|Drama|Musical comedy|Musical Drama|World cinema,,/en/as_it_is_in_heaven,2004-08-20 +Ashok,Surender Reddy,Action Film|Romance Film|Drama|Tollywood|World cinema,,/en/ashok,2006-07-13 +Ask the Dust,Robert Towne,Historical period drama|Film adaptation|Romance Film|Drama,,/en/ask_the_dust_2006,2006-02-02 +Ashoka the Great,Santosh Sivan,Action Film|Romance Film|War film|Epic film|Musical|Bollywood|World cinema|Drama|Musical Drama,,/en/asoka,2001-09-13 +Assault on Precinct 13,Jean-François Richet,Thriller|Action Film|Remake|Crime Fiction|Drama,,/en/assault_on_precinct_13_2005,2005-01-19 +Astitva,Mahesh Manjrekar,Art film|Bollywood|World cinema|Drama,,/en/astitva,2000-10-06 +Asylum,David Mackenzie,Film adaptation|Romance Film|Thriller|Drama,,/en/asylum_2005,2005-08-12 +Atanarjuat: The Fast Runner,Zacharias Kunuk,Fantasy|Drama,,/en/atanarjuat,2001-05-13 +Athadu,Trivikram Srinivas,Action Film|Thriller|Musical|Romance Film|Tollywood|World cinema,,/en/athadu,2005-08-10 +ATL,Chris Robinson,Coming of age|Comedy|Drama,,/en/atl_2006,2006-03-28 +Atlantis: The Lost Empire,Gary Trousdale|Kirk Wise,Adventure Film|Science Fiction|Family|Animation,,/en/atlantis_the_lost_empire,2001-06-03 +Atonement,Joe Wright,Romance Film|War film|Mystery|Drama|Music,,/en/atonement_2007,2007-08-28 +Attahasam,Saran,Action Film|Thriller|Tamil cinema|World cinema|Drama,,/en/attagasam,2004-11-12 +Attila,Dick Lowry,Adventure Film|History|Action Film|War film|Historical fiction|Biographical film,,/en/attila_2001, +Austin Powers: Goldmember,Jay Roach,Action Film|Crime Fiction|Comedy,,/en/austin_powers_goldmember,2002-07-22 +Australian Rules,Paul Goldman,Drama,,/en/australian_rules, +Oram Po,Pushkar|Gayatri,Action Film|Comedy|Tamil cinema|World cinema|Drama,,/en/auto,2007-02-16 +Auto Focus,Paul Schrader|Larry Karaszewski,Biographical film|Indie film|Crime Fiction|Drama,,/en/auto_focus,2002-09-08 +Autograph,Cheran,Musical|Romance Film|Drama|Musical Drama|Tamil cinema|World cinema,,/en/autograph_2004,2004-02-14 +Avalon,Mamoru Oshii,Science Fiction|Thriller|Action Film|Adventure Film|Fantasy|Drama,,/en/avalon_2001,2001-01-20 +Avatar,James Cameron,Science Fiction|Adventure Film|Fantasy|Action Film,,/en/avatar_2009,2009-12-10 +Avenging Angelo,Martyn Burke,Action Film|Romance Film|Crime Fiction|Action/Adventure|Thriller|Romantic comedy|Crime Comedy|Gangster Film|Comedy,,/en/avenging_angelo,2002-08-30 +Awake,Joby Harold,Thriller|Crime Fiction|Mystery,,/en/awake_2007,2007-11-30 +Awara Paagal Deewana,Vikram Bhatt,Action Film|World cinema|Musical|Crime Fiction|Musical comedy|Comedy|Bollywood|Drama|Musical Drama,,/en/awara_paagal_deewana,2002-06-20 +Awesome; I Fuckin' Shot That!,Adam Yauch,Concert film|Rockumentary|Hip hop film|Documentary film|Indie film,,/en/awesome_i_fuckin_shot_that,2006-01-06 +Azumi,Ryuhei Kitamura,Action Film|Epic film|Adventure Film|Fantasy|Thriller,,/en/azumi,2003-05-10 +Æon Flux,Karyn Kusama,Science Fiction|Dystopia|Action Film|Thriller|Adventure Film,,/wikipedia/en_title/$00C6on_Flux_$0028film$0029,2005-12-01 +Baabul,Ravi Chopra,Musical|Family|Romance Film|Bollywood|World cinema|Drama|Musical Drama,,/en/baabul,2006-12-08 +BaadAsssss Cinema,Isaac Julien,Indie film|Documentary film|Blaxploitation film|Action/Adventure|Film & Television History|Biographical film,,/en/baadasssss_cinema,2002-08-14 +Baadasssss!,Mario Van Peebles,Indie film|Biographical film|Docudrama|Historical period drama|Drama,,/en/baadasssss,2003-09-07 +Babel,Alejandro González Iñárritu,Indie film|Political drama|Drama,,/en/babel_2006,2006-05-23 +Baby Boy,John Singleton,Coming of age|Crime Fiction|Drama,,/en/baby_boy,2001-06-21 +Back by Midnight,Harry Basil,Prison film|Comedy,,/en/back_by_midnight,2005-01-25 +Back to School with Franklin,Arna Selznick,Family|Animation|Educational film,,/en/back_to_school_with_franklin,2003-08-19 +Bad Boys II,Michael Bay,Action Film|Crime Fiction|Thriller|Comedy,,/en/bad_boys_ii,2003-07-09 +Bad Company,Joel Schumacher,Spy film|Action/Adventure|Action Film|Thriller|Comedy,,/wikipedia/ru_id/1598664,2002-04-26 +Bad Education,Pedro Almodóvar,Mystery|Drama,,/en/bad_education,2004-03-19 +Bad Eggs,Tony Martin,Comedy,,/en/bad_eggs, +Bad News Bears,Richard Linklater,Family|Sports|Comedy,,/en/bad_news_bears,2005-07-22 +Bad Santa,Terry Zwigoff,Black comedy|Crime Fiction|Comedy,,/en/bad_santa,2003-11-26 +Badal,Raj Kanwar,Musical|Romance Film|Crime Fiction|Drama|Musical Drama,,/en/badal,2000-02-11 +Baghdad ER,Jon Alpert|Matthew O'Neill,Documentary film|Culture & Society|War film|Biographical film,,/en/baghdad_er,2006-08-29 +Baise Moi,Virginie Despentes|Coralie Trinh Thi,Erotica|Thriller|Erotic thriller|Art film|Romance Film|Drama|Road movie,,/en/baise_moi,2000-06-28 +Bait,Antoine Fuqua,Thriller|Crime Fiction|Adventure Film|Action Film|Action/Adventure|Crime Thriller|Comedy|Drama,,/en/bait_2000,2000-09-15 +Bala,Deepak,Drama|Tamil cinema|World cinema,,/en/bala_2002,2002-12-13 +Ballistic: Ecks vs. Sever,Wych Kaosayananda,Spy film|Thriller|Action Film|Suspense|Action/Adventure|Action Thriller|Glamorized Spy Film,,/en/ballistic_ecks_vs_sever,2002-09-20 +Balu ABCDEFG,A. Karunakaran,Romance Film|Tollywood|World cinema|Drama,,/en/balu_abcdefg,2005-01-06 +The Little Chinese Seamstress,Dai Sijie,Romance Film|Comedy-drama|Biographical film|Drama,,/en/balzac_and_the_little_chinese_seamstress_2002,2002-05-16 +Bambi II,Brian Pimental,Animation|Family|Adventure Film|Coming of age|Children's/Family|Family-Oriented Adventure,,/en/bambi_ii,2006-01-26 +Bamboozled,Spike Lee,Satire|Indie film|Music|Black comedy|Comedy-drama|Media Satire|Comedy|Drama,,/en/bamboozled,2000-10-06 +Bandidas,Espen Sandberg|Joachim Rønning,Western|Action Film|Crime Fiction|Buddy film|Comedy|Adventure Film,,/en/bandidas,2006-01-18 +Bandits,Barry Levinson,Romantic comedy|Crime Fiction|Buddy film|Romance Film|Heist film|Comedy|Drama,,/en/bandits,2001-10-12 +Bangaram,Dharani,Action Film|Crime Fiction|Drama,,/en/bangaram,2006-05-03 +Bangkok Loco,Pornchai Hongrattanaporn,Musical|Musical comedy|Comedy,,/en/bangkok_loco,2004-10-07 +Baran,Majid Majidi,Romance Film|Adventure Film|World cinema|Drama,,/en/baran,2001-01-31 +Barbershop,Tim Story,Ensemble Film|Workplace Comedy|Comedy,,/en/barbershop,2002-08-07 +Bareback Mountain,Afton Nills,Pornographic film|Gay pornography,,/en/bareback_mountain, +Barnyard,Steve Oedekerk,Family|Animation|Comedy,,/wikipedia/pt/Barnyard,2006-08-04 +Barricade,Timo Rose,Slasher|Horror,,/en/barricade_2007, +Bas Itna Sa Khwaab Hai,Goldie Behl,Romance Film|Bollywood|World cinema,,/en/bas_itna_sa_khwaab_hai,2001-07-06 +Basic,John McTiernan,Thriller|Action Film|Mystery,,/en/basic_2003,2003-03-28 +Basic emotions,Thomas Moon|Julie Pham|Georgia Lee,Drama,,/en/basic_emotions,2004-09-09 +Basic Instinct 2,Michael Caton-Jones,Thriller|Erotic thriller|Psychological thriller|Mystery|Crime Fiction|Horror,,/en/basic_instinct_2,2006-03-31 +Battle In Heaven,Carlos Reygadas,Drama,,/en/batalla_en_el_cielo,2005-05-15 +Batman Begins,Christopher Nolan,Action Film|Crime Fiction|Adventure Film|Film noir|Drama,,/en/batman_begins,2005-06-10 +Batman Beyond: Return of the Joker,Curt Geda,Science Fiction|Animation|Superhero movie|Action Film,,/en/batman_beyond_return_of_the_joker,2000-12-12 +Batman: Dead End,Sandy Collora,Indie film|Short Film|Fan film,,/en/batman_dead_end,2003-07-19 +Batman: Mystery of the Batwoman,Curt Geda|Tim Maltby,Animated cartoon|Animation|Family|Superhero movie|Action/Adventure|Fantasy|Short Film|Fantasy Adventure,,/en/batman_mystery_of_the_batwoman,2003-10-21 +Battle Royale II: Requiem,Kenta Fukasaku|Kinji Fukasaku,Thriller|Action Film|Science Fiction|Drama,,/en/batoru_rowaiaru_ii_chinkonka,2003-07-05 +Battlefield Baseball,Yūdai Yamaguchi,Martial Arts Film|Horror|World cinema|Sports|Musical comedy|Japanese Movies|Horror comedy|Comedy,,/en/battlefield_baseball,2003-07-19 +BBS: The Documentary,Jason Scott Sadofsky,Documentary film,,/en/bbs_the_documentary, +Be Cool,F. Gary Gray,Crime Fiction|Crime Comedy|Comedy,,/en/be_cool,2005-03-04 +Be Kind Rewind,Michel Gondry,Farce|Comedy of Errors|Comedy|Drama,,/en/be_kind_rewind,2008-01-20 +Be with Me,Eric Khoo,Indie film|LGBT|World cinema|Art film|Romance Film|Drama,,/en/be_with_me,2005-05-12 +Beah: A Black Woman Speaks,Lisa Gay Hamilton,Documentary film|History|Biographical film,,/en/beah_a_black_woman_speaks,2003-08-22 +Beastly Boyz,David DeCoteau,LGBT|Horror|B movie|Teen film,,/en/beastly_boyz, +Beauty Shop,Bille Woodruff,Comedy,,/en/beauty_shop,2005-03-24 +Bedazzled,Harold Ramis,Romantic comedy|Fantasy|Black comedy|Romance Film|Comedy,,/en/bedazzled_2000,2000-10-19 +Bee Movie,Steve Hickner|Simon J. Smith,Family|Adventure Film|Animation|Comedy,,/en/bee_movie,2007-10-28 +Bee Season,David Siegel|Scott McGehee,Film adaptation|Coming of age|Family Drama|Drama,,/en/bee_season_2005,2005-11-11 +Artie Lange's Beer League,Frank Sebastiano,Sports|Indie film|Comedy,,/en/beer_league,2006-09-15 +Beer: The Movie,Peter Hoare,Indie film|Cult film|Parody|Bloopers & Candid Camera|Comedy,,/en/beer_the_movie,2006-05-16 +Beerfest,Jay Chandrasekhar,Absurdism|Comedy,,/en/beerfest,2006-08-25 +Before Night Falls,Julian Schnabel,LGBT|Gay Themed|Political drama|Gay|Gay Interest|Biographical film|Drama,,/en/before_night_falls_2001,2000-09-03 +Before Sunset,Richard Linklater,Romance Film|Indie film|Comedy|Drama,,/en/before_sunset,2004-02-10 +Behind Enemy Lines,John Moore,Thriller|Action Film|War film|Action/Adventure|Drama,,/en/behind_enemy_lines,2001-11-17 +Behind the Mask,Shannon Keith,Documentary film|Indie film|Political cinema|Crime Fiction,,/en/behind_the_mask_2006,2006-03-21 +Behind the Sun,Walter Salles,Drama,,/en/behind_the_sun_2001,2001-09-06 +Being Cyrus,Homi Adajania,Thriller|Black comedy|Mystery|Psychological thriller|Crime Fiction|Drama,,/en/being_cyrus,2005-11-08 +Being Julia,István Szabó,Romance Film|Romantic comedy|Comedy-drama|Comedy|Drama,,/en/being_julia,2004-09-03 +Bekhal's Tears,Lauand Omar,Drama,,/en/bekhals_tears, +Believe in Me,Robert Collector,Sports|Family Drama|Family|Drama,,/en/believe_in_me, +Belly of the Beast,Ching Siu-tung,Action Film|Thriller|Political thriller|Martial Arts Film|Action/Adventure|Crime Thriller|Action Thriller|Chinese Movies,,/en/belly_of_the_beast,2003-12-30 +Bellyful,Melvin Van Peebles,Indie film|Satire|Comedy,,/en/bellyful,2000-06-28 +Bend It Like Beckham,Gurinder Chadha,Coming of age|Indie film|Teen film|Sports|Romance Film|Comedy-drama|Comedy|Drama,,/en/bend_it_like_beckham,2002-04-11 +Don't Tempt Me,Agustín Díaz Yanes,Religious Film|Fantasy|Comedy,,/en/bendito_infierno,2001-11-28 +Beneath,Dagen Merrill,Horror|Psychological thriller|Thriller|Supernatural|Crime Thriller,,/en/beneath,2007-08-07 +Beneath Clouds,Ivan Sen,Indie film|Romance Film|Road movie|Social problem film|Drama,,/en/beneath_clouds,2002-02-08 +Beowulf,Robert Zemeckis,Adventure Film|Computer Animation|Fantasy|Action Film|Animation,,/en/beowulf_2007,2007-11-05 +Beowulf & Grendel,Sturla Gunnarsson,Adventure Film|Action Film|Fantasy|Action/Adventure|Film adaptation|World cinema|Historical period drama|Mythological Fantasy|Drama,,/en/beowulf_grendel,2005-09-14 +Best in Show,Christopher Guest,Comedy,,/en/best_in_show,2000-09-08 +"The Best of The Bloodiest Brawls, Vol. 1",,Sports,,/en/the_best_of_the_bloodiest_brawls_vol_1,2006-03-14 +Better Luck Tomorrow,Justin Lin,Coming of age|Teen film|Crime Fiction|Crime Drama|Drama,,/en/better_luck_tomorrow,2003-04-11 +Bettie Page: Dark Angel,Nico B.,Biographical film|Drama,,/en/bettie_page_dark_angel,2004-02-11 +Bewitched,Nora Ephron,Romantic comedy|Fantasy|Romance Film|Comedy,,/en/bewitched_2005,2005-06-24 +Beyond Borders,Martin Campbell,Adventure Film|Historical period drama|Romance Film|War film|Drama,,/en/beyond_borders,2003-10-24 +Beyond Re-Animator,Brian Yuzna,Horror|Science Fiction|Comedy,,/en/beyond_re-animator,2003-04-04 +Beyond the Sea,Kevin Spacey,Musical|Music|Biographical film|Drama|Musical Drama,,/en/beyond_the_sea,2004-09-11 +Bhadra,Boyapati Srinu,Action Film|Tollywood|World cinema|Drama,,/en/bhadra_2005,2005-05-12 +Bhageeratha,Rasool Ellore,Drama|Tollywood|World cinema,,/en/bhageeradha,2005-10-13 +Bheemaa,N. Lingusamy,Action Film|Tamil cinema|World cinema,,/en/bheema,2008-01-14 +Bhoot,Ram Gopal Varma,Horror|Thriller|Bollywood|World cinema,,/en/bhoot,2003-05-17 +Bichhoo,Guddu Dhanoa,Thriller|Action Film|Crime Fiction|Bollywood|World cinema|Drama,,/en/bichhoo,2000-07-07 +Big Eden,Thomas Bezucha,LGBT|Indie film|Romance Film|Comedy-drama|Gay|Gay Interest|Gay Themed|Romantic comedy|Drama,,/en/big_eden,2000-04-18 +Big Fat Liar,Shawn Levy,Family|Adventure Film|Comedy,,/en/big_fat_liar,2002-02-02 +Big Fish,Tim Burton,Fantasy|Adventure Film|War film|Comedy-drama|Film adaptation|Family Drama|Fantasy Comedy|Comedy|Drama,,/en/big_fish,2003-12-10 +Big Girls Don't Cry,Maria von Heland,World cinema|Melodrama|Teen film|Drama,,/en/big_girls_dont_cry_2002,2002-10-24 +"Big Man, Little Love",Handan İpekçi,Drama,,/en/big_man_little_love,2001-10-19 +Big Momma's House,Raja Gosnell,Action Film|Crime Fiction|Comedy,,/en/big_mommas_house,2000-05-31 +Big Momma's House 2,John Whitesell,Crime Fiction|Slapstick|Action Film|Action/Adventure|Thriller|Farce|Comedy,,/en/big_mommas_house_2,2006-01-26 +"Big Toys, No Boys 2",Tristán,Pornographic film,,/en/big_toys_no_boys_2, +Big Trouble,Barry Sonnenfeld,Crime Fiction|Black comedy|Action Film|Action/Adventure|Gangster Film|Comedy,,/en/big_trouble_2002,2002-04-05 +Bigger Than the Sky,Al Corley,Romantic comedy|Romance Film|Comedy-drama|Comedy|Drama,,/en/bigger_than_the_sky,2005-02-18 +Biggie & Tupac,Nick Broomfield,Documentary film|Hip hop film|Rockumentary|Indie film|Crime Fiction|True crime|Biographical film,,/en/biggie_tupac,2002-01-11 +Meet Bill,Bernie Goldmann|Melisa Wallick,Romantic comedy|Romance Film|Comedy|Drama,,/en/bill_2007,2007-09-08 +Billy Elliot,Stephen Daldry,Comedy|Music|Drama,,/en/billy_elliot,2000-05-19 +Bionicle 3: Web of Shadows,David Molina|Terry Shakespeare,Fantasy|Adventure Film|Animation|Family|Computer Animation|Science Fiction,,/en/bionicle_3_web_of_shadows,2005-10-11 +Bionicle 2: Legends of Metru Nui,David Molina|Terry Shakespeare,Fantasy|Adventure Film|Animation|Family|Computer Animation|Science Fiction|Children's Fantasy|Children's/Family|Fantasy Adventure,,/en/bionicle_2_legends_of_metru_nui,2004-10-19 +Bionicle: Mask of Light: The Movie,David Molina|Terry Shakespeare,Family|Fantasy|Animation|Adventure Film|Computer Animation|Science Fiction|Children's Fantasy|Children's/Family|Fantasy Adventure,,/en/bionicle_mask_of_light,2003-09-16 +Birth,Jonathan Glazer,Mystery|Indie film|Romance Film|Thriller|Drama,,/en/birth_2004,2004-09-08 +Birthday Girl,Jez Butterworth,Black comedy|Thriller|Indie film|Erotic thriller|Crime Fiction|Romance Film|Comedy|Drama,,/en/birthday_girl,2002-02-01 +"Bite Me, Fanboy",Mat Nastos,Comedy,,/en/bite_me_fanboy,2005-06-01 +Bitter Jester,Maija DiGiorgio,Indie film|Documentary film|Stand-up comedy|Culture & Society|Comedy|Biographical film,,/en/bitter_jester,2003-02-26 +Black,Sanjay Leela Bhansali,Family|Drama,,/en/black_2005,2005-02-04 +Black and White,Craig Lahiff,Trial drama|Crime Fiction|World cinema|Drama,,/en/black_and_white_2002,2002-10-31 +Black Book,Paul Verhoeven,Thriller|War film|Drama,,/en/black_book_2006,2006-09-01 +Black Christmas,Glen Morgan,Slasher|Teen film|Horror|Thriller,,/wikipedia/fr/Black_Christmas_$0028film$002C_2006$0029,2006-12-15 +Black Cloud,Ricky Schroder,Indie film|Sports|Drama,,/en/black_cloud,2004-04-30 +Black Friday,Anurag Kashyap,Crime Fiction|Historical drama|Drama,,/en/black_friday_1993,2004-05-20 +Black Hawk Down,Ridley Scott,War film|Action/Adventure|Action Film|History|Combat Films|Drama,,/en/black_hawk_down,2001-12-18 +The Black Hole,Tibor Takács,Science Fiction|Thriller|Television film,,/en/black_hole_2006,2006-06-10 +Black Knight,Gil Junger,Time travel|Adventure Film|Costume drama|Science Fiction|Fantasy|Adventure Comedy|Fantasy Comedy|Comedy,,/en/black_knight_2001,2001-11-15 +Blackball,Mel Smith,Sports|Family Drama|Comedy|Drama,,/en/blackball_2005,2005-02-11 +Blackwoods,Uwe Boll,Thriller|Crime Thriller|Psychological thriller|Drama,,/en/blackwoods, +Blade II,Guillermo del Toro,Thriller|Horror|Science Fiction|Action Film,,/en/blade_ii,2002-03-21 +Blade: Trinity,David S. Goyer,Thriller|Action Film|Horror|Action/Adventure|Superhero movie|Fantasy|Adventure Film|Action Thriller,,/en/blade_trinity,2004-12-07 +Bleach: Memories of Nobody,Noriyuki Abe,Anime|Fantasy|Animation|Action Film|Adventure Film,,/en/bleach_memories_of_nobody,2006-12-16 +Bless the Child,Chuck Russell,Horror|Crime Fiction|Drama|Thriller,,/en/bless_the_child,2000-08-11 +Blind Shaft,Li Yang,Crime Fiction|Drama,,/en/blind_shaft,2003-02-12 +Blissfully Yours,Apichatpong Weerasethakul,Erotica|Romance Film|World cinema|Drama,,/en/blissfully_yours,2002-05-17 +Blood of a Champion,Lawrence Page,Crime Fiction|Sports|Drama,,/en/blood_of_a_champion,2006-03-07 +Blood Rain,Kim Dae-seung,Thriller|Mystery|East Asian cinema|World cinema,,/en/blood_rain,2005-05-04 +Blood Work,Clint Eastwood,Mystery|Crime Thriller|Thriller|Suspense|Crime Fiction|Detective fiction|Drama,,/en/blood_work,2002-08-09 +BloodRayne,Uwe Boll,Horror|Action Film|Fantasy|Adventure Film|Costume drama,,/en/bloodrayne_2006,2005-10-23 +Bloodsport - ECW's Most Violent Matches,,Documentary film|Sports,,/en/bloodsport_ecws_most_violent_matches,2006-02-07 +Bloody Sunday,Paul Greengrass,Political drama|Docudrama|Historical fiction|War film|Drama,,/en/bloody_sunday,2002-01-16 +Blow,Ted Demme,Biographical film|Crime Fiction|Film adaptation|Historical period drama|Drama,,/en/blow,2001-03-29 +Blue Car,Karen Moncrieff,Indie film|Family Drama|Coming of age|Drama,,/en/blue_car,2003-05-02 +Blue Collar Comedy Tour Rides Again,C. B. Harding,Documentary film|Stand-up comedy|Comedy,,/en/blue_collar_comedy_tour_rides_again,2004-12-05 +Blue Collar Comedy Tour: One for the Road,C. B. Harding,Stand-up comedy|Concert film|Comedy,,/en/blue_collar_comedy_tour_one_for_the_road,2006-06-27 +Blue Collar Comedy Tour: The Movie,C. B. Harding,Stand-up comedy|Documentary film|Comedy,,/en/blue_collar_comedy_tour_the_movie,2003-03-28 +Blue Crush,John Stockwell,Teen film|Romance Film|Sports|Drama,,/en/blue_crush,2002-08-08 +Blue Gate Crossing,Yee Chin-yen,Romance Film|Drama,,/en/blue_gate_crossing,2002-09-08 +Blue Milk,William Grammer,Indie film|Short Film|Fan film,,/en/blue_milk,2006-06-20 +Blue State,Marshall Lewy,Indie film|Romance Film|Political cinema|Romantic comedy|Political satire|Road movie|Comedy,,/en/blue_state, +Blueberry,Jan Kounen,Western|Thriller|Action Film|Adventure Film,,/en/blueberry_2004,2004-02-11 +Blueprint,Rolf Schübel,Science Fiction|Drama,,/en/blueprint_2003,2003-12-08 +Bluffmaster!,Rohan Sippy,Romance Film|Musical|Crime Fiction|Romantic comedy|Musical comedy|Comedy|Bollywood|World cinema|Drama|Musical Drama,,/en/bluffmaster,2005-12-16 +Boa vs. Python,David Flores,Horror|Natural horror film|Monster|Science Fiction|Creature Film,,/en/boa_vs_python,2004-05-24 +Bobby,Emilio Estevez,Political drama|Historical period drama|History|Drama,,/en/bobby,2006-09-05 +Boiler Room,Ben Younger,Crime Fiction|Drama,,/en/boiler_room,2000-01-30 +Bolletjes Blues,Brigit Hillenius|Karin Junger,Musical,,/en/bolletjes_blues,2006-03-23 +Bollywood/Hollywood,Deepa Mehta,Bollywood|Musical|Romance Film|Romantic comedy|Musical comedy|Comedy,,/en/bollywood_hollywood,2002-10-25 +Bomb the System,Adam Bhala Lough,Crime Fiction|Indie film|Coming of age|Drama,,/en/bomb_the_system, +Bommarillu,Bhaskar,Musical|Romance Film|Drama|Musical Drama|Tollywood|World cinema,,/en/bommarillu,2006-08-09 +"Bon Cop, Bad Cop",Eric Canuel,Crime Fiction|Buddy film|Action Film|Action/Adventure|Thriller|Comedy,,/en/bon_cop_bad_cop, +Bones,Ernest R. Dickerson,Horror|Blaxploitation film|Action Film,,/en/bones_2001,2001-10-26 +Bonjour Monsieur Shlomi,Shemi Zarhin,World cinema|Family Drama|Comedy-drama|Coming of age|Family|Comedy|Drama,,/en/bonjour_monsieur_shlomi,2003-04-03 +Boogeyman,Stephen T. Kay,Horror|Supernatural|Teen film|Thriller|Mystery|Drama,,/en/boogeyman,2005-02-04 +Boogiepop and Others,Ryu Kaneda,Animation|Fantasy|Anime|Thriller|Japanese Movies,,/en/boogiepop_and_others_2000,2000-03-11 +Book of Love,Alan Brown,Indie film|Romance Film|Comedy|Drama,,/en/book_of_love_2004,2004-01-18 +Book of Shadows: Blair Witch 2,Joe Berlinger,Horror|Supernatural|Mystery|Psychological thriller|Slasher|Thriller|Ensemble Film|Crime Fiction,,/en/book_of_shadows_blair_witch_2,2000-10-27 +Bimmer,Pyotr Buslov,Crime Fiction|Drama,,/en/boomer,2003-08-02 +Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan,Larry Charles,Comedy,,/wikipedia/de_id/1782985,2006-08-04 +Born into Brothels: Calcutta's Red Light Kids,Zana Briski|Ross Kauffman,Documentary film,,/en/born_into_brothels_calcuttas_red_light_kids,2004-01-17 +Free Radicals,Barbara Albert,World cinema|Romance Film|Art film|Drama,,/en/free_radicals, +Boss,V.N. Aditya,Musical|Romance Film|Drama|Musical Drama|Tollywood|World cinema,,/en/boss_2006,2006-09-27 +Boss'n Up,Dylan C. Brown,Musical|Indie film|Crime Fiction|Musical Drama|Drama,,/en/bossn_up,2005-06-01 +Bossa Nova,Bruno Barreto,Romance Film|Comedy|Drama,,/en/bossa_nova_2000,2000-02-18 +Bosta,Philippe Aractingi,Musical,,/en/bosta, +Bowling for Columbine,Michael Moore,Indie film|Documentary film|Political cinema|Historical Documentaries,,/en/bowling_for_columbine,2002-05-15 +Bowling Fun And Fundamentals For Boys And Girls,,Documentary film|Sports,,/en/bowling_fun_and_fundamentals_for_boys_and_girls, +Boy Eats Girl,Stephen Bradley,Indie film|Horror|Teen film|Creature Film|Zombie Film|Horror comedy|Comedy,,/en/boy_eats_girl,2005-04-06 +Boynton Beach Club,Susan Seidelman,Romantic comedy|Indie film|Romance Film|Comedy-drama|Slice of life|Ensemble Film|Comedy,,/en/boynton_beach_club,2006-08-04 +Boys,S. Shankar,Musical|Romance Film|Comedy|Tamil cinema|World cinema|Drama|Musical comedy|Musical Drama,,/en/boys_2003,2003-08-29 +Brain Blockers,Lincoln Kupchak,Horror|Zombie Film|Horror comedy|Comedy,,/en/brain_blockers,2007-03-15 +Breakin' All the Rules,Daniel Taplitz,Romance Film|Romantic comedy|Comedy of Errors|Comedy,,/en/breakin_all_the_rules,2004-05-14 +Breaking and Entering,Anthony Minghella,Romance Film|Crime Fiction|Drama,,/en/breaking_and_entering,2006-09-13 +Brick,Rian Johnson,Film noir|Indie film|Teen film|Neo-noir|Mystery|Crime Thriller|Crime Fiction|Thriller|Detective fiction|Drama,,/en/brick_2006,2006-04-07 +Bride and Prejudice,Gurinder Chadha,Musical|Romantic comedy|Romance Film|Film adaptation|Comedy of manners|Musical Drama|Musical comedy|Comedy|Drama,,/en/bride_and_prejudice,2004-10-06 +Bridget Jones: The Edge of Reason,Beeban Kidron,Romantic comedy|Romance Film|Comedy,,/en/bridget_jones_the_edge_of_reason,2004-11-08 +Bridget Jones's Diary,Sharon Maguire,Romantic comedy|Film adaptation|Romance Film|Comedy of manners|Comedy|Drama,,/en/bridget_joness_diary_2001,2001-04-04 +Brigham City,Richard Dutcher,Mystery|Indie film|Crime Fiction|Thriller|Crime Thriller|Drama,,/en/brigham_city_2001, +Bright Young Things,Stephen Fry,Indie film|War film|Comedy-drama|Historical period drama|Comedy of manners|Comedy|Drama,,/en/bright_young_things,2003-10-03 +Brilliant,Roger Cardinal,Thriller,,/wikipedia/en_title/Brilliant_$0028film$0029,2004-02-15 +Bring It On,Peyton Reed,Comedy|Sports,,/en/bring_it_on,2000-08-22 +Bring It On Again,Damon Santostefano,Teen film|Sports|Comedy,,/en/bring_it_on_again,2004-01-13 +Bring It On: All or Nothing,Steve Rash,Teen film|Sports|Comedy,,/en/bring_it_on_all_or_nothing,2006-08-08 +Bringing Down the House,Adam Shankman,Romantic comedy|Screwball comedy|Comedy of Errors|Crime Comedy|Comedy,,/en/bringing_down_the_house,2003-03-07 +Broadway: The Golden Age,Rick McKay,Documentary film|Biographical film,,/en/broadway_the_golden_age,2004-06-11 +Brokeback Mountain,Ang Lee,Romance Film|Epic film|Drama,,/en/brokeback_mountain,2005-09-02 +Broken Allegiance,Nick Hallam,Indie film|Short Film|Fan film,,/en/broken_allegiance, +Broken Flowers,Jim Jarmusch,Mystery|Road movie|Comedy|Drama,,/en/broken_flowers,2005-08-05 +The Broken Hearts Club: A Romantic Comedy,Greg Berlanti,Romance Film|LGBT|Romantic comedy|Gay Themed|Indie film|Comedy-drama|Gay|Gay Interest|Ensemble Film|Comedy|Drama,,/en/the_broken_hearts_club_a_romantic_comedy,2000-01-29 +Brooklyn Lobster,Kevin Jordan,Indie film|Family Drama|Comedy-drama|Comedy|Drama,,/en/brooklyn_lobster,2005-09-09 +Brother,Takeshi Kitano,Thriller|Crime Fiction,,/en/brother, +Brother Bear,Aaron Blaise|Robert A. Walker,Family|Fantasy|Animation|Adventure Film,,/en/brother_bear,2003-10-20 +Brother Bear 2,Ben Gluck,Family|Animated cartoon|Fantasy|Adventure Film|Animation,,/en/brother_bear_2,2006-08-29 +Brother 2,Aleksei Balabanov,Crime Fiction|Thriller|Action Film,,/en/brother_2,2000-05-11 +Brotherhood of Blood,Michael Roesch|Peter Scheerer|Sid Haig,Horror|Cult film|Creature Film,,/en/brotherhood_of_blood, +Brotherhood of the Wolf,Christophe Gans,Martial Arts Film|Adventure Film|Mystery|Science Fiction|Historical fiction|Thriller|Action Film,,/en/brotherhood_of_the_wolf,2001-01-31 +Brothers of the Head,Keith Fulton|Louis Pepe,Indie film|Musical|Film adaptation|Music|Mockumentary|Comedy-drama|Historical period drama|Musical Drama|Drama,,/en/brothers_of_the_head,2005-09-10 +Brown Sugar,Rick Famuyiwa,Musical|Romantic comedy|Coming of age|Romance Film|Musical Drama|Musical comedy|Comedy|Drama,,/en/brown_sugar_2002,2002-10-05 +Bruce Almighty,Tom Shadyac,Comedy|Fantasy|Drama,,/en/bruce_almighty,2003-05-23 +Bubba Ho-Tep,Don Coscarelli,Horror|Parody|Comedy|Mystery|Drama,,/en/bubba_ho-tep,2002-06-09 +Bubble,Steven Soderbergh,Crime Fiction|Mystery|Indie film|Thriller|Drama,,/en/bubble,2005-09-03 +Bubble Boy,Blair Hayes,Romance Film|Teen film|Romantic comedy|Adventure Film|Comedy|Drama,,/en/bubble_boy,2001-08-23 +Buddy Boy,Mark Hanlon,Psychological thriller|Thriller|Indie film|Erotic thriller,,/en/buddy_boy,2000-03-24 +Buffalo Dreams,David Jackson,Western|Teen film|Drama,,/en/buffalo_dreams,2005-03-11 +Buffalo Soldiers,Gregor Jordan,War film|Crime Fiction|Comedy|Thriller|Satire|Indie film|Drama,,/en/buffalo_soldiers,2001-09-08 +Bug,William Friedkin,Thriller|Horror|Indie film|Drama,,/en/bug_2006,2006-05-19 +Bulletproof Monk,Paul Hunter,Martial Arts Film|Fantasy|Action Film|Buddy film|Thriller|Action/Adventure|Action Comedy|Comedy,,/en/bulletproof_monk,2003-04-16 +Bully,Larry Clark,Teen film|Crime Fiction|Thriller|Drama,,/en/bully_2001,2001-06-15 +Bunny,V. V. Vinayak,Musical|Romance Film|World cinema|Tollywood|Musical Drama|Drama,,/en/bunny_2005,2005-04-06 +Bunshinsaba,Ahn Byeong-ki,Horror|World cinema|East Asian cinema,,/en/bunshinsaba,2004-05-14 +Bunty Aur Babli,Shaad Ali,Romance Film|Musical|World cinema|Musical comedy|Comedy|Adventure Film|Crime Fiction,,/en/bunty_aur_babli,2005-05-27 +Bus 174,José Padilha,Documentary film|True crime,,/en/onibus_174,2002-10-22 +Bus Conductor,V. M. Vinu,Comedy|Action Film|Malayalam Cinema|World cinema|Drama,,/en/bus_conductor,2005-12-23 +Busted Shoes and Broken Hearts: A Film About Lowlight,Michael Votto,Indie film|Documentary film,,/m/0bvs38, +Butterfly,Yan Yan Mak,LGBT|Chinese Movies|Drama,,/en/butterfly_2004,2004-09-04 +Butterfly on a Wheel,Mike Barker,Thriller|Crime Thriller|Crime Fiction|Psychological thriller|Drama,,/en/butterfly_on_a_wheel,2007-02-10 +C.I.D.Moosa,Johny Antony,Action Film|Comedy|Malayalam Cinema|World cinema,,/en/c_i_d_moosa,2003-07-04 +C.R.A.Z.Y.,Jean-Marc Vallée,LGBT|Indie film|Comedy-drama|Gay|Gay Interest|Gay Themed|Historical period drama|Coming of age|Drama,,/en/c_r_a_z_y,2005-05-27 +C.S.A.: The Confederate States of America,Kevin Willmott,Mockumentary|Satire|Black comedy|Parody|Indie film|Political cinema|Comedy|Drama,,/en/c_s_a_the_confederate_states_of_america, +Cabaret Paradis,Corinne Benizio|Gilles Benizio,Comedy,,/en/cabaret_paradis,2006-04-12 +Caché,Michael Haneke,Thriller|Mystery|Psychological thriller|Drama,,/wikipedia/it_id/335645,2005-05-14 +Cactuses,Matt Hannon|Rick Rapoza,Drama,,/en/cactuses,2006-03-15 +Cadet Kelly,Larry Shaw,Teen film|Coming of age|Family|Comedy,,/en/cadet_kelly,2002-03-08 +Caffeine,John Cosgrove,Romantic comedy|Romance Film|Indie film|Ensemble Film|Workplace Comedy|Comedy,,/en/caffeine_2006, +Cake,Nisha Ganatra|Jennifer Arzt,Romantic comedy|Short Film|Romance Film|Comedy|Drama,,/wikipedia/es_id/1062610, +Calcutta Mail,Sudhir Mishra,Thriller|Bollywood|World cinema,,/en/calcutta_mail,2003-06-30 +Hackers Wanted,Sam Bozzo,Indie film|Documentary film,,/en/can_you_hack_it, +Candy,Neil Armfield,Romance Film|Indie film|World cinema|Drama,,/en/candy_2006,2006-04-27 +Caótica Ana,Julio Medem,Romance Film|Mystery|Drama,,/en/caotica_ana,2007-08-24 +Capote,Bennett Miller,Crime Fiction|Biographical film|Drama,,/en/capote,2005-09-02 +Capturing the Friedmans,Andrew Jarecki,Documentary film|Mystery|Biographical film,,/en/capturing_the_friedmans,2003-01-17 +Care Bears: Journey to Joke-a-lot,Mike Fallows,Musical|Computer Animation|Animation|Children's Fantasy|Children's/Family|Musical comedy|Comedy|Family,,/en/care_bears_journey_to_joke_a_lot,2004-10-05 +Cargo,Clive Gordon,Thriller|Psychological thriller|Indie film|Adventure Film|Drama,,/en/cargo_2006,2006-01-24 +Cars,John Lasseter|Joe Ranft,Animation|Family|Adventure Film|Sports|Comedy,,/en/cars,2006-03-14 +Casanova,Lasse Hallström,Romance Film|Romantic comedy|Costume drama|Adventure Film|Historical period drama|Swashbuckler film|Comedy|Drama,,/en/casanova,2005-09-03 +Sherlock: Case of Evil,Graham Theakston,Mystery|Action Film|Adventure Film|Thriller|Crime Fiction|Drama,,/en/case_of_evil,2002-10-25 +Cast Away,Robert Zemeckis,Airplanes and airports|Adventure Film|Action/Adventure|Drama,,/en/cast_away,2000-12-07 +Castlevania,Paul W. S. Anderson|Sylvain White,Action Film|Horror,,/en/castlevania_2007, +Catch Me If You Can,Steven Spielberg,Crime Fiction|Comedy|Biographical film|Drama,,/en/catch_me_if_you_can,2002-12-16 +Catch That Kid,Bart Freundlich,Teen film|Adventure Film|Crime Fiction|Family|Caper story|Children's/Family|Crime Comedy|Family-Oriented Adventure|Comedy,,/en/catch_that_kid,2004-02-06 +Caterina in the Big City,Paolo Virzì,Comedy|Drama,,/en/caterina_in_the_big_city,2003-10-24 +Cats & Dogs,Lawrence Guterman,Adventure Film|Family|Action Film|Children's/Family|Fantasy Adventure|Fantasy Comedy|Comedy,,/en/cats_dogs,2001-07-04 +Catwoman,Pitof,Action Film|Crime Fiction|Fantasy|Action/Adventure|Thriller|Superhero movie,,/en/catwoman_2004,2004-07-19 +Caved In: Prehistoric Terror,Richard Pepin,Science Fiction|Horror|Natural horror film|Monster|Fantasy|Television film|Creature Film|Sci-Fi Horror,,/en/caved_in_prehistoric_terror,2006-01-07 +Cellular,David R. Ellis,Thriller|Action Film|Crime Thriller|Action/Adventure,,/en/cellular,2004-09-10 +Center Stage,Nicholas Hytner,Teen film|Dance film|Musical|Musical Drama|Ensemble Film|Drama,,/en/center_stage,2000-05-12 +Chai Lai,Poj Arnon,Action Film|Martial Arts Film|Comedy,,/en/chai_lai,2006-01-26 +Chain,Jem Cohen,Documentary film,,/en/chain_2004, +Chakram,Krishna Vamsi,Romance Film|Drama|Tollywood|World cinema,,/en/chakram_2005,2005-03-25 +Challenger,Philip Kaufman,Drama,,/en/challenger_2007, +Chalo Ishq Ladaaye,Aziz Sejawal,Romance Film|Comedy|Bollywood|World cinema,,/en/chalo_ishq_ladaaye,2002-12-27 +Chalte Chalte,Aziz Mirza,Romance Film|Musical|Bollywood|Drama|Musical Drama,,/en/chalte_chalte,2003-06-12 +Chameli,Sudhir Mishra|Anant Balani,Romance Film|Bollywood|World cinema|Drama,,/en/chameli,2003-12-31 +Chandni Bar,Madhur Bhandarkar,Crime Fiction|Bollywood|World cinema|Drama,,/en/chandni_bar,2001-09-28 +Chandramukhi,P. Vasu,Horror|World cinema|Musical|Horror comedy|Musical comedy|Comedy|Fantasy|Romance Film,,/en/chandramukhi,2005-04-13 +Changing Lanes,Roger Michell,Thriller|Psychological thriller|Melodrama|Drama,,/en/changing_lanes,2002-04-07 +Chaos,Tony Giglio,Thriller|Action Film|Crime Fiction|Heist film|Action/Adventure|Drama,,/en/chaos_2007,2005-12-15 +Chaos,David DeFalco,Horror|Teen film|B movie|Slasher,,/en/chaos_2005,2005-08-10 +Chaos and Creation at Abbey Road,Simon Hilton,Musical,,/en/chaos_and_creation_at_abbey_road,2006-01-27 +Chaos Theory,Marcos Siega,Romance Film|Romantic comedy|Comedy-drama|Comedy|Drama,,/en/chaos_theory_2007, +Chapter 27,Jarrett Schaefer,Indie film|Crime Fiction|Biographical film|Drama,,/en/chapter_27,2007-01-25 +Charlie and the Chocolate Factory,Tim Burton,Fantasy|Remake|Adventure Film|Family|Children's Fantasy|Children's/Family|Comedy,,/en/charlie_and_the_chocolate_factory_2005,2005-07-10 +Charlie's Angels,Joseph McGinty Nichol,Action Film|Crime Fiction|Comedy|Adventure Film|Thriller,,/en/charlies_angels,2000-10-22 +Charlie's Angels: Full Throttle,Joseph McGinty Nichol,Martial Arts Film|Action Film|Adventure Film|Crime Fiction|Action/Adventure|Action Comedy|Comedy,,/en/charlies_angels_full_throttle,2003-06-18 +Charlotte Gray,Gillian Armstrong,Romance Film|War film|Political drama|Historical period drama|Film adaptation|Drama,,/en/charlotte_gray,2001-12-17 +Charlotte's Web,Gary Winick,Animation|Family|Comedy,,/en/charlottes_web,2006-12-07 +Chasing Liberty,Andy Cadiff,Romantic comedy|Teen film|Romance Film|Road movie|Comedy,,/en/chasing_liberty,2004-01-07 +Chasing Papi,Linda Mendoza,Romance Film|Romantic comedy|Farce|Chase Movie|Comedy,,/en/chasing_papi,2003-04-16 +Chasing Sleep,Michael Walker,Mystery|Psychological thriller|Surrealism|Thriller|Indie film|Suspense|Crime Thriller,,/en/chasing_sleep,2001-09-16 +Chasing the Horizon,Markus Canter|Mason Canter,Documentary film|Auto racing,,/en/chasing_the_horizon,2006-04-26 +Chathikkatha Chanthu,Meccartin,Comedy|Malayalam Cinema|World cinema|Drama,,/en/chathikkatha_chanthu,2004-04-14 +Chhatrapati,S. S. Rajamouli,Action Film|Tollywood|World cinema|Drama,,/en/chatrapati,2005-09-25 +Cheaper by the Dozen,Shawn Levy,Family|Comedy|Drama,,/en/cheaper_by_the_dozen_2003,2003-12-25 +Cheaper by the Dozen 2,Adam Shankman,Family|Adventure Film|Domestic Comedy|Comedy,,/en/cheaper_by_the_dozen_2,2005-12-21 +Checking Out,Jeff Hare,Black comedy|Comedy,,/en/checking_out_2005,2005-04-10 +Chellamae,Gandhi Krishna,Romance Film|Tamil cinema|World cinema,,/en/chellamae,2004-09-10 +Chemman Chaalai,Deepak Kumaran Menon,Tamil cinema|World cinema|Drama,,/en/chemman_chaalai, +Chennaiyil Oru Mazhai Kaalam,Prabhu Deva,,,/en/chennaiyil_oru_mazhai_kaalam, +The Farewell Tour,Dorina Sanchez|David Mallet,Music video,,/en/cher_the_farewell_tour_live_in_miami,2003-08-26 +Cherry Falls,Geoffrey Wright,Satire|Slasher|Indie film|Horror|Horror comedy|Comedy,,/en/cherry_falls,2000-07-29 +Chess,RajBabu,Crime Fiction|Thriller|Action Film|Comedy|Malayalam Cinema|World cinema,,/wikipedia/en_title/Chess_$00282006_film$0029,2006-07-07 +Girl from Rio,Christopher Monger,Romantic comedy|Romance Film|Comedy,,/en/chica_de_rio,2003-04-11 +Chicago,Rob Marshall,Musical|Crime Fiction|Comedy|Musical comedy,,/en/chicago_2002,2002-12-10 +Chicken Little,Mark Dindal,Animation|Adventure Film|Comedy,,/en/chicken_little,2005-10-30 +Chicken Run,Peter Lord|Nick Park,Family|Animation|Comedy,,/en/chicken_run,2000-06-21 +Child Marriage,Neeraj Kumar,Documentary film,,/en/child_marriage_2005, +Children of Men,Alfonso Cuarón,Thriller|Action Film|Science Fiction|Dystopia|Doomsday film|Future noir|Mystery|Adventure Film|Film adaptation|Action Thriller|Drama,,/en/children_of_men,2006-09-03 +Children of the Corn: Revelation,Guy Magar,Horror|Supernatural|Cult film,,/en/children_of_the_corn_revelation,2001-10-09 +Children of the Living Dead,Tor Ramsey,Indie film|Teen film|Horror|Zombie Film|Horror comedy,,/en/children_of_the_living_dead, +Chinthamani Kolacase,Shaji Kailas,Horror|Mystery|Crime Fiction|Action Film|Thriller|Malayalam Cinema|World cinema,,/en/chinthamani_kolacase,2006-03-31 +CHiPs,,Musical|Children's/Family,,/en/chips_2008, +Chithiram Pesuthadi,Mysskin,Romance Film|Tamil cinema|World cinema|Drama,,/en/chithiram_pesuthadi,2006-02-10 +Chocolat,Lasse Hallström,Romance Film|Drama,,/en/chocolat_2000,2000-12-15 +Choose Your Own Adventure The Abominable Snowman,Bob Doucette,Adventure Film|Family|Children's/Family|Family-Oriented Adventure|Animation,,/en/choose_your_own_adventure_the_abominable_snowman,2006-07-25 +Chopin: Desire for Love,Jerzy Antczak,Biographical film|Romance Film|Music|Drama,,/en/chopin_desire_for_love,2002-03-01 +Chopper,Andrew Dominik,Biographical film|Crime Fiction|Comedy|Drama,,/en/chopper,2000-08-03 +Chori Chori,Milan Luthria,Romance Film|Musical|Romantic comedy|Musical comedy|Comedy|Bollywood|World cinema|Drama|Musical Drama,,/en/chori_chori_2003,2003-08-01 +Chori Chori Chupke Chupke,Abbas Burmawalla|Mustan Burmawalla,Romance Film|Musical|Bollywood|World cinema|Drama|Musical Drama,,/en/chori_chori_chupke_chupke,2001-03-09 +Christina's House,Gavin Wilding,Thriller|Mystery|Horror|Teen film|Slasher|Psychological thriller|Drama,,/en/christinas_house,2000-02-24 +Christmas with the Kranks,Joe Roth,Christmas movie|Family|Film adaptation|Slapstick|Holiday Film|Comedy,,/en/christmas_with_the_kranks,2004-11-24 +Chromophobia,Martha Fiennes,Family Drama|Drama,,/en/chromophobia,2005-05-21 +Chubby Killer,Reuben Rox,Slasher|Indie film|Horror,,/en/chubby_killer, +Chukkallo Chandrudu,Siva Kumar,Comedy|Tollywood|World cinema|Drama,,/en/chukkallo_chandrudu,2006-01-14 +Chup Chup Ke,Priyadarshan|Kookie Gulati,Romantic comedy|Comedy|Romance Film|Drama,,/en/chup_chup_ke,2006-06-09 +Church Ball,Kurt Hale,Family|Sports|Comedy,,/en/church_ball,2006-03-17 +Churchill: The Hollywood Years,Peter Richardson,Satire|Comedy,,/en/churchill_the_hollywood_years,2004-12-03 +Cinderella III: A Twist in Time,Frank Nissen,Family|Animated cartoon|Fantasy|Romance Film|Animation|Children's/Family,,/en/cinderella_iii,2007-02-06 +Cinderella Man,Ron Howard,Biographical film|Historical period drama|Romance Film|Sports|Drama,,/en/cinderella_man,2005-05-23 +Cinemania,Angela Christlieb|Stephen Kijak,Documentary film|Culture & Society,,/en/cinemania, +City of Ghosts,Matt Dillon,Thriller|Crime Fiction|Crime Thriller|Drama,,/en/city_of_ghosts,2003-03-27 +City of God,Fernando Meirelles,Crime Fiction|Drama,,/en/city_of_god,2002-05-18 +Claustrophobia,Mark Tapio Kines,Slasher|Horror,,/en/claustrophobia_2003, +Clean,Olivier Assayas,Music|Drama,,/en/clean,2004-03-27 +"Clear Cut: The Story of Philomath, Oregon",Peter Richardson,Documentary film,,/en/clear_cut_the_story_of_philomath_oregon,2006-01-20 +Clerks II,Kevin Smith,Buddy film|Workplace Comedy|Comedy,,/en/clerks_ii,2006-05-26 +Click,Frank Coraci,Comedy|Fantasy|Drama,,/en/click,2006-06-22 +Clockstoppers,Jonathan Frakes,Science Fiction|Teen film|Family|Thriller|Adventure Film|Comedy,,/en/clockstoppers,2002-03-29 +Closer,Mike Nichols,Romance Film|Drama,,/en/closer_2004,2004-12-03 +Closing the Ring,Richard Attenborough,War film|Romance Film|Drama,,/en/closing_the_ring,2007-09-14 +Club Dread,Jay Chandrasekhar,Parody|Horror|Slasher|Black comedy|Indie film|Horror comedy|Comedy,,/en/club_dread,2004-02-27 +Coach Carter,Thomas Carter,Coming of age|Sports|Docudrama|Biographical film|Drama,,/en/coach_carter,2005-01-13 +The Coast Guard,Kim Ki-duk,Action Film|War film|East Asian cinema|World cinema|Drama,,/en/coast_guard_2002,2002-11-14 +Code 46,Michael Winterbottom,Science Fiction|Thriller|Romance Film|Drama,,/en/code_46,2004-05-07 +Codename: Kids Next Door: Operation Z.E.R.O.,Tom Warburton,Science Fiction|Animation|Adventure Film|Family|Comedy|Crime Fiction,,/en/codename_kids_next_door_operation_z_e_r_o,2006-01-13 +Coffee and Cigarettes,Jim Jarmusch,Music|Comedy|Drama,,/en/coffee_and_cigarettes,2003-09-05 +Cold Creek Manor,Mike Figgis,Thriller|Mystery|Psychological thriller|Crime Thriller|Drama,,/en/cold_creek_manor,2003-09-19 +Cold Mountain,Anthony Minghella,War film|Romance Film|Drama,,/en/cold_mountain,2003-12-25 +Cold Showers,Antony Cordier,Coming of age|LGBT|World cinema|Gay Themed|Teen film|Erotic Drama|Drama,,/en/cold_showers,2005-05-22 +Collateral,Michael Mann,Thriller|Crime Fiction|Crime Thriller|Film noir|Drama,,/en/collateral,2004-08-05 +Collateral Damage,Andrew Davis,Action Film|Thriller|Drama,,/en/collateral_damage_2002,2002-02-04 +Comedian,Christian Charles,Indie film|Documentary film|Stand-up comedy|Comedy|Biographical film,,/en/comedian_2002,2002-10-11 +Coming Out,Joel Zwick,Comedy|Drama,,/en/coming_out_2006, +Commitments,Carol Mayes,Romantic comedy|Romance Film|Drama,,/en/commitments,2001-05-04 +Common Ground,Donna Deitch,LGBT|Drama,,/en/common_ground_2000,2000-01-29 +Company,Ram Gopal Varma,Thriller|Action Film|Crime Fiction|Bollywood|World cinema|Drama,,/en/company_2002,2002-04-15 +Confessions of a Dangerous Mind,George Clooney,Biographical film|Thriller|Crime Fiction|Comedy|Drama,,/en/confessions_of_a_dangerous_mind, +Confessions of a Teenage Drama Queen,Sara Sugarman,Family|Teen film|Musical comedy|Romantic comedy,,/en/confessions_of_a_teenage_drama_queen,2004-02-17 +Confetti,Debbie Isitt,Mockumentary|Romantic comedy|Romance Film|Parody|Music|Comedy,,/en/confetti_2006,2006-05-05 +Confidence,James Foley,Thriller|Crime Fiction|Drama,,/en/confidence_2004,2003-01-20 +Connie and Carla,Michael Lembeck,LGBT|Buddy film|Comedy of Errors|Comedy,,/en/connie_and_carla,2004-04-16 +Conspiracy,Frank Pierson,History|War film|Political drama|Historical period drama|Drama,,/en/conspiracy_2001,2001-05-19 +Constantine,Francis Lawrence,Horror|Fantasy|Action Film,,/en/constantine_2005,2005-02-08 +Control Room,Jehane Noujaim,Documentary film|Political cinema|Culture & Society|War film|Journalism|Media studies,,/en/control_room, +Control,Anton Corbijn,Biographical film|Indie film|Musical|Japanese Movies|Drama|Musical Drama,,/en/control_the_ian_curtis_film,2007-05-17 +Cope,Ronald Jackson|Ronald Jerry,Horror|B movie,,/en/cope_2005,2007-01-23 +Copying Beethoven,Agnieszka Holland,Biographical film|Music|Historical fiction|Drama,,/en/copying_beethoven,2006-07-30 +Corporate,Madhur Bhandarkar,Drama,,/en/corporate,2006-07-07 +Corpse Bride,Tim Burton|Mike Johnson,Fantasy|Animation|Musical|Romance Film,,/en/corpse_bride,2005-09-07 +Covert One: The Hades Factor,Mick Jackson,Thriller|Action Film|Action/Adventure,,/en/covert_one_the_hades_factor, +Cow Belles,Francine McDougall,Family|Television film|Teen film|Romantic comedy|Comedy,,/en/cow_belles,2006-03-24 +Cowards Bend the Knee,Guy Maddin,Silent film|Indie film|Surrealism|Romance Film|Experimental film|Crime Fiction|Avant-garde|Drama,,/en/cowards_bend_the_knee,2003-02-26 +Cowboy Bebop: The Movie,Shinichirō Watanabe,Anime|Science Fiction|Action Film|Animation|Comedy|Crime Fiction,,/en/cowboy_bebop_the_movie,2001-09-01 +Coyote Ugly,David McNally,Musical|Romance Film|Comedy|Drama|Musical comedy|Musical Drama,,/en/coyote_ugly,2000-07-31 +Crackerjack,Paul Moloney,Comedy,,/en/crackerjack_2002,2002-11-07 +Cradle 2 the Grave,Andrzej Bartkowiak,Martial Arts Film|Thriller|Action Film|Crime Fiction|Buddy film|Action Thriller|Adventure Film|Crime,,/en/cradle_2_the_grave,2003-02-28 +Cradle of Fear,Alex Chandon,Horror|B movie|Slasher,,/en/cradle_of_fear, +Crank,Neveldine/Taylor,Thriller|Action Film|Action/Adventure|Crime Thriller|Crime Fiction|Action Thriller,,/en/crank,2006-08-31 +Crash,Paul Haggis,Crime Fiction|Indie film|Drama,,/en/crash_2004,2004-09-10 +Crazy/Beautiful,John Stockwell,Teen film|Romance Film|Drama,,/en/crazy_beautiful,2001-06-28 +Creep,Christopher Smith,Horror|Mystery|Thriller,,/en/creep_2005,2004-08-10 +Criminal,Gregory Jacobs,Thriller|Crime Fiction|Indie film|Crime Thriller|Heist film|Comedy|Drama,,/en/criminal,2004-09-10 +Crimson Gold,Jafar Panahi,World cinema|Thriller|Drama,,/en/crimson_gold, +Crimson Rivers II: Angels of the Apocalypse,Olivier Dahan,Action Film|Thriller|Crime Fiction,,/en/crimson_rivers_ii_angels_of_the_apocalypse,2004-02-18 +Crocodile,Tobe Hooper,Horror|Natural horror film|Teen film|Thriller|Action Film|Action/Adventure,,/en/crocodile_2000,2000-12-26 +Crocodile 2: Death Swamp,Gary Jones,Horror|Natural horror film|B movie|Action/Adventure|Action Film|Thriller|Adventure Film|Action Thriller|Creature Film,,/en/crocodile_2_death_swamp,2002-08-01 +Crocodile Dundee in Los Angeles,Simon Wincer,Action Film|Adventure Film|Action/Adventure|World cinema|Action Comedy|Comedy|Drama,,/en/crocodile_dundee_in_los_angeles,2001-04-12 +Crossing the Bridge: The Sound of Istanbul,Fatih Akın,Musical|Documentary film|Music|Culture & Society,,/en/crossing_the_bridge_the_sound_of_istanbul,2005-06-09 +Crossover,Preston A. Whitmore II,Action Film|Coming of age|Teen film|Sports|Short Film|Fantasy|Drama,,/en/crossover_2006,2006-09-01 +Crossroads,Tamra Davis,Coming of age|Teen film|Musical|Romance Film|Romantic comedy|Adventure Film|Comedy-drama|Musical Drama|Musical comedy|Comedy|Drama,,/en/crossroads_2002,2002-02-11 +"Crouching Tiger, Hidden Dragon",Ang Lee,Romance Film|Action Film|Martial Arts Film|Drama,,/en/crouching_tiger_hidden_dragon,2000-05-16 +Cruel Intentions 3,Scott Ziehl,Erotica|Thriller|Teen film|Psychological thriller|Romance Film|Erotic thriller|Crime Fiction|Crime Thriller|Drama,,/en/cruel_intentions_3,2004-05-25 +Crustacés et Coquillages,Jacques Martineau|Olivier Ducastel,Musical|Romantic comedy|LGBT|Romance Film|World cinema|Musical Drama|Musical comedy|Comedy|Drama,,/en/crustaces_et_coquillages,2005-02-12 +Cry_Wolf,Jeff Wadlow,Slasher|Horror|Mystery|Thriller|Drama,,/en/cry_wolf,2005-09-16 +Cube 2: Hypercube,Andrzej Sekuła,Science Fiction|Horror|Psychological thriller|Thriller|Escape Film,,/en/cube_2_hypercube,2002-04-15 +Curious George,Matthew O'Callaghan,Animation|Adventure Film|Family|Comedy,,/en/curious_george_2006,2006-02-10 +Curse of the Golden Flower,Zhang Yimou,Romance Film|Action Film|Drama,,/en/curse_of_the_golden_flower,2006-12-21 +Cursed,Wes Craven,Horror|Thriller|Horror comedy|Comedy,,/en/cursed,2004-11-07 +D-Tox,Jim Gillespie,Thriller|Crime Thriller|Horror|Mystery,,/en/d-tox,2002-01-04 +Daddy,Suresh Krissna,Family|Drama|Tollywood|World cinema,,/en/daddy,2001-10-04 +Daddy Day Care,Steve Carr,Family|Comedy,,/en/daddy_day_care,2003-05-04 +Daddy-Long-Legs,Gong Jeong-shik,Romantic comedy|East Asian cinema|World cinema|Drama,,/en/daddy_long-legs,2005-01-13 +Dahmer,David Jacobson,Thriller|Biographical film|LGBT|Crime Fiction|Indie film|Mystery|Cult film|Horror|Slasher|Drama,,/en/dahmer_2002,2002-06-21 +Daisy,Andrew Lau,Chinese Movies|Romance Film|Melodrama|Drama,,/en/daisy_2006,2006-03-09 +Daivanamathil,Jayaraj,Drama|Malayalam Cinema|World cinema,,/en/daivanamathil, +Daltry Calhoun,Katrina Holden Bronson,Black comedy|Comedy-drama|Comedy|Drama,,/en/daltry_calhoun,2005-09-25 +Dan in Real Life,Peter Hedges,Romance Film|Romantic comedy|Comedy-drama|Domestic Comedy|Comedy|Drama,,/en/dan_in_real_life,2007-10-26 +Dancer in the Dark,Lars von Trier,Musical|Crime Fiction|Melodrama|Drama|Musical Drama,,/en/dancer_in_the_dark,2000-05-17 +Daniel Amos Live in Anaheim 1985,Dave Perry,Music video,,/en/daniel_amos_live_in_anaheim_1985, +Danny Deckchair,Jeff Balsmeyer,Romantic comedy|Indie film|Romance Film|World cinema|Fantasy Comedy|Comedy,,/en/danny_deckchair, +Daredevil,Mark Steven Johnson,Action Film|Fantasy|Thriller|Crime Fiction|Superhero movie,,/en/daredevil_2003,2003-02-09 +Dark Blue,Ron Shelton,Action Film|Crime Fiction|Historical period drama|Drama,,/en/dark_blue,2002-12-14 +Dark Harvest,"Paul Moore, Jr.",Horror|Slasher,,/en/dark_harvest, +Dark Water,Walter Salles,Thriller|Horror|Drama,,/en/dark_water,2005-06-27 +Dark Water,Hideo Nakata,Thriller|Horror|Mystery|Drama,,/en/dark_water_2002,2002-01-19 +Darkness,Jaume Balagueró,Horror,,/en/darkness_2002,2002-10-03 +Darna Mana Hai,Prawaal Raman,Horror|Adventure Film|Bollywood|World cinema,,/en/darna_mana_hai,2003-07-25 +Darna Zaroori Hai,Ram Gopal Varma|Jijy Philip|Prawaal Raman|Vivek Shah|J. D. Chakravarthy|Sajid Khan|Manish Gupta,Horror|Thriller|Comedy|Bollywood|World cinema,,/en/darna_zaroori_hai,2006-04-28 +Darth Vader's Psychic Hotline,John E. Hudgens,Indie film|Short Film|Fan film,,/en/darth_vaders_psychic_hotline,2002-04-16 +Darwin's Nightmare,Hubert Sauper,Documentary film|Political cinema|Biographical film,,/en/darwins_nightmare,2004-09-01 +The Experiment,Paul Scheuring,Thriller|Psychological thriller|Drama,,/en/das_experiment,2010-07-15 +Dasavathaaram,K. S. Ravikumar,Science Fiction|Disaster Film|Tamil cinema,,/en/dasavatharam,2008-06-12 +Date Movie,Aaron Seltzer|Jason Friedberg,Romantic comedy|Parody|Romance Film|Comedy,,/en/date_movie,2006-02-17 +Dave Attell's Insomniac Tour,Joel Gallen,Stand-up comedy|Comedy,,/en/dave_attells_insomniac_tour,2006-04-11 +Dave Chappelle's Block Party,Michel Gondry,Documentary film|Music|Concert film|Hip hop film|Stand-up comedy|Comedy,,/en/dave_chappelles_block_party,2006-03-03 +David & Layla,Jay Jonroy,Romantic comedy|Indie film|Romance Film|Comedy-drama|Comedy|Drama,,/en/david_layla,2005-10-21 +David Gilmour in Concert,David Mallet,Music video|Concert film,,/en/david_gilmour_in_concert, +Dawn of the Dead,Zack Snyder,Horror|Action Film|Thriller|Science Fiction|Drama,,/en/dawn_of_the_dead_2004,2004-03-10 +Day of the Dead,Steve Miner,Splatter film|Doomsday film|Horror|Thriller|Cult film|Zombie Film,,/en/day_of_the_dead_2007,2008-04-08 +Day of the Dead 2: Contagium,Ana Clavell|James Glenn Dudelson,Horror|Zombie Film,,/en/day_of_the_dead_2_contagium,2005-10-18 +Day Watch,Timur Bekmambetov,Thriller|Fantasy|Action Film,,/en/day_watch,2006-01-01 +Day Zero,Bryan Gunnar Cole,Indie film|Political drama|Drama,,/en/day_zero,2007-11-02 +De-Lovely,Irwin Winkler,Musical|Biographical film|Musical Drama|Drama,,/en/de-lovely,2004-05-22 +Dead & Breakfast,Matthew Leutwyler,Horror|Black comedy|Creature Film|Zombie Film|Horror comedy|Comedy,,/en/dead_breakfast,2004-03-19 +Dead Birds,Alex Turner,Horror,,/en/dead_birds_2005,2005-03-15 +Dead End,Jean-Baptiste Andrea|Fabrice Canepa,Horror|Thriller|Mystery|Comedy,,/en/dead_end_2003,2003-01-30 +Dead Friend,Kim Tae-kyeong,Horror|East Asian cinema|World cinema,,/en/dead_friend,2004-06-18 +Dead Man's Shoes,Shane Meadows,Psychological thriller|Crime Fiction|Thriller|Drama,,/en/dead_mans_shoes,2004-10-01 +Dear Frankie,Shona Auerbach,Indie film|Drama|Romance Film,,/en/dear_frankie,2004-05-04 +Dear Wendy,Thomas Vinterberg,Indie film|Crime Fiction|Melodrama|Comedy|Romance Film|Drama,,/en/dear_wendy,2004-05-16 +Death in Gaza,James Miller,Documentary film|War film|Children's Issues|Culture & Society|Biographical film,,/en/death_in_gaza,2004-02-11 +Death to Smoochy,Danny DeVito,Comedy|Thriller|Crime Fiction|Drama,,/en/death_to_smoochy,2002-03-29 +Death Trance,Yuji Shimomura,Action Film|Fantasy|Martial Arts Film|Thriller|Action/Adventure|World cinema|Action Thriller|Japanese Movies,,/en/death_trance,2005-05-12 +Death Walks the Streets,James Zahn,Indie film|Horror|Crime Fiction,,/en/death_walks_the_streets,2008-06-26 +Deathwatch,Michael J. Bassett,Horror|War film|Thriller|Drama,,/en/deathwatch,2002-10-06 +December Boys,Rod Hardy,Coming of age|Film adaptation|Indie film|Historical period drama|World cinema|Drama,,/en/december_boys, +Decoys,Matthew Hastings,Science Fiction|Horror|Thriller|Alien Film|Horror comedy,,/en/decoys, +Deepavali,Ezhil,Romance Film|Tamil cinema|World cinema,,/en/deepavali,2007-02-09 +Deewane Huye Paagal,Vikram Bhatt,Romance Film|Romantic comedy|Comedy|Bollywood|World cinema|Drama,,/en/deewane_huye_pagal,2005-11-25 +Déjà Vu,Tony Scott,Thriller|Science Fiction|Time travel|Action Film|Mystery|Crime Thriller|Action/Adventure,,/wikipedia/ja_id/980449,2006-11-20 +Democrazy,Michael Legge,Parody|Action/Adventure|Action Film|Indie film|Superhero movie|Comedy,,/en/democrazy_2005, +Demonium,Andreas Schnaas,Horror|Thriller,,/en/demonium,2001-08-25 +Der Schuh des Manitu,Michael Herbig,Western|Comedy|Parody,,/en/der_schuh_des_manitu,2001-07-13 +The Tunnel,Roland Suso Richter,World cinema|Thriller|Political drama|Political thriller|Drama,,/en/der_tunnel,2001-01-21 +Derailed,Mikael Håfström,Thriller|Psychological thriller|Crime Thriller|Drama,,/en/derailed,2005-11-11 +Derailed,Bob Misiorowski,Thriller|Action Film|Martial Arts Film|Disaster Film|Action/Adventure,,/en/derailed_2002, +Destiny's Child: Live In Atlana,Julia Knowles,Music|Documentary film,,/en/destinys_child_live_in_atlana,2006-03-27 +Deuce Bigalow: European Gigolo,Mike Bigelow,Sex comedy|Slapstick|Gross out|Gross-out film|Comedy,,/en/deuce_bigalow_european_gigolo,2005-08-06 +Dev,Govind Nihalani,Drama|Bollywood,,/en/dev,2004-06-11 +Devadasu,YVS Chowdary|Gopireddy Mallikarjuna Reddy,Romance Film|Drama|Tollywood|World cinema,,/en/devadasu,2006-01-11 +Devdas,Sanjay Leela Bhansali,Romance Film|Musical|Drama|Bollywood|World cinema|Musical Drama,,/en/devdas_2002,2002-05-23 +Devil's Playground,Lucy Walker,Documentary film,,/en/devils_playground_2003,2003-02-04 +Devil's Pond,Joel Viertel,Thriller|Suspense,,/en/the_devils_pond,2003-10-21 +Dhadkan,Dharmesh Darshan,Musical|Romance Film|Melodrama|Bollywood|World cinema|Drama|Musical Drama,,/en/dhadkan,2000-08-11 +Dhool,Dharani,Musical|Family|Action Film|Tamil cinema|World cinema|Drama|Musical Drama,,/en/dhool,2003-01-10 +Dhoom 2,Sanjay Gadhvi,Crime Fiction|Action/Adventure|Musical|World cinema|Buddy cop film|Action Film|Thriller|Action Thriller|Musical comedy|Comedy,,/en/dhoom_2,2006-11-23 +Dhyaas Parva,Amol Palekar,Biographical film|Drama|Marathi cinema,,/en/dhyaas_parva, +Diary of a Housewife,Vinod Sukumaran,Short Film|Malayalam Cinema|World cinema,,/en/diary_of_a_housewife, +Diary of a Mad Black Woman,Darren Grant,Comedy-drama|Romance Film|Romantic comedy|Comedy|Drama,,/en/diary_of_a_mad_black_woman,2005-02-25 +Dickie Roberts: Former Child Star,Sam Weisman,Parody|Slapstick|Comedy,,/en/dickie_roberts_former_child_star,2003-09-03 +Die Bad,Ryoo Seung-wan,Crime Fiction|Drama,,/en/die_bad,2000-07-15 +Die Mommie Die!,Mark Rucker,Comedy,,/en/die_mommie_die,2003-01-20 +God Is Great and I'm Not,Pascale Bailly,Romantic comedy|World cinema|Religious Film|Romance Film|Comedy of manners|Comedy|Drama,,/en/dieu_est_grand_je_suis_toute_petite,2001-09-26 +Digimon: The Movie,Mamoru Hosoda|Shigeyasu Yamauchi,Anime|Fantasy|Family|Animation|Adventure Film|Action Film|Thriller,,/en/digimon_the_movie,2000-03-17 +Digital Monster X-Evolution,Hiroyuki Kakudō,Computer Animation|Animation|Japanese Movies,,/en/digital_monster_x-evolution,2005-01-03 +Digna... hasta el último aliento,Felipe Cazals,Documentary film|Culture & Society|Law & Crime|Biographical film,,/en/digna_hasta_el_ultimo_aliento,2004-12-17 +Dil Chahta Hai,Farhan Akhtar,Bollywood|Musical|Romance Film|World cinema|Comedy-drama|Musical Drama|Musical comedy|Comedy|Drama,,/en/dil_chahta_hai,2001-07-24 +Dil Diya Hai,Aditya Datt|Aditya Datt,Romance Film|Bollywood|World cinema|Drama,,/en/dil_diya_hai,2006-09-08 +Dil Hai Tumhara,Kundan Shah,Family|Romance Film|Musical|Bollywood|World cinema|Drama|Musical Drama,,/en/dil_hai_tumhaara,2002-09-06 +Dil Ka Rishta,Naresh Malhotra,Romance Film|Bollywood,,/en/dil_ka_rishta,2003-01-17 +Dil Ne Jise Apna Kahaa,Atul Agnihotri,Musical|World cinema|Romance Film|Musical Drama|Musical comedy|Comedy|Bollywood|Drama,,/en/dil_ne_jise_apna_kahaa,2004-09-10 +Dinosaur,Eric Leighton|Ralph Zondag,Computer Animation|Animation|Fantasy|Costume drama|Family|Adventure Film|Thriller,,/en/dinosaur_2000,2000-05-13 +Dirty Dancing: Havana Nights,Guy Ferland,Musical|Coming of age|Indie film|Teen film|Romance Film|Historical period drama|Dance film|Musical Drama|Drama,,/en/dirty_dancing_2004,2004-02-27 +Dirty Deeds,David Caesar,Historical period drama|Black comedy|Crime Thriller|Thriller|Crime Fiction|World cinema|Gangster Film|Drama,,/en/dirty_deeds,2002-07-18 +Dirty Deeds,David Kendall,Comedy,,/en/dirty_deeds_2005,2005-08-26 +Dirty Love,John Mallory Asher,Indie film|Sex comedy|Romantic comedy|Romance Film|Comedy,,/en/dirty_love,2005-09-23 +Disappearing Acts,Gina Prince-Bythewood,Romance Film|Television film|Film adaptation|Comedy-drama|Drama,,/en/disappearing_acts,2000-12-09 +Dishyum,Sasi,Romance Film|Action Film|Drama|Tamil cinema|World cinema,,/en/dishyum,2006-02-02 +Distant Lights,Hans-Christian Schmid,Drama,,/en/distant_lights,2003-02-11 +District 13,Pierre Morel,Martial Arts Film|Thriller|Action Film|Science Fiction|Crime Fiction,,/en/district_b13,2004-11-10 +Disturbia,D. J. Caruso,Thriller|Mystery|Teen film|Drama,,/en/disturbia,2007-04-04 +Ditto,Jeong-kwon Kim,Romance Film|Science Fiction|East Asian cinema|World cinema,,/en/ditto_2000,2000-05-27 +Divine Intervention,Elia Suleiman,Black comedy|World cinema|Romance Film|Comedy|Drama,,/en/divine_intervention_2002,2002-05-19 +Divine Secrets of the Ya-Ya Sisterhood,Callie Khouri,Film adaptation|Comedy-drama|Historical period drama|Family Drama|Ensemble Film|Comedy|Drama,,/en/divine_secrets_of_the_ya_ya_sisterhood,2002-06-03 +DOA: Dead or Alive,Corey Yuen,Action Film|Adventure Film,,/en/doa_dead_or_alive,2006-09-07 +DodgeBall: A True Underdog Story,Rawson Marshall Thurber,Sports|Comedy,,/en/dodgeball_a_true_underdog_story,2004-06-18 +Dog Soldiers,Neil Marshall,Horror|Action Film|Creature Film,,/en/dog_soldiers,2002-03-22 +Dogtown and Z-Boys,Stacy Peralta,Documentary film|Sports|Extreme Sports|Biographical film,,/en/dogtown_and_z-boys,2001-01-19 +Dogville,Lars von Trier,Drama,,/en/dogville,2003-05-19 +The Doll Master,Jeong Yong-Gi,Horror|Thriller|East Asian cinema|World cinema,,/en/doll_master,2004-07-30 +Dolls,Takeshi Kitano,Romance Film|Drama,,/en/dolls,2002-09-05 +Dominion: Prequel to the Exorcist,Paul Schrader,Horror|Supernatural|Psychological thriller|Cult film,,/en/dominion_prequel_to_the_exorcist,2005-05-20 +Domino,Tony Scott,Thriller|Action Film|Biographical film|Crime Fiction|Comedy|Adventure Film|Drama,,/en/domino_2005,2005-09-25 +Don: The Chase Begins Again,Farhan Akhtar,Crime Fiction|Thriller|Mystery|Action Film|Romance Film|Comedy|Bollywood|World cinema,,/en/don_2006,2006-10-20 +Don's Plum,R.D. Robb,Black-and-white|Ensemble Film|Comedy|Drama,,/en/dons_plum,2001-02-10 +Don't Come Knocking,Wim Wenders,Western|Indie film|Musical|Drama|Music|Musical Drama,,/en/dont_come_knocking,2005-05-19 +Don't Move,Sergio Castellitto,Romance Film|Drama,,/en/dont_move,2004-03-12 +Don't Say a Word,Gary Fleder,Thriller|Psychological thriller|Crime Fiction|Suspense,,/en/dont_say_a_word_2001,2001-09-24 +Donnie Darko,Richard Kelly,Science Fiction|Mystery|Drama,,/en/donnie_darko,2001-01-19 +Doomsday,Neil Marshall,Science Fiction|Action Film,,/en/doomsday_2008,2008-03-14 +Dopamine,Mark Decena,Comedy-drama|Romance Film|Indie film|Romantic comedy|Comedy|Drama,,/en/dopamine_2003,2003-01-23 +Dosti: Friends Forever,Suneel Darshan,Romance Film|Drama,,/en/dosti_friends_forever,2005-12-23 +Double Take,George Gallo,Crime Fiction|Action/Adventure|Action Film|Comedy,,/en/double_take,2001-01-12 +Double Teamed,Duwayne Dunham,Family|Biographical film|Family Drama|Children's/Family|Sports,,/en/double_teamed,2002-01-18 +Double Vision,Chen Kuo-Fu,Thriller|Mystery|Martial Arts Film|Action Film|Horror|Psychological thriller|Suspense|World cinema|Crime Thriller|Action/Adventure|Chinese Movies,,/en/double_vision_2002,2002-05-20 +Double Whammy,Tom DiCillo,Comedy-drama|Indie film|Action Film|Crime Fiction|Action/Adventure|Satire|Romantic comedy|Comedy|Drama,,/en/double_whammy,2001-01-20 +Down and Derby,Eric Hendershot,Family|Sports|Comedy,,/en/down_and_derby,2005-04-15 +Down in the Valley,David Jacobson,Indie film|Romance Film|Family Drama|Psychological thriller|Drama,,/en/down_in_the_valley,2005-05-13 +Down to Earth,Chris Weitz|Paul Weitz,Fantasy|Comedy,,/en/down_to_earth,2001-02-12 +Down with Love,Peyton Reed,Romantic comedy|Romance Film|Screwball comedy|Parody|Comedy,,/en/down_with_love,2003-05-09 +Downfall,Oliver Hirschbiegel,Biographical film|War film|Historical drama|Drama,,/en/downfall,2004-09-08 +Dr. Dolittle 2,Steve Carr,Family|Fantasy Comedy|Comedy|Romance Film,,/en/dr_dolittle_2,2001-06-19 +Dr. Dolittle 3,Rich Thorne,Family|Comedy,,/en/dr_dolittle_3,2006-04-25 +Dracula: Pages from a Virgin's Diary,Guy Maddin,Silent film|Indie film|Horror|Musical|Experimental film|Dance film|Horror comedy|Musical comedy|Comedy,,/en/dracula_pages_from_a_virgins_diary,2002-02-28 +Dragon Boys,Jerry Ciccoritti,Crime Drama|Ensemble Film|Drama,,/en/dragon_boys, +Dragon Tiger Gate,Wilson Yip,Martial Arts Film|Wuxia|Action/Adventure|Action Film|Thriller|Superhero movie|World cinema|Action Thriller|Chinese Movies,,/en/dragon_tiger_gate,2006-07-27 +Dragonfly,Tom Shadyac,Thriller|Mystery|Romance Film|Fantasy|Drama,,/en/dragonfly_2002,2002-02-18 +Dragonlance: Dragons of Autumn Twilight,Will Meugniot,Animation|Sword and sorcery|Fantasy|Adventure Film|Science Fiction,,/en/dragonlance_dragons_of_autumn_twilight,2008-01-15 +Drake & Josh Go Hollywood,Adam Weissman|Steve Hoefer,Family|Adventure Film|Comedy,,/en/drake_josh_go_hollywood,2006-01-06 +Drawing Restraint 9,Matthew Barney,Cult film|Fantasy|Surrealism|Avant-garde|Experimental film|Japanese Movies,,/en/drawing_restraint_9,2005-07-01 +Dreamcatcher,Lawrence Kasdan,Science Fiction|Horror|Thriller|Drama,,/en/dreamcatcher,2003-03-06 +Dreamer,John Gatins,Family|Sports|Drama,,/en/dreamer_2005,2005-09-10 +Dreaming of Julia,Juan Gerard,Indie film|Action Film|Crime Fiction|Action/Adventure|Comedy|Drama,,/en/dreaming_of_julia,2003-10-24 +Driving Miss Wealthy,James Yuen,Romance Film|World cinema|Romantic comedy|Chinese Movies|Comedy|Drama,,/en/driving_miss_wealthy_juet_sai_ho_bun,2004-05-03 +Drowning Mona,Nick Gomez,Black comedy|Mystery|Whodunit|Crime Comedy|Crime Fiction|Comedy,,/en/drowning_mona,2000-01-02 +Drugstore Girl,Katsuhide Motoki,Japanese Movies|Comedy,,/en/drugstore_girl, +Druids,Jacques Dorfmann,Adventure Film|War film|Action/Adventure|World cinema|Epic film|Historical Epic|Historical fiction|Biographical film|Drama,,/en/druids,2001-08-31 +Duck! The Carbine High Massacre,William Hellfire|Joey Smack,Satire|Black comedy|Parody|Indie film|Teen film|Comedy,,/en/duck_the_carbine_high_massacre,2000-04-20 +"Dude, Where's My Car?",Danny Leiner,Mystery|Comedy|Science Fiction,,/en/dude_wheres_my_car,2000-12-10 +"Dude, Where's the Party?",Benny Mathews,Indie film|Comedy of manners|Comedy,,/en/dude_wheres_the_party, +Duets,Bruce Paltrow,Musical|Musical Drama|Musical comedy|Comedy|Drama,,/en/duets,2000-09-09 +Dumb & Dumberer: When Harry Met Lloyd,Troy Miller,Buddy film|Teen film|Screwball comedy|Slapstick|Comedy,,/en/dumb_dumberer,2003-06-13 +Dumm Dumm Dumm,Azhagam Perumal,Romance Film|Comedy|Drama,,/en/dumm_dumm_dumm,2001-04-13 +Dummy,Greg Pritikin,Romantic comedy|Indie film|Romance Film|Comedy|Comedy-drama|Drama,,/en/dummy_2003,2003-09-12 +Dumplings,Fruit Chan,Horror|Drama,,/en/dumplings,2004-08-04 +Duplex,Danny DeVito,Black comedy|Comedy,,/en/duplex,2003-09-26 +Dus,Anubhav Sinha,Thriller|Action Film|Crime Fiction|Bollywood,,/en/dus,2005-07-08 +Dust,Milcho Manchevski,Western|Drama,,/en/dust_2001,2001-08-29 +E,S. P. Jananathan,Action Film|Thriller|Drama,,/wikipedia/en_title/E_$0028film$0029,2006-10-21 +Earthlings,Shaun Monson,Documentary film|Nature|Culture & Society|Animal,,/en/earthlings, +Eastern Promises,David Cronenberg,Thriller|Crime Fiction|Mystery|Drama,,/en/eastern_promises,2007-09-08 +Eating Out,Q. Allan Brocka,Romantic comedy|LGBT|Gay Themed|Romance Film|Gay|Gay Interest|Comedy,,/en/eating_out, +Echoes of Innocence,Nathan Todd Sims,Thriller|Romance Film|Christian film|Mystery|Supernatural|Drama,,/en/echoes_of_innocence,2005-09-09 +Eddie's Million Dollar Cook-Off,Paul Hoen,Teen film,,/en/eddies_million_dollar_cook_off,2003-07-18 +Edison,David J. Burke,Thriller|Crime Fiction|Mystery|Crime Thriller|Drama,,/en/edison_2006,2005-03-05 +Edmond,Stuart Gordon,Thriller|Psychological thriller|Indie film|Crime Fiction|Drama,,/en/edmond_2006,2005-09-02 +Eight Below,Frank Marshall,Adventure Film|Family|Drama,,/en/eight_below,2006-02-17 +Eight Crazy Nights,Seth Kearsley,Christmas movie|Musical|Animation|Musical comedy|Comedy,,/en/eight_crazy_nights,2002-11-27 +Eight Legged Freaks,Ellory Elkayem,Horror|Natural horror film|Science Fiction|Monster|B movie|Comedy|Action Film|Thriller|Horror comedy,,/en/eight_legged_freaks,2002-05-30 +Ek Ajnabee,Apoorva Lakhia,Action Film|Thriller|Crime Fiction|Action Thriller|Drama|Bollywood,,/en/ek_ajnabee,2005-12-09 +Eklavya: The Royal Guard,Vidhu Vinod Chopra,Historical drama|Romance Film|Musical|Epic film|Thriller|Bollywood|World cinema,,/en/eklavya_the_royal_guard,2007-02-16 +Lost Embrace,Daniel Burman,Indie film|Comedy|Comedy-drama|Drama,,/en/el_abrazo_partido,2004-02-09 +El Aura,Fabián Bielinsky,Thriller|Crime Fiction|Drama,,/en/el_aura,2005-09-15 +The Crime of Father Amaro,Carlos Carrera,Romance Film|Drama,,/en/el_crimen_del_padre_amaro,2002-08-16 +El juego de Arcibel,Alberto Lecchi,Indie film|Political drama|World cinema|Drama,,/en/el_juego_de_arcibel,2003-05-29 +El Muerto,Brian Cox,Indie film|Supernatural|Thriller|Superhero movie|Action/Adventure,,/wikipedia/en_title/El_Muerto_$0028film$0029, +The Archimedes Principle,Gerardo Herrero,Drama,,/en/el_principio_de_arquimedes,2004-03-26 +The Hairy Tooth Fairy,Juan Pablo Buscarini,Fantasy|Animation|Comedy|Family,,/en/el_raton_perez,2006-07-13 +Election,Johnnie To,Crime Fiction|Thriller|Drama,,/en/election_2005,2005-05-14 +Election 2,Johnnie To,Thriller|Crime Fiction|Drama,,/en/election_2,2006-04-04 +Daft Punk's Electroma,Thomas Bangalter|Guy-Manuel de Homem-Christo,Indie film|Silent film|Science Fiction|World cinema|Avant-garde|Experimental film|Road movie|Drama,,/en/daft_punks_electroma,2006-05-21 +Elektra,Rob Bowman,Action Film|Action/Adventure|Martial Arts Film|Superhero movie|Thriller|Fantasy|Crime Fiction,,/en/elektra_2005,2005-01-08 +Elephant,Gus Van Sant,Teen film|Indie film|Crime Fiction|Thriller|Drama,,/en/elephant_2003,2003-05-18 +Elephants Dream,Bassam Kurdali,Short Film|Computer Animation,,/en/elephants_dream,2006-03-24 +Elf,Jon Favreau,Family|Romance Film|Comedy|Fantasy,,/en/elf_2003,2003-10-09 +Elizabethtown,Cameron Crowe,Romantic comedy|Romance Film|Family Drama|Comedy-drama|Comedy|Drama,,/en/elizabethtown_2005,2005-09-04 +Elvira's Haunted Hills,Sam Irvin,Parody|Horror|Cult film|Haunted House Film|Horror comedy|Comedy,,/en/elviras_haunted_hills,2001-06-23 +Elvis Has Left the Building,Joel Zwick,Action Film|Action/Adventure|Road movie|Crime Comedy|Crime Fiction|Comedy,,/en/elvis_has_left_the_building_2004, +Empire,Franc. Reyes,Thriller|Crime Fiction|Indie film|Action|Drama|Action Thriller,,/en/empire_2002, +Employee of the Month,Mitch Rouse,Black comedy|Indie film|Heist film|Comedy,,/en/employee_of_the_month_2004,2004-01-17 +Employee of the Month,Greg Coolidge,Romantic comedy|Romance Film|Comedy,,/en/employee_of_the_month,2006-10-06 +Empress Chung,Nelson Shin,Animation|Children's/Family|East Asian cinema|World cinema,,/en/empress_chung,2005-08-12 +EMR,Danny McCullough|James Erskine,Thriller|Mystery|Psychological thriller,,/en/emr,2004-03-08 +En Route,Jan Krüger,Drama,,/en/en_route,2004-06-17 +Enakku 20 Unakku 18,Jyothi Krishna,Musical|Romance Film|Drama|Musical Drama,,/en/enakku_20_unakku_18,2003-12-19 +Enchanted,Kevin Lima,Musical|Fantasy|Romance Film|Family|Comedy|Animation|Adventure Film|Drama|Musical comedy|Musical Drama,,/en/enchanted_2007,2007-10-20 +End of the Spear,Jim Hanon,Docudrama|Christian film|Indie film|Adventure Film|Historical period drama|Action/Adventure|Inspirational Drama|Drama,,/en/end_of_the_spear, +Enduring Love,Roger Michell,Thriller|Mystery|Film adaptation|Indie film|Romance Film|Psychological thriller|Drama,,/en/enduring_love,2004-09-04 +Enemy at the Gates,Jean-Jacques Annaud,War film|Romance Film|Action Film|Historical fiction|Thriller|Drama,,/en/enemy_at_the_gates,2001-02-07 +Enigma,Michael Apted,Thriller|War film|Spy film|Romance Film|Mystery|Drama,,/en/enigma_2001,2001-01-22 +Enigma: The Best of Jeff Hardy,Craig Leathers,Sports|Action Film,,/en/enigma_the_best_of_jeff_hardy,2005-10-04 +Enron: The Smartest Guys in the Room,Alex Gibney,Documentary film|Indie film|Crime Fiction|Business|Culture & Society|Finance & Investing|Law & Crime|Biographical film,,/en/enron_the_smartest_guys_in_the_room,2005-04-22 +Envy,Barry Levinson,Black comedy|Cult film|Comedy,,/en/envy_2004,2004-04-30 +Equilibrium,Kurt Wimmer,Science Fiction|Dystopia|Future noir|Thriller|Action Film|Drama,,/en/equilibrium_2002,2002-12-06 +Eragon,Stefen Fangmeier,Family|Adventure Film|Fantasy|Sword and sorcery|Action Film|Drama,,/en/eragon_2006,2006-12-13 +Erin Brockovich,Steven Soderbergh,Biographical film|Legal drama|Trial drama|Romance Film|Docudrama|Comedy-drama|Feminist Film|Drama|Drama film,,/en/erin_brockovich_2000,2000-03-14 +Eros,Michelangelo Antonioni|Steven Soderbergh|Wong Kar-wai,Romance Film|Erotica|Drama,,/en/eros_2004,2004-09-10 +Escaflowne,Kazuki Akane,Adventure Film|Science Fiction|Fantasy|Animation|Romance Film|Action Film|Thriller|Drama,,/en/escaflowne,2000-06-24 +A Few Days Later,Niki Karimi,Drama,,/en/escape_2006, +Eternal Sunshine of the Spotless Mind,Michel Gondry,Romance Film|Science Fiction|Drama,,/en/eternal_sunshine_of_the_spotless_mind,2004-03-19 +Eulogy,Michael Clancy,LGBT|Black comedy|Indie film|Comedy,,/en/eulogy_2004,2004-10-15 +EuroTrip,Jeff Schaffer|Alec Berg|David Mandel,Sex comedy|Adventure Film|Teen film|Comedy,,/en/eurotrip,2004-02-20 +Evan Almighty,Tom Shadyac,Religious Film|Parody|Family|Fantasy|Fantasy Comedy|Heavenly Comedy|Comedy,,/en/evan_almighty,2007-06-21 +Everlasting Regret,Stanley Kwan,Romance Film|Chinese Movies|Drama,,/en/everlasting_regret,2005-09-08 +Everybody's Famous!,Dominique Deruddere,World cinema|Comedy|Drama,,/en/everybody_famous,2000-04-12 +Everyman's Feast,Fritz Lehner,Drama,,/en/everymans_feast,2002-01-25 +Everyone's Hero,Christopher Reeve|Daniel St. Pierre|Colin Brady,Computer Animation|Family|Animation|Adventure Film|Sports|Children's/Family|Family-Oriented Adventure,,/en/everyones_hero,2006-09-15 +Everything,,Music video,,/en/everything_2005,2005-11-22 +Everything Goes,Andrew Kotatko,Short Film|Drama,,/en/everything_goes,2004-06-14 +Everything Is Illuminated,Liev Schreiber,Adventure Film|Film adaptation|Family Drama|Comedy-drama|Road movie|Comedy|Drama,,/en/everything_is_illuminated_2005,2005-09-16 +Evilenko,David Grieco,Thriller|Horror|Crime Fiction,,/en/evilenko,2004-04-16 +Evolution,Ivan Reitman,Science Fiction|Parody|Action Film|Action/Adventure|Comedy,,/en/evolution_2001,2001-06-08 +Exit Wounds,Andrzej Bartkowiak,Action Film|Mystery|Martial Arts Film|Action/Adventure|Thriller|Crime Fiction,,/en/exit_wounds,2001-03-16 +Exorcist: The Beginning,Renny Harlin,Horror|Supernatural|Psychological thriller|Cult film|Historical period drama,,/en/exorcist_the_beginning,2004-08-18 +Extreme Days,Eric Hannah,Comedy-drama|Action Film|Christian film|Action/Adventure|Road movie|Teen film|Sports,,/en/extreme_days,2001-09-28 +Extreme Ops,Christian Duguay,Action Film|Thriller|Action/Adventure|Sports|Adventure Film|Action Thriller|Chase Movie,,/en/extreme_ops,2002-11-27 +Face,Yoo Sang-gon,Horror|Thriller|Drama|East Asian cinema|World cinema,,/en/face_2004,2004-06-11 +Facing Windows,Ferzan Özpetek,Romance Film|Drama,,/en/la_finestra_di_fronte,2003-02-28 +Factory Girl,George Hickenlooper,Biographical film|Indie film|Historical period drama|Drama,,/en/factory_girl,2006-12-29 +Fahrenheit 9/11,Michael Moore,Indie film|Documentary film|War film|Culture & Society|Crime Fiction|Drama,,/en/fahrenheit_9_11,2004-05-17 +Fahrenheit 9/11½,Michael Moore,Documentary film,,/en/fahrenheit_9_111_2, +Fail Safe,Stephen Frears,Thriller|Science Fiction|Black-and-white|Film adaptation|Suspense|Psychological thriller|Political drama|Drama,,/en/fail_safe_2000,2000-04-09 +Failan,Song Hae-sung,Romance Film|World cinema|Drama,,/en/failan,2001-04-28 +Failure to Launch,Tom Dey,Romantic comedy|Romance Film|Comedy,,/en/failure_to_launch,2006-03-10 +Fake,Thanakorn Pongsuwan,Romance Film,,/en/fake_2003,2003-04-28 +Falcons,Friðrik Þór Friðriksson,Drama,,/en/falcons_2002, +Fallen,Mikael Salomon|Kevin Kerslake,Science Fiction|Fantasy|Action/Adventure|Drama,,/en/fallen_2006, +Family,Rajkumar Santoshi,Musical|Crime Fiction|Action Film|Romance Film|Thriller|Drama|Musical Drama,,/en/family_-_ties_of_blood,2006-01-11 +Familywala,Neeraj Vora,Comedy|Drama|Bollywood|World cinema,,/en/familywala, +Fan Chan,Vitcha Gojiew|Witthaya Thongyooyong|Komgrit Triwimol|Nithiwat Tharathorn|Songyos Sugmakanan|Adisorn Tresirikasem,Comedy|Romance Film,,/en/fan_chan,2003-10-03 +Fanaa,Kunal Kohli,Thriller|Romance Film|Musical|Bollywood|Musical Drama|Drama,,/en/fanaa,2006-05-26 +Fantastic Four,Tim Story,Fantasy|Science Fiction|Adventure Film|Action Film,,/en/fantastic_four_2005,2005-06-29 +Fantastic Four: Rise of the Silver Surfer,Tim Story,Fantasy|Science Fiction|Action Film|Thriller,,/en/fantastic_four_and_the_silver_surfer,2007-06-12 +Fantastic Mr. Fox,Wes Anderson,Animation|Adventure Film|Comedy|Family,,/en/fantastic_mr_fox_2007,2009-10-14 +FAQ: Frequently Asked Questions,Carlos Atanes,Science Fiction,,/en/faq_frequently_asked_questions,2004-10-12 +Far Cry,Uwe Boll,Action Film|Science Fiction|Thriller|Adventure Film,,/en/far_cry_2008,2008-10-02 +Far from Heaven,Todd Haynes,Romance Film|Melodrama|Drama,,/en/far_from_heaven,2002-09-01 +Farce of the Penguins,Bob Saget,Parody|Mockumentary|Adventure Comedy|Comedy,,/en/farce_of_the_penguins, +Eagles: Farewell 1 Tour-Live from Melbourne,Carol Dodds,Music video,,/en/eagles_farewell_1_tour_live_from_melbourne,2005-06-14 +Fat Albert,Joel Zwick,Family|Fantasy|Romance Film|Comedy,,/en/fat_albert,2004-12-12 +Fat Pizza,Paul Fenech,Comedy,,/en/fat_pizza_the_movie, +Fatwa,John Carter,Thriller|Political thriller|Drama,,/en/fatwa_2006,2006-03-24 +Faust: Love of the Damned,Brian Yuzna,Horror|Supernatural,,/en/faust_love_of_the_damned,2000-10-12 +Fay Grim,Hal Hartley,Thriller|Action Film|Political thriller|Indie film|Comedy Thriller|Comedy|Crime Fiction|Drama,,/en/fay_grim,2006-09-11 +Fear and Trembling,Alain Corneau,World cinema|Japanese Movies|Comedy|Drama,,/en/fear_and_trembling_2003, +Fear of the Dark,Glen Baisley,Horror|Mystery|Psychological thriller|Thriller|Drama,,/en/fear_of_the_dark_2006,2001-10-06 +Fear X,Nicolas Winding Refn,Psychological thriller|Thriller,,/en/fear_x,2003-01-19 +FeardotCom,William Malone,Horror|Crime Fiction|Thriller|Mystery,,/en/feardotcom,2002-08-09 +Fearless,Ronny Yu,Biographical film|Action Film|Sports|Drama,,/en/fearless,2006-01-26 +Feast,John Gulager,Horror|Cult film|Monster movie|Horror comedy|Comedy,,/en/feast,2006-09-22 +Femme Fatale,Brian De Palma,Thriller|Mystery|Crime Fiction|Erotic thriller,,/en/femme_fatale_2002,2002-04-30 +Festival,Annie Griffin,Black comedy|Parody|Comedy,,/en/festival_2005,2005-07-15 +Festival Express,Bob Smeaton,Documentary film|Concert film|History|Musical|Indie film|Rockumentary|Music,,/en/festival_express, +Festival in Cannes,Henry Jaglom,Mockumentary|Comedy-drama|Comedy of manners|Ensemble Film|Comedy|Drama,,/en/festival_in_cannes,2001-11-03 +Fever Pitch,Bobby Farrelly|Peter Farrelly,Romance Film|Sports|Comedy|Drama,,/en/fever_pitch_2005,2005-04-06 +Fida,Ken Ghosh,Romance Film|Adventure Film|Thriller|Drama,,/en/fida,2004-08-20 +Fido,Andrew Currie,Horror|Parody|Romance Film|Horror comedy|Comedy|Drama,,/en/fido_2006,2006-09-07 +Fighter in the Wind,Yang Yun-ho|Yang Yun-ho,Action/Adventure|Action Film|War film|Biographical film|Drama,,/en/fighter_in_the_wind,2004-08-06 +Filantropica,Nae Caranfil,Comedy|Black comedy|Drama,,/en/filantropica,2002-03-15 +Film Geek,James Westby,Indie film|Workplace Comedy|Comedy,,/en/film_geek,2006-02-10 +Final Destination,James Wong,Slasher|Teen film|Supernatural|Horror|Cult film|Thriller,,/en/final_destination,2000-03-16 +Final Destination 3,James Wong,Slasher|Teen film|Horror|Thriller,,/en/final_destination_3,2006-02-09 +Final Destination 2,David R. Ellis,Slasher|Teen film|Supernatural|Horror|Cult film|Thriller,,/en/final_destination_2,2003-01-30 +Final Fantasy VII: Advent Children,Tetsuya Nomura|Takeshi Nozue,Anime|Science Fiction|Animation|Action Film|Thriller,,/en/final_fantasy_vii_advent_children,2005-08-31 +Final Fantasy: The Spirits Within,Hironobu Sakaguchi|Motonori Sakakibara,Science Fiction|Anime|Animation|Fantasy|Action Film|Adventure Film,,/en/final_fantasy_the_spirits_within,2001-07-02 +Final Stab,David DeCoteau,Horror|Slasher|Teen film,,/en/final_stab, +Find Me Guilty,Sidney Lumet,Crime Fiction|Trial drama|Docudrama|Comedy-drama|Courtroom Comedy|Crime Comedy|Gangster Film|Comedy|Drama,,/en/find_me_guilty,2006-02-16 +Finder's Fee,Jeff Probst,Thriller|Psychological thriller|Indie film|Suspense|Drama,,/en/finders_fee,2001-06-16 +Finding Nemo,Andrew Stanton|Lee Unkrich,Animation|Adventure Film|Comedy|Family,,/en/finding_nemo,2003-05-30 +Finding Neverland,Marc Forster,Costume drama|Historical period drama|Family|Biographical film|Drama,,/en/finding_neverland,2004-09-04 +Fingerprints,Harry Basil,Thriller|Horror|Mystery,,/en/fingerprints, +Firewall,Richard Loncraine,Thriller|Action Film|Psychological thriller|Action/Adventure|Crime Thriller|Action Thriller,,/en/firewall_2006,2006-02-02 +First Daughter,Forest Whitaker,Romantic comedy|Teen film|Romance Film|Comedy|Drama,,/en/first_daughter,2004-09-24 +First Descent,Kemp Curly|Kevin Harrison,Documentary film|Sports|Extreme Sports|Biographical film,,/en/first_descent,2005-12-02 +Fiza,Khalid Mohamed,Romance Film|Drama,,/en/fiza,2000-09-08 +Flags of Our Fathers,Clint Eastwood,War film|History|Action Film|Film adaptation|Historical drama|Drama,,/en/flags_of_our_fathers_2006,2006-10-20 +Flight from Death,Patrick Shen,Documentary film,,/en/flight_from_death,2006-09-06 +Flight of the Phoenix,John Moore,Airplanes and airports|Disaster Film|Action Film|Adventure Film|Action/Adventure|Film adaptation|Drama,,/en/flight_of_the_phoenix,2004-12-17 +Flightplan,Robert Schwentke,Thriller|Mystery|Drama,,/en/flightplan,2005-09-22 +Flock of Dodos,Randy Olson,Documentary film|History,,/en/flock_of_dodos, +Fluffy the English Vampire Slayer,Henry Burrows,Horror comedy|Short Film|Fan film|Parody,,/en/fluffy_the_english_vampire_slayer, +Flushed Away,David Bowers|Sam Fell,Animation|Family|Adventure Film|Children's/Family|Family-Oriented Adventure|Comedy,,/en/flushed_away,2006-10-22 +Fool & Final,Ahmed Khan,Comedy|Action Film|Romance Film|Bollywood|World cinema,,/en/fool_and_final,2007-06-01 +Foolproof,William Phillips,Action Film|Thriller|Crime Thriller|Action Thriller|Caper story|Crime Fiction|Comedy,,/en/foolproof,2003-10-03 +For the Birds,Ralph Eggleston,Short Film|Animation|Comedy|Family,,/en/for_the_birds,2000-06-05 +For Your Consideration,Christopher Guest,Mockumentary|Parody|Comedy,,/en/for_your_consideration_2006,2006-11-17 +Forest of the Gods,Algimantas Puipa,War film|Drama,,/en/diev_mi_kas,2005-09-23 +Formula 17,Chen Yin-jung,Romantic comedy|Romance Film|Comedy,,/en/formula_17,2004-04-02 +Forty Shades of Blue,Ira Sachs,Indie film|Romance Film|Drama,,/en/forty_shades_of_blue, +Four Brothers,John Singleton,Action Film|Crime Fiction|Thriller|Action/Adventure|Family Drama|Crime Drama|Drama,,/en/four_brothers_2005,2005-08-12 +Frailty,Bill Paxton,Psychological thriller|Thriller|Crime Fiction|Drama,,/en/frailty,2001-11-17 +Frankenfish,Mark A.Z. Dippé,Action Film|Horror|Natural horror film|Monster|Science Fiction,,/en/frankenfish,2004-10-09 +Franklin and the Turtle Lake Treasure,Dominique Monféry,Family|Animation,,/en/franklin_and_grannys_secret,2006-12-20 +Franklin and the Green Knight,John van Bruggen,Family|Animation,,/en/franklin_and_the_green_knight,2000-10-17 +Franklin's Magic Christmas,John van Bruggen,Family|Animation,,/en/franklins_magic_christmas,2001-11-06 +Freaky Friday,Mark Waters,Family|Fantasy|Comedy,,/en/freaky_friday_2003,2003-08-04 +Freddy vs. Jason,Ronny Yu,Horror|Thriller|Slasher|Action Film|Crime Fiction,,/en/freddy_vs_jason,2003-08-13 +Free Jimmy,Christopher Nielsen,Anime|Animation|Black comedy|Satire|Stoner film|Comedy,,/en/free_jimmy,2006-04-21 +Free Zone,Amos Gitai,Comedy|Drama,,/en/free_zone,2005-05-19 +Freedomland,Joe Roth,Mystery|Thriller|Crime Fiction|Film adaptation|Crime Thriller|Crime Drama|Drama,,/en/freedomland,2006-02-17 +Mr. Bean's Holiday,Steve Bendelack,Family|Comedy|Road movie,,/en/french_bean,2007-03-22 +Frequency,Gregory Hoblit,Thriller|Time travel|Science Fiction|Suspense|Fantasy|Crime Fiction|Family Drama|Drama,,/en/frequency_2000,2000-04-28 +Frida,Julie Taymor,Biographical film|Romance Film|Political drama|Drama,,/en/frida,2002-08-29 +Friday After Next,Marcus Raboy,Buddy film|Comedy,,/en/friday_after_next,2002-11-22 +Friday Night Lights,Peter Berg,Action Film|Sports|Drama,,/en/friday_night_lights,2004-10-06 +Friends,Siddique,Romance Film|Comedy|Drama|Tamil cinema|World cinema,,/en/friends_2001,2001-01-14 +Friends with Money,Nicole Holofcener,Romance Film|Indie film|Comedy-drama|Comedy of manners|Ensemble Film|Comedy|Drama,,/en/friends_with_money,2006-04-07 +FRO - The Movie,Brad Gashler|Michael J. Brooks,Comedy-drama,,/en/fro_the_movie, +From Hell,Allen Hughes|Albert Hughes,Thriller|Mystery|Biographical film|Crime Fiction|Slasher|Film adaptation|Horror|Drama,,/en/from_hell_2001,2001-09-08 +From Janet to Damita Jo: The Videos,Jonathan Dayton|Mark Romanek|Paul Hunter,Music video,,/en/from_janet_to_damita_jo_the_videos,2004-09-07 +From Justin to Kelly,Robert Iscove,Musical|Romantic comedy|Teen film|Romance Film|Beach Film|Musical comedy|Comedy,,/en/from_justin_to_kelly,2003-06-20 +Frostbite,Jonathan Schwartz,Sports|Comedy,,/en/frostbite_2005, +FUBAR,Michael Dowse,Mockumentary|Indie film|Buddy film|Comedy|Drama,,/en/fubar_2002,2002-01-01 +Fuck,Steve Anderson,Documentary film|Indie film|Political cinema,,/en/fuck_2005,2005-11-07 +Fuckland,José Luis Márques,Indie film|Dogme 95|Comedy-drama|Satire|Comedy of manners|Comedy|Drama,,/en/fuckland,2000-09-21 +Full-Court Miracle,Stuart Gillard,Family|Drama,,/en/full_court_miracle,2003-11-21 +Full Disclosure,John Bradshaw,Thriller|Action/Adventure|Action Film|Political thriller,,/en/full_disclosure_2001,2001-05-15 +Full Frontal,Steven Soderbergh,Romantic comedy|Indie film|Romance Film|Comedy-drama|Ensemble Film|Comedy|Drama,,/en/full_frontal,2002-08-02 +Fullmetal Alchemist the Movie: Conqueror of Shamballa,Seiji Mizushima,Anime|Fantasy|Action Film|Animation|Adventure Film|Drama,,/wikipedia/ja/$5287$5834$7248_$92FC$306E$932C$91D1$8853$5E2B_$30B7$30E3$30F3$30D0$30E9$3092$5F81$304F$8005,2005-07-23 +Fulltime Killer,Johnnie To|Wai Ka-fai,Action Film|Thriller|Crime Fiction|Martial Arts Film|Action Thriller|Drama,,/en/fulltime_killer,2001-08-03 +Fun with Dick and Jane,Dean Parisot,Crime Fiction|Comedy,,/en/fun_with_dick_and_jane_2005,2005-12-21 +Funny Ha Ha,Andrew Bujalski,Indie film|Romantic comedy|Romance Film|Mumblecore|Comedy-drama|Comedy of manners|Comedy,,/en/funny_ha_ha, +G-Sale,Randy Nargi,Mockumentary|Comedy of manners|Comedy,,/en/g-sale,2005-11-15 +Gabrielle,Patrice Chéreau,Romance Film|Drama,,/en/gabrielle_2006,2005-09-05 +Gagamboy,Erik Matti,Action Film|Science Fiction|Comedy|Fantasy,,/en/gagamboy,2004-01-01 +Gallipoli,Tolga Örnek,Documentary film|War film,,/en/gallipoli_2005,2005-03-18 +Game 6,Michael Hoffman,Indie film|Sports|Comedy-drama|Drama,,/en/game_6_2006,2006-03-10 +Maximum Surge,Jason Bourque,Science Fiction,,/en/game_over_2003,2003-06-23 +Expendable,Nathaniel Barker|Eliot Lash,Indie film|Short Film|War film,,/en/gamma_squad,2004-06-14 +Gangotri,Kovelamudi Raghavendra Rao,Romance Film|Drama|Tollywood|World cinema,,/en/gangotri_2003,2003-03-28 +Gangs of New York,Martin Scorsese,Crime Fiction|Historical drama|Drama,,/en/gangs_of_new_york,2002-12-09 +Gangster,Anurag Basu,Thriller|Romance Film|Mystery|World cinema|Crime Fiction|Bollywood|Drama,,/en/gangster_2006,2006-04-28 +Gangster No. 1,Paul McGuigan,Thriller|Crime Fiction|Historical period drama|Action Film|Crime Thriller|Action/Adventure|Gangster Film|Drama,,/en/gangster_no_1,2000-06-09 +Garam Masala,Priyadarshan,Comedy,,/en/garam_masala_2005,2005-11-02 +Garçon stupide,Lionel Baier,LGBT|World cinema|Gay|Gay Interest|Gay Themed|Coming of age|Comedy|Drama,,/en/garcon_stupide,2004-03-10 +Garden State,Zach Braff,Romantic comedy|Coming of age|Romance Film|Comedy-drama|Comedy|Drama,,/en/garden_state,2004-01-16 +Garfield: The Movie,Peter Hewitt,Slapstick|Animation|Family|Comedy,,/en/garfield_2004,2004-06-06 +Garfield: A Tail of Two Kitties,Tim Hill,Family|Animal Picture|Children's/Family|Family-Oriented Adventure|Comedy,,/en/garfield_a_tail_of_two_kitties,2006-06-15 +Gene-X,Martin Simpson,Thriller|Romance Film,,/en/gene-x, +George of the Jungle 2,David Grossman,Parody|Slapstick|Family|Jungle Film|Comedy,,/en/george_of_the_jungle_2,2003-08-18 +George Washington,David Gordon Green,Coming of age|Indie film|Drama,,/en/george_washington_2000,2000-09-29 +Georgia Rule,Garry Marshall,Comedy-drama|Romance Film|Melodrama|Comedy|Drama,,/en/georgia_rule,2007-05-10 +Gerry,Gus Van Sant,Indie film|Adventure Film|Mystery|Avant-garde|Experimental film|Buddy film|Drama,,/en/gerry,2003-02-14 +Get a Clue,Maggie Greenwald Mansfield,Mystery|Comedy,,/en/get_a_clue,2002-06-28 +Get Over It,Tommy O'Haver,Musical|Romantic comedy|Teen film|Romance Film|School story|Farce|Gay|Gay Interest|Gay Themed|Sex comedy|Musical comedy|Comedy,,/en/get_over_it,2001-03-09 +Get Rich or Die Tryin',Jim Sheridan,Coming of age|Crime Fiction|Hip hop film|Action Film|Biographical film|Musical Drama|Drama,,/en/get_rich_or_die_tryin,2005-11-09 +Get Up!,Kazuyuki Izutsu,Musical|Action Film|Japanese Movies|Musical Drama|Musical comedy|Comedy|Drama,,/en/get_up, +Getting My Brother Laid,Sven Taddicken,Romantic comedy|Romance Film|Comedy|Drama,,/en/getting_my_brother_laid, +Getting There: Sweet 16 and Licensed to Drive,Steve Purcell,Family|Teen film|Comedy,,/en/getting_there,2002-06-11 +Ghajini,A.R. Murugadoss,Thriller|Action Film|Mystery|Romance Film|Drama,,/en/ghajini,2005-09-29 +Gharshana,Gautham Menon,Mystery|Crime Fiction|Romance Film|Action Film|Tollywood|World cinema|Drama,,/en/gharshana,2004-07-30 +Ghilli,Dharani,Sports|Action Film|Romance Film|Comedy,,/en/ghilli,2004-04-17 +Ghost Game,Joe Knee,Horror comedy,,/en/ghost_game_2006,2005-09-01 +Ghost House,Kim Sang-jin,Horror|Horror comedy|Comedy|East Asian cinema|World cinema,,/en/ghost_house,2004-09-17 +Ghost in the Shell 2: Innocence,Mamoru Oshii,Science Fiction|Anime|Action Film|Animation|Thriller|Drama,,/en/ghost_in_the_shell_2_innocence,2004-03-06 +Ghost in the Shell: Solid State Society,Kenji Kamiyama,Anime|Science Fiction|Action Film|Animation|Thriller|Adventure Film|Fantasy,,/en/s_a_c_solid_state_society,2006-09-01 +Ghost Lake,Jay Woelfel,Horror|Zombie Film,,/en/ghost_lake,2005-05-17 +Ghost Rider,Mark Steven Johnson,Adventure Film|Thriller|Fantasy|Superhero movie|Horror|Drama,,/en/ghost_rider_2007,2007-01-15 +Ghost Ship,Steve Beck,Horror|Supernatural|Slasher,,/en/ghost_ship_2002,2002-10-22 +Ghost World,Terry Zwigoff,Indie film|Comedy-drama,,/en/ghost_world_2001,2001-06-16 +Ghosts of Mars,John Carpenter,Adventure Film|Science Fiction|Horror|Supernatural|Action Film|Thriller|Space Western,,/en/ghosts_of_mars,2001-08-24 +The International Playboys' First Movie: Ghouls Gone Wild!,Ted Geoghegan,Short Film|Musical,,/m/06ry42,2004-10-28 +Gie,Riri Riza,Biographical film|Political drama|Drama,,/en/gie,2005-07-14 +Gigantic (A Tale of Two Johns),A. J. Schnack,Indie film|Documentary film,,/en/gigantic_2003,2003-03-10 +Gigli,Martin Brest,Crime Thriller|Romance Film|Romantic comedy|Crime Fiction|Comedy,,/en/gigli,2003-07-27 +Ginger Snaps,John Fawcett,Teen film|Horror|Cult film,,/en/ginger_snaps,2000-09-10 +Ginger Snaps 2: Unleashed,Brett Sullivan,Thriller|Horror|Teen film|Creature Film|Feminist Film|Horror comedy|Comedy,,/en/ginger_snaps_2_unleashed,2004-01-30 +Girlfight,Karyn Kusama,Teen film|Sports|Coming-of-age story|Drama,,/en/girlfight,2000-01-22 +Gladiator,Ridley Scott,Historical drama|Epic film|Action Film|Adventure Film|Drama,,/en/gladiator_2000,2000-05-01 +Glastonbury,Julien Temple,Documentary film|Music|Concert film|Biographical film,,/en/glastonbury_2006,2006-04-14 +Glastonbury Anthems,Gavin Taylor|Declan Lowney|Janet Fraser-Crook|Phil Heyes,Documentary film|Music|Concert film,,/en/glastonbury_anthems, +Glitter,Vondie Curtis-Hall,Musical|Romance Film|Musical Drama|Drama,,/en/glitter_2001,2001-09-21 +Global Heresy,Sidney J. Furie,Comedy,,/en/global_heresy,2002-09-03 +Glory Road,James Gartner,Sports|Historical period drama|Docudrama|Drama,,/en/glory_road_2006,2006-01-13 +Go Figure,Francine McDougall,Family|Comedy|Drama,,/en/go_figure_2005,2005-06-10 +Goal!,Danny Cannon,Sports|Romance Film|Drama,,/en/goal__2005,2005-09-08 +Goal II: Living the Dream,Jaume Collet-Serra,Sports|Drama,,/en/goal_2_living_the_dream,2007-02-09 +God Grew Tired of Us,Christopher Dillon Quinn|Tommy Walker,Documentary film|Indie film|Historical fiction,,/en/god_grew_tired_of_us,2006-09-04 +God on My Side,Andrew Denton,Documentary film|Christian film,,/en/god_on_my_side,2006-11-02 +Godavari,Sekhar Kammula,Romance Film|Drama|Tollywood|World cinema,,/en/godavari,2006-05-19 +Varalaru,K. S. Ravikumar,Action Film|Musical|Romance Film|Tamil cinema|Drama|Musical Drama,,/en/godfather,2006-02-24 +Godsend,Nick Hamm,Thriller|Science Fiction|Horror|Psychological thriller|Sci-Fi Horror|Drama,,/en/godsend,2004-04-30 +Godzilla 3D to the MAX,Keith Melton|Yoshimitsu Banno,Horror|Action Film|Science Fiction|Short Film,,/en/godzilla_3d_to_the_max,2007-09-12 +Godzilla Against Mechagodzilla,Masaaki Tezuka,Monster|Science Fiction|Cult film|World cinema|Action Film|Creature Film|Japanese Movies,,/en/godzilla_against_mechagodzilla,2002-12-15 +Godzilla vs. Megaguirus,Masaaki Tezuka,Monster|World cinema|Science Fiction|Cult film|Action Film|Creature Film|Japanese Movies,,/en/godzilla_vs_megaguirus,2000-11-03 +Godzilla: Tokyo SOS,Masaaki Tezuka,Monster|Fantasy|World cinema|Action/Adventure|Science Fiction|Cult film|Japanese Movies,,/en/godzilla_tokyo_sos,2003-11-03 +"Godzilla, Mothra and King Ghidorah: Giant Monsters All-Out Attack",Shusuke Kaneko,Science Fiction|Action Film|Adventure Film|Drama,,/wikipedia/fr/Godzilla$002C_Mothra_and_King_Ghidorah$003A_Giant_Monsters_All-Out_Attack,2001-11-03 +Godzilla: Final Wars,Ryuhei Kitamura,Fantasy|Science Fiction|Monster movie,,/en/godzilla_final_wars,2004-11-29 +Going the Distance,Mark Griffiths,Comedy,,/en/going_the_distance,2004-08-20 +Going to the Mat,Stuart Gillard,Family|Sports|Drama,,/en/going_to_the_mat,2004-03-19 +Going Upriver,George Butler,Documentary film|War film|Political cinema,,/en/going_upriver,2004-09-14 +Golmaal: Fun Unlimited,Rohit Shetty,Musical|Musical comedy|Comedy,,/en/golmaal,2006-07-14 +Gone in 60 Seconds,Dominic Sena,Thriller|Action Film|Crime Fiction|Crime Thriller|Heist film|Action/Adventure,,/en/gone_in_sixty_seconds,2000-06-05 +"Good bye, Lenin!",Wolfgang Becker,Romance Film|Comedy|Drama|Tragicomedy,,/en/good_bye_lenin,2003-02-09 +Good Luck Chuck,Mark Helfrich,Romance Film|Fantasy|Comedy|Drama,,/en/good_luck_chuck,2007-06-13 +"Good Night, and Good Luck",George Clooney,Political drama|Historical drama|Docudrama|Biographical film|Historical fiction|Drama,,/en/good_night_and_good_luck,2005-09-01 +"Goodbye, Dragon Inn",Tsai Ming-liang,Comedy-drama|Comedy of manners|Comedy|Drama,,/en/goodbye_dragon_inn,2003-12-12 +Gosford Park,Robert Altman,Mystery|Drama,,/en/gosford_park,2001-11-07 +Gothika,Mathieu Kassovitz,Thriller|Horror|Psychological thriller|Supernatural|Crime Thriller|Mystery,,/en/gothika,2003-11-13 +Gotta Kick It Up!,Ramón Menéndez,Teen film|Television film|Children's/Family|Family,,/en/gotta_kick_it_up, +Goya's Ghosts,Miloš Forman,Biographical film|War film|Drama,,/en/goyas_ghosts,2006-11-08 +Gozu,Takashi Miike,Horror|Surrealism|World cinema|Japanese Movies|Horror comedy|Comedy,,/en/gozu,2003-07-12 +Grande École,Robert Salis,World cinema|LGBT|Romance Film|Gay|Gay Interest|Gay Themed|Ensemble Film|Erotic Drama|Drama,,/en/grande_ecole,2004-02-04 +Grandma's Boy,Nicholaus Goossen,Stoner film|Comedy,,/en/grandmas_boy,2006-01-06 +Grayson,John Fiorella,Indie film|Fan film|Short Film,,/en/grayson_2004,2004-07-20 +Grbavica: The Land of My Dreams,Jasmila Žbanić,War film|Art film|Drama,,/en/grbavica_2006,2006-02-12 +Green Street,Lexi Alexander,Sports|Crime Fiction|Drama,,/en/green_street,2005-03-12 +Green Tea,Zhang Yuan,Romance Film|Drama,,/en/green_tea_2003,2003-08-18 +Greenfingers,Joel Hershman,Comedy-drama|Prison film|Comedy|Drama,,/en/greenfingers,2001-09-14 +Gridiron Gang,Phil Joanou,Sports|Crime Fiction|Drama,,/en/gridiron_gang,2006-09-15 +Grill Point,Andreas Dresen,Drama|Comedy|Tragicomedy|Comedy-drama,,/en/grill_point,2002-02-12 +Grilled,Jason Ensler,Black comedy|Buddy film|Workplace Comedy|Comedy,,/en/grilled,2006-07-11 +Grindhouse,Robert Rodriguez|Quentin Tarantino|Eli Roth|Edgar Wright|Rob Zombie|Jason Eisener,Slasher|Thriller|Action Film|Horror|Zombie Film,,/en/grind_house,2007-04-06 +Grizzly Falls,Stewart Raffill,Adventure Film|Animal Picture|Family-Oriented Adventure|Family|Drama,,/en/grizzly_falls,2004-06-28 +Grizzly Man,Werner Herzog,Documentary film|Biographical film,,/en/grizzly_man,2005-01-24 +GRODMIN,Jim Horwitz,Avant-garde|Experimental film|Drama,,/en/grodmin, +Gudumba Shankar,Veera Shankar,Action Film|Drama|Tollywood|World cinema,,/en/gudumba_shankar,2004-09-09 +Che: Part Two,Steven Soderbergh,Biographical film|War film|Historical drama|Drama,,/en/che_part_two,2008-05-21 +Guess Who,Kevin Rodney Sullivan,Romance Film|Romantic comedy|Comedy of manners|Domestic Comedy|Comedy,,/en/guess_who_2005,2005-03-25 +Gunner Palace,Michael Tucker|Petra Epperlein,Documentary film|Indie film|War film,,/en/gunner_palace,2005-03-04 +Guru,Mani Ratnam,Biographical film|Musical|Romance Film|Drama|Musical Drama,,/en/guru_2007,2007-01-12 +Primeval,Michael Katleman,Thriller|Horror|Natural horror film|Action/Adventure|Action Film,,/en/primeval_2007,2007-01-12 +Gypsy 83,Todd Stephens,Coming of age|LGBT|Black comedy|Indie film|Comedy-drama|Road movie|Comedy|Drama,,/en/gypsy_83, +H,Jong-hyuk Lee,Thriller|Horror|Drama|Mystery|Crime Fiction|East Asian cinema|World cinema,,/en/h_2002,2002-12-27 +H. G. Wells' The War of the Worlds,Timothy Hines,Indie film|Steampunk|Science Fiction|Thriller,,/en/h_g_wells_the_war_of_the_worlds,2005-06-14 +H. G. Wells' War of the Worlds,David Michael Latt,Indie film|Science Fiction|Thriller|Film adaptation|Action Film|Alien Film|Horror|Mockbuster|Drama,,/en/h_g_wells_war_of_the_worlds,2005-06-28 +Hadh Kar Di Aapne,Manoj Agrawal,Romantic comedy|Bollywood,,/en/hadh_kar_di_aapne,2000-04-14 +Haggard: The Movie,Bam Margera,Indie film|Comedy,,/en/haggard_the_movie,2003-06-24 +Haiku Tunnel,Jacob Kornbluth|Josh Kornbluth,Black comedy|Indie film|Satire|Workplace Comedy|Comedy,,/en/haiku_tunnel, +Hairspray,Adam Shankman,Musical|Romance Film|Comedy|Musical comedy,,/en/hairspray,2007-07-13 +Half Nelson,Ryan Fleck,Social problem film|Drama,,/en/half_nelson,2006-01-23 +Half-Life,Jennifer Phang,Fantasy|Indie film|Science Fiction|Fantasy Drama|Drama,,/en/half_life_2006, +Halloween Resurrection,Rick Rosenthal,Slasher|Horror|Cult film|Teen film,,/en/halloween_resurrection,2002-07-12 +Halloweentown High,Mark A.Z. Dippé,Fantasy|Teen film|Fantasy Comedy|Comedy|Family,,/en/halloweentown_high,2004-10-08 +Halloweentown II: Kalabar's Revenge,Mary Lambert,Fantasy|Children's Fantasy|Children's/Family|Family,,/en/halloweentown_ii_kalabars_revenge,2001-10-12 +Return to Halloweentown,David Jackson,Family|Children's/Family|Fantasy Comedy|Comedy,,/en/halloweentown_witch_u,2006-10-20 +Hamlet,Michael Almereyda,Thriller|Romance Film|Drama,,/en/hamlet_2000,2000-05-12 +Hana and Alice,Shunji Iwai,Romance Film|Romantic comedy|Comedy|Drama,,/en/hana_alice,2004-03-13 +Hannibal,Ridley Scott,Thriller|Psychological thriller|Horror|Action Film|Mystery|Crime Thriller|Drama,,/en/hannibal,2001-02-09 +Making Babies,Daniel Lind Lagerlöf,Drama,,/en/hans_och_hennes,2001-01-29 +Hanuman,V.G. Samant|Milind Ukey,Animation|Bollywood|World cinema,,/en/hanuman_2005,2005-10-21 +Hanuman Junction,M.Raja,Action Film|Comedy|Drama|Tollywood|World cinema,,/en/hanuman_junction,2001-12-21 +Happily N'Ever After,Paul J. Bolger|Yvette Kaplan,Fantasy|Animation|Family|Comedy|Adventure Film,,/en/happily_never_after,2006-12-16 +Happy,A. Karunakaran,Romance Film|Musical|Comedy|Drama|Musical comedy|Musical Drama,,/en/happy_2006,2006-01-27 +Happy Endings,Don Roos,LGBT|Music|Thriller|Romantic comedy|Indie film|Romance Film|Comedy|Drama,,/en/happy_endings,2005-01-20 +Happy Ero Christmas,Lee Geon-dong,Romance Film|Comedy|East Asian cinema|World cinema,,/en/happy_ero_christmas,2003-12-17 +Happy Feet,George Miller|Warren Coleman|Judy Morris,Family|Animation|Comedy|Music|Musical|Musical comedy,,/en/happy_feet,2006-11-16 +I Love New Year,Radhika Rao|Vinay Sapru,Caper story|Crime Fiction|Romantic comedy|Romance Film|Bollywood|World cinema,,/wikipedia/en_title/I_Love_New_Year,2013-12-30 +Har Dil Jo Pyar Karega,Raj Kanwar,Musical|Romance Film|World cinema|Musical Drama|Drama,,/en/har_dil_jo_pyar_karega,2000-07-24 +Hard Candy,David Slade,Psychological thriller|Thriller|Suspense|Indie film|Erotic thriller|Drama,,/en/hard_candy, +Hard Luck,Mario Van Peebles,Thriller|Crime Fiction|Action/Adventure|Action Film|Drama,,/en/hard_luck,2006-10-17 +Hardball,Brian Robbins,Sports|Drama,,/en/hardball,2001-09-14 +Harold & Kumar Go to White Castle,Danny Leiner,Stoner film|Buddy film|Adventure Film|Comedy,,/en/harold_kumar_go_to_white_castle,2004-05-20 +Harry Potter and the Chamber of Secrets,Chris Columbus,Adventure Film|Family|Fantasy|Mystery,,/en/harry_potter_and_the_chamber_of_secrets_2002,2002-11-03 +Harry Potter and the Goblet of Fire,Mike Newell,Family|Fantasy|Adventure Film|Thriller|Science Fiction|Supernatural|Mystery|Children's Fantasy|Children's/Family|Fantasy Adventure|Fiction,,/en/harry_potter_and_the_goblet_of_fire_2005,2005-11-06 +Harry Potter and the Half-Blood Prince,David Yates,Adventure Film|Fantasy|Mystery|Action Film|Family|Romance Film|Children's Fantasy|Children's/Family|Fantasy Adventure|Fiction,,/en/harry_potter_and_the_half_blood_prince_2008,2009-07-06 +Harry Potter and the Order of the Phoenix,David Yates,Family|Mystery|Adventure Film|Fantasy|Fantasy Adventure|Fiction,,/en/harry_potter_and_the_order_of_the_phoenix_2007,2007-06-28 diff --git a/solr-8.3.1/example/films/films.json b/solr-8.3.1/example/films/films.json new file mode 100644 index 000000000..75d1fce05 --- /dev/null +++ b/solr-8.3.1/example/films/films.json @@ -0,0 +1,15830 @@ +[ + { + "id": "/en/45_2006", + "directed_by": [ + "Gary Lennon" + ], + "initial_release_date": "2006-11-30", + "genre": [ + "Black comedy", + "Thriller", + "Psychological thriller", + "Indie film", + "Action Film", + "Crime Thriller", + "Crime Fiction", + "Drama" + ], + "name": ".45" + }, + { + "id": "/en/9_2005", + "directed_by": [ + "Shane Acker" + ], + "initial_release_date": "2005-04-21", + "genre": [ + "Computer Animation", + "Animation", + "Apocalyptic and post-apocalyptic fiction", + "Science Fiction", + "Short Film", + "Thriller", + "Fantasy" + ], + "name": "9" + }, + { + "id": "/en/69_2004", + "directed_by": [ + "Lee Sang-il" + ], + "initial_release_date": "2004-07-10", + "genre": [ + "Japanese Movies", + "Drama" + ], + "name": "69" + }, + { + "id": "/en/300_2007", + "directed_by": [ + "Zack Snyder" + ], + "initial_release_date": "2006-12-09", + "genre": [ + "Epic film", + "Adventure Film", + "Fantasy", + "Action Film", + "Historical fiction", + "War film", + "Superhero movie", + "Historical Epic" + ], + "name": "300" + }, + { + "id": "/en/2046_2004", + "directed_by": [ + "Wong Kar-wai" + ], + "initial_release_date": "2004-05-20", + "genre": [ + "Romance Film", + "Fantasy", + "Science Fiction", + "Drama" + ], + "name": "2046" + }, + { + "id": "/en/quien_es_el_senor_lopez", + "directed_by": [ + "Luis Mandoki" + ], + "genre": [ + "Documentary film" + ], + "name": "\u00bfQui\u00e9n es el se\u00f1or L\u00f3pez?" + }, + { + "id": "/en/weird_al_yankovic_the_ultimate_video_collection", + "directed_by": [ + "Jay Levey", + "\"Weird Al\" Yankovic" + ], + "initial_release_date": "2003-11-04", + "genre": [ + "Music video", + "Parody" + ], + "name": "\"Weird Al\" Yankovic: The Ultimate Video Collection" + }, + { + "id": "/en/15_park_avenue", + "directed_by": [ + "Aparna Sen" + ], + "initial_release_date": "2005-10-27", + "genre": [ + "Art film", + "Romance Film", + "Musical", + "Drama", + "Musical Drama" + ], + "name": "15 Park Avenue" + }, + { + "id": "/en/2_fast_2_furious", + "directed_by": [ + "John Singleton" + ], + "initial_release_date": "2003-06-03", + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction" + ], + "name": "2 Fast 2 Furious" + }, + { + "id": "/en/7g_rainbow_colony", + "directed_by": [ + "Selvaraghavan" + ], + "initial_release_date": "2004-10-15", + "genre": [ + "Drama" + ], + "name": "7G Rainbow Colony" + }, + { + "id": "/en/3-iron", + "directed_by": [ + "Kim Ki-duk" + ], + "initial_release_date": "2004-09-07", + "genre": [ + "Crime Fiction", + "Romance Film", + "East Asian cinema", + "World cinema", + "Drama" + ], + "name": "3-Iron" + }, + { + "id": "/en/10_5_apocalypse", + "directed_by": [ + "John Lafia" + ], + "initial_release_date": "2006-03-18", + "genre": [ + "Disaster Film", + "Thriller", + "Television film", + "Action/Adventure", + "Action Film" + ], + "name": "10.5: Apocalypse" + }, + { + "id": "/en/8_mile", + "directed_by": [ + "Curtis Hanson" + ], + "initial_release_date": "2002-09-08", + "genre": [ + "Musical", + "Hip hop film", + "Drama", + "Musical Drama" + ], + "name": "8 Mile" + }, + { + "id": "/en/100_girls", + "directed_by": [ + "Michael Davis" + ], + "initial_release_date": "2001-09-25", + "genre": [ + "Romantic comedy", + "Romance Film", + "Indie film", + "Teen film", + "Comedy" + ], + "name": "100 Girls" + }, + { + "id": "/en/40_days_and_40_nights", + "directed_by": [ + "Michael Lehmann" + ], + "initial_release_date": "2002-03-01", + "genre": [ + "Romance Film", + "Romantic comedy", + "Sex comedy", + "Comedy", + "Drama" + ], + "name": "40 Days and 40 Nights" + }, + { + "id": "/en/50_cent_the_new_breed", + "directed_by": [ + "Don Robinson", + "Damon Johnson", + "Philip Atwell", + "Ian Inaba", + "Stephen Marshall", + "John Quigley", + "Jessy Terrero", + "Noa Shaw" + ], + "initial_release_date": "2003-04-15", + "genre": [ + "Documentary film", + "Music", + "Concert film", + "Biographical film" + ], + "name": "50 Cent: The New Breed" + }, + { + "id": "/en/3_the_dale_earnhardt_story", + "directed_by": [ + "Russell Mulcahy" + ], + "initial_release_date": "2004-12-11", + "genre": [ + "Sports", + "Auto racing", + "Biographical film", + "Drama" + ], + "name": "3: The Dale Earnhardt Story" + }, + { + "id": "/en/61__2001", + "directed_by": [ + "Billy Crystal" + ], + "initial_release_date": "2001-04-28", + "genre": [ + "Sports", + "History", + "Historical period drama", + "Television film", + "Drama" + ], + "name": "61*" + }, + { + "id": "/en/24_hour_party_people", + "directed_by": [ + "Michael Winterbottom" + ], + "initial_release_date": "2002-02-13", + "genre": [ + "Biographical film", + "Comedy-drama", + "Comedy", + "Music", + "Drama" + ], + "name": "24 Hour Party People" + }, + { + "id": "/en/10th_wolf", + "directed_by": [ + "Robert Moresco" + ], + "initial_release_date": "2006-08-18", + "genre": [ + "Mystery", + "Thriller", + "Crime Fiction", + "Crime Thriller", + "Gangster Film", + "Drama" + ], + "name": "10th & Wolf" + }, + { + "id": "/en/25th_hour", + "directed_by": [ + "Spike Lee" + ], + "initial_release_date": "2002-12-16", + "genre": [ + "Crime Fiction", + "Drama" + ], + "name": "25th Hour" + }, + { + "id": "/en/7_seconds_2005", + "directed_by": [ + "Simon Fellows" + ], + "initial_release_date": "2005-06-28", + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction" + ], + "name": "7 Seconds" + }, + { + "id": "/en/28_days_later", + "directed_by": [ + "Danny Boyle" + ], + "initial_release_date": "2002-11-01", + "genre": [ + "Science Fiction", + "Horror", + "Thriller" + ], + "name": "28 Days Later" + }, + { + "id": "/en/21_grams", + "directed_by": [ + "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu" + ], + "initial_release_date": "2003-09-05", + "genre": [ + "Thriller", + "Ensemble Film", + "Crime Fiction", + "Drama" + ], + "name": "21 Grams" + }, + { + "id": "/en/9th_company", + "directed_by": [ + "Fedor Bondarchuk" + ], + "initial_release_date": "2005-09-29", + "genre": [ + "War film", + "Action Film", + "Historical fiction", + "Drama" + ], + "name": "The 9th Company" + }, + { + "id": "/en/102_dalmatians", + "directed_by": [ + "Kevin Lima" + ], + "initial_release_date": "2000-11-22", + "genre": [ + "Family", + "Adventure Film", + "Comedy" + ], + "name": "102 Dalmatians" + }, + { + "id": "/en/16_years_of_alcohol", + "directed_by": [ + "Richard Jobson" + ], + "initial_release_date": "2003-08-14", + "genre": [ + "Indie film", + "Drama" + ], + "name": "16 Years of Alcohol" + }, + { + "id": "/en/12b", + "directed_by": [ + "Jeeva" + ], + "initial_release_date": "2001-09-28", + "genre": [ + "Romance Film", + "Comedy", + "Tamil cinema", + "World cinema", + "Drama" + ], + "name": "12B" + }, + { + "id": "/en/2009_lost_memories", + "directed_by": [ + "Lee Si-myung" + ], + "initial_release_date": "2002-02-01", + "genre": [ + "Thriller", + "Action Film", + "Science Fiction", + "Mystery", + "Drama" + ], + "name": "2009 Lost Memories" + }, + { + "id": "/en/16_blocks", + "directed_by": [ + "Richard Donner" + ], + "initial_release_date": "2006-03-01", + "genre": [ + "Thriller", + "Crime Fiction", + "Action Film", + "Drama" + ], + "name": "16 Blocks" + }, + { + "id": "/en/15_minutes", + "directed_by": [ + "John Herzfeld" + ], + "initial_release_date": "2001-03-01", + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction", + "Crime Thriller", + "Drama" + ], + "name": "15 Minutes" + }, + { + "id": "/en/50_first_dates", + "directed_by": [ + "Peter Segal" + ], + "initial_release_date": "2004-02-13", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ], + "name": "50 First Dates" + }, + { + "id": "/en/9_songs", + "directed_by": [ + "Michael Winterbottom" + ], + "initial_release_date": "2004-05-16", + "genre": [ + "Erotica", + "Musical", + "Romance Film", + "Erotic Drama", + "Musical Drama", + "Drama" + ], + "name": "9 Songs" + }, + { + "id": "/en/20_fingers_2004", + "directed_by": [ + "Mania Akbari" + ], + "initial_release_date": "2004-09-01", + "genre": [ + "World cinema", + "Drama" + ], + "name": "20 Fingers" + }, + { + "id": "/en/3_needles", + "directed_by": [ + "Thom Fitzgerald" + ], + "initial_release_date": "2006-12-01", + "genre": [ + "Indie film", + "Social problem film", + "Chinese Movies", + "Drama" + ], + "name": "3 Needles" + }, + { + "id": "/en/28_days_2000", + "directed_by": [ + "Betty Thomas" + ], + "initial_release_date": "2000-02-08", + "genre": [ + "Comedy-drama", + "Romantic comedy", + "Comedy", + "Drama" + ], + "name": "28 Days" + }, + { + "id": "/en/36_china_town", + "directed_by": [ + "Abbas Burmawalla", + "Mustan Burmawalla" + ], + "initial_release_date": "2006-04-21", + "genre": [ + "Thriller", + "Musical", + "Comedy", + "Mystery", + "Crime Fiction", + "Bollywood", + "Musical comedy" + ], + "name": "36 China Town" + }, + { + "id": "/en/7_mujeres_1_homosexual_y_carlos", + "directed_by": [ + "Rene Bueno" + ], + "initial_release_date": "2004-06-01", + "genre": [ + "Romantic comedy", + "LGBT", + "Romance Film", + "World cinema", + "Sex comedy", + "Comedy", + "Drama" + ], + "name": "7 mujeres, 1 homosexual y Carlos" + }, + { + "id": "/en/88_minutes", + "directed_by": [ + "Jon Avnet" + ], + "initial_release_date": "2007-02-14", + "genre": [ + "Thriller", + "Psychological thriller", + "Mystery", + "Drama" + ], + "name": "88 Minutes" + }, + { + "id": "/en/500_years_later", + "directed_by": [ + "Owen 'Alik Shahadah" + ], + "initial_release_date": "2005-10-11", + "genre": [ + "Indie film", + "Documentary film", + "History" + ], + "name": "500 Years Later" + }, + { + "id": "/en/50_ways_of_saying_fabulous", + "directed_by": [ + "Stewart Main" + ], + "genre": [ + "LGBT", + "Indie film", + "Historical period drama", + "Gay Themed", + "World cinema", + "Coming of age", + "Drama" + ], + "name": "50 Ways of Saying Fabulous" + }, + { + "id": "/en/5x2", + "directed_by": [ + "Fran\u00e7ois Ozon" + ], + "initial_release_date": "2004-09-01", + "genre": [ + "Romance Film", + "World cinema", + "Marriage Drama", + "Fiction", + "Drama" + ], + "name": "5x2" + }, + { + "id": "/en/28_weeks_later", + "directed_by": [ + "Juan Carlos Fresnadillo" + ], + "initial_release_date": "2007-04-26", + "genre": [ + "Science Fiction", + "Horror", + "Thriller" + ], + "name": "28 Weeks Later" + }, + { + "id": "/en/10_5", + "directed_by": [ + "John Lafia" + ], + "initial_release_date": "2004-05-02", + "genre": [ + "Disaster Film", + "Thriller", + "Action/Adventure", + "Drama" + ], + "name": "10.5" + }, + { + "id": "/en/13_going_on_30", + "directed_by": [ + "Gary Winick" + ], + "initial_release_date": "2004-04-14", + "genre": [ + "Romantic comedy", + "Coming of age", + "Fantasy", + "Romance Film", + "Fantasy Comedy", + "Comedy" + ], + "name": "13 Going on 30" + }, + { + "id": "/en/2ldk", + "directed_by": [ + "Yukihiko Tsutsumi" + ], + "initial_release_date": "2004-05-13", + "genre": [ + "LGBT", + "Thriller", + "Psychological thriller", + "World cinema", + "Japanese Movies", + "Comedy", + "Drama" + ], + "name": "2LDK" + }, + { + "id": "/en/7_phere", + "directed_by": [ + "Ishaan Trivedi" + ], + "initial_release_date": "2005-07-29", + "genre": [ + "Bollywood", + "Comedy", + "Drama" + ], + "name": "7\u00bd Phere" + }, + { + "id": "/en/a_beautiful_mind", + "directed_by": [ + "Ron Howard" + ], + "initial_release_date": "2001-12-13", + "genre": [ + "Biographical film", + "Psychological thriller", + "Historical period drama", + "Romance Film", + "Marriage Drama", + "Documentary film", + "Drama" + ], + "name": "A Beautiful Mind" + }, + { + "id": "/en/a_cinderella_story", + "directed_by": [ + "Mark Rosman" + ], + "initial_release_date": "2004-07-10", + "genre": [ + "Teen film", + "Romantic comedy", + "Romance Film", + "Family", + "Comedy" + ], + "name": "A Cinderella Story" + }, + { + "id": "/en/a_cock_and_bull_story", + "directed_by": [ + "Michael Winterbottom" + ], + "initial_release_date": "2005-07-17", + "genre": [ + "Mockumentary", + "Indie film", + "Comedy", + "Drama" + ], + "name": "A Cock and Bull Story" + }, + { + "id": "/en/a_common_thread", + "directed_by": [ + "\u00c9l\u00e9onore Faucher" + ], + "initial_release_date": "2004-05-14", + "genre": [ + "Romance Film", + "Drama" + ], + "name": "A Common Thread" + }, + { + "id": "/en/a_dirty_shame", + "directed_by": [ + "John Waters" + ], + "initial_release_date": "2004-09-12", + "genre": [ + "Sex comedy", + "Cult film", + "Parody", + "Black comedy", + "Gross out", + "Gross-out film", + "Comedy" + ], + "name": "A Dirty Shame" + }, + { + "id": "/en/a_duo_occasion", + "directed_by": [ + "Pierre Lamoureux" + ], + "initial_release_date": "2005-11-22", + "genre": [ + "Music video" + ], + "name": "A Duo Occasion" + }, + { + "id": "/en/a_good_year", + "directed_by": [ + "Ridley Scott" + ], + "initial_release_date": "2006-09-09", + "genre": [ + "Romantic comedy", + "Film adaptation", + "Romance Film", + "Comedy-drama", + "Slice of life", + "Comedy of manners", + "Comedy", + "Drama" + ], + "name": "A Good Year" + }, + { + "id": "/en/a_history_of_violence_2005", + "directed_by": [ + "David Cronenberg" + ], + "initial_release_date": "2005-05-16", + "genre": [ + "Thriller", + "Psychological thriller", + "Crime Fiction", + "Drama" + ], + "name": "A History of Violence" + }, + { + "id": "/en/ett_hal_i_mitt_hjarta", + "directed_by": [ + "Lukas Moodysson" + ], + "initial_release_date": "2004-09-10", + "genre": [ + "Horror", + "Experimental film", + "Social problem film", + "Drama" + ], + "name": "A Hole in My Heart" + }, + { + "id": "/en/a_knights_tale", + "directed_by": [ + "Brian Helgeland" + ], + "initial_release_date": "2001-03-08", + "genre": [ + "Romantic comedy", + "Adventure Film", + "Action Film", + "Action/Adventure", + "Historical period drama", + "Costume Adventure", + "Comedy", + "Drama" + ], + "name": "A Knight's Tale" + }, + { + "id": "/en/a_league_of_ordinary_gentlemen", + "directed_by": [ + "Christopher Browne", + "Alexander H. Browne" + ], + "initial_release_date": "2006-03-21", + "genre": [ + "Documentary film", + "Sports", + "Culture & Society", + "Biographical film" + ], + "name": "A League of Ordinary Gentlemen" + }, + { + "id": "/en/a_little_trip_to_heaven", + "directed_by": [ + "Baltasar Korm\u00e1kur" + ], + "initial_release_date": "2005-12-26", + "genre": [ + "Thriller", + "Crime Fiction", + "Black comedy", + "Indie film", + "Comedy-drama", + "Detective fiction", + "Ensemble Film", + "Drama" + ], + "name": "A Little Trip to Heaven" + }, + { + "id": "/en/a_lot_like_love", + "directed_by": [ + "Nigel Cole" + ], + "initial_release_date": "2005-04-21", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy-drama", + "Comedy", + "Drama" + ], + "name": "A Lot like Love" + }, + { + "id": "/en/a_love_song_for_bobby_long", + "directed_by": [ + "Shainee Gabel" + ], + "initial_release_date": "2004-09-02", + "genre": [ + "Film adaptation", + "Melodrama", + "Drama" + ], + "name": "A Love Song for Bobby Long" + }, + { + "id": "/en/a_man_a_real_one", + "directed_by": [ + "Arnaud Larrieu", + "Jean-Marie Larrieu" + ], + "initial_release_date": "2003-05-28", + "genre": [ + "Comedy", + "Drama" + ], + "name": "A Man, a Real One" + }, + { + "id": "/en/a_midsummer_nights_rave", + "directed_by": [ + "Gil Cates Jr." + ], + "genre": [ + "Romance Film", + "Romantic comedy", + "Teen film", + "Comedy", + "Drama" + ], + "name": "A Midsummer Night's Rave" + }, + { + "id": "/en/a_mighty_wind", + "directed_by": [ + "Christopher Guest" + ], + "initial_release_date": "2003-03-12", + "genre": [ + "Mockumentary", + "Parody", + "Musical", + "Musical comedy", + "Comedy" + ], + "name": "A Mighty Wind" + }, + { + "id": "/en/a_perfect_day", + "directed_by": [ + "Khalil Joreige", + "Joana Hadjithomas" + ], + "genre": [ + "World cinema", + "Drama" + ], + "name": "A Perfect Day" + }, + { + "id": "/en/a_prairie_home_companion_2006", + "directed_by": [ + "Robert Altman" + ], + "initial_release_date": "2006-02-12", + "genre": [ + "Musical comedy", + "Drama" + ], + "name": "A Prairie Home Companion" + }, + { + "id": "/en/a_ring_of_endless_light_2002", + "directed_by": [ + "Greg Beeman" + ], + "initial_release_date": "2002-08-23", + "genre": [ + "Drama" + ], + "name": "A Ring of Endless Light" + }, + { + "id": "/en/a_scanner_darkly_2006", + "directed_by": [ + "Richard Linklater" + ], + "initial_release_date": "2006-07-07", + "genre": [ + "Science Fiction", + "Dystopia", + "Animation", + "Future noir", + "Film adaptation", + "Thriller", + "Drama" + ], + "name": "A Scanner Darkly" + }, + { + "id": "/en/a_short_film_about_john_bolton", + "directed_by": [ + "Neil Gaiman" + ], + "genre": [ + "Documentary film", + "Short Film", + "Black comedy", + "Indie film", + "Mockumentary", + "Graphic & Applied Arts", + "Comedy", + "Biographical film" + ], + "name": "A Short Film About John Bolton" + }, + { + "id": "/en/a_shot_in_the_west", + "directed_by": [ + "Bob Kelly" + ], + "initial_release_date": "2006-07-16", + "genre": [ + "Western", + "Short Film" + ], + "name": "A Shot in the West" + }, + { + "id": "/en/a_sound_of_thunder_2005", + "directed_by": [ + "Peter Hyams" + ], + "initial_release_date": "2005-05-15", + "genre": [ + "Science Fiction", + "Adventure Film", + "Thriller", + "Action Film", + "Apocalyptic and post-apocalyptic fiction", + "Time travel" + ], + "name": "A Sound of Thunder" + }, + { + "id": "/en/a_state_of_mind", + "directed_by": [ + "Daniel Gordon" + ], + "initial_release_date": "2005-08-10", + "genre": [ + "Documentary film", + "Political cinema", + "Sports" + ], + "name": "A State of Mind" + }, + { + "id": "/en/a_time_for_drunken_horses", + "directed_by": [ + "Bahman Ghobadi" + ], + "genre": [ + "World cinema", + "War film", + "Drama" + ], + "name": "A Time for Drunken Horses" + }, + { + "id": "/en/a_ton_image", + "directed_by": [ + "Aruna Villiers" + ], + "initial_release_date": "2004-05-26", + "genre": [ + "Thriller", + "Science Fiction" + ], + "name": "\u00c0 ton image" + }, + { + "id": "/en/a_very_long_engagement", + "directed_by": [ + "Jean-Pierre Jeunet" + ], + "initial_release_date": "2004-10-27", + "genre": [ + "War film", + "Romance Film", + "World cinema", + "Drama" + ], + "name": "A Very Long Engagement" + }, + { + "id": "/en/a_view_from_the_eiffel_tower", + "directed_by": [ + "Nikola Vuk\u010devi\u0107" + ], + "genre": [ + "Drama" + ], + "name": "A View from Eiffel Tower" + }, + { + "id": "/en/a_walk_to_remember", + "directed_by": [ + "Adam Shankman" + ], + "initial_release_date": "2002-01-23", + "genre": [ + "Coming of age", + "Romance Film", + "Drama" + ], + "name": "A Walk to Remember" + }, + { + "id": "/en/a_i", + "directed_by": [ + "Steven Spielberg" + ], + "initial_release_date": "2001-06-26", + "genre": [ + "Science Fiction", + "Future noir", + "Adventure Film", + "Drama" + ], + "name": "A.I. Artificial Intelligence" + }, + { + "id": "/en/a_k_a_tommy_chong", + "directed_by": [ + "Josh Gilbert" + ], + "initial_release_date": "2006-06-14", + "genre": [ + "Documentary film", + "Culture & Society", + "Law & Crime", + "Biographical film" + ], + "name": "a/k/a Tommy Chong" + }, + { + "id": "/en/aalvar", + "directed_by": [ + "Chella" + ], + "initial_release_date": "2007-01-12", + "genre": [ + "Action Film", + "Tamil cinema", + "World cinema" + ], + "name": "Aalvar" + }, + { + "id": "/en/aap_ki_khatir", + "directed_by": [ + "Dharmesh Darshan" + ], + "initial_release_date": "2006-08-25", + "genre": [ + "Romance Film", + "Romantic comedy", + "Bollywood", + "Drama" + ], + "name": "Aap Ki Khatir" + }, + { + "id": "/en/aaru_2005", + "directed_by": [ + "Hari" + ], + "initial_release_date": "2005-12-09", + "genre": [ + "Thriller", + "Action Film", + "Drama", + "Tamil cinema", + "World cinema" + ], + "name": "Aaru" + }, + { + "id": "/en/aata", + "directed_by": [ + "V.N. Aditya" + ], + "initial_release_date": "2007-05-09", + "genre": [ + "Romance Film", + "Tollywood", + "World cinema" + ], + "name": "Aata" + }, + { + "id": "/en/aathi", + "directed_by": [ + "Ramana" + ], + "initial_release_date": "2006-01-14", + "genre": [ + "Thriller", + "Romance Film", + "Musical", + "Action Film", + "Tamil cinema", + "World cinema", + "Drama", + "Musical Drama" + ], + "name": "Aadhi" + }, + { + "id": "/en/aayitha_ezhuthu", + "directed_by": [ + "Mani Ratnam" + ], + "initial_release_date": "2004-05-21", + "genre": [ + "Thriller", + "Political thriller", + "Tamil cinema", + "World cinema", + "Drama" + ], + "name": "Aaytha Ezhuthu" + }, + { + "id": "/en/abandon_2002", + "directed_by": [ + "Stephen Gaghan" + ], + "initial_release_date": "2002-10-18", + "genre": [ + "Mystery", + "Thriller", + "Psychological thriller", + "Suspense", + "Drama" + ], + "name": "Abandon" + }, + { + "id": "/en/abduction_the_megumi_yokota_story", + "directed_by": [ + "Patty Kim", + "Chris Sheridan" + ], + "genre": [ + "Documentary film", + "Political cinema", + "Culture & Society", + "Law & Crime" + ], + "name": "Abduction: The Megumi Yokota Story" + }, + { + "id": "/en/about_a_boy_2002", + "directed_by": [ + "Chris Weitz", + "Paul Weitz" + ], + "initial_release_date": "2002-04-26", + "genre": [ + "Romance Film", + "Comedy", + "Drama" + ], + "name": "About a Boy" + }, + { + "id": "/en/about_schmidt", + "directed_by": [ + "Alexander Payne" + ], + "initial_release_date": "2002-05-22", + "genre": [ + "Black comedy", + "Indie film", + "Comedy-drama", + "Tragicomedy", + "Comedy of manners", + "Comedy", + "Drama" + ], + "name": "About Schmidt" + }, + { + "id": "/en/accepted", + "directed_by": [ + "Steve Pink" + ], + "initial_release_date": "2006-08-18", + "genre": [ + "Teen film", + "Comedy" + ], + "name": "Accepted" + }, + { + "id": "/en/across_the_hall", + "directed_by": [ + "Alex Merkin", + "Alex Merkin" + ], + "genre": [ + "Short Film", + "Thriller", + "Drama" + ], + "name": "Across the Hall" + }, + { + "id": "/en/adam_steve", + "directed_by": [ + "Craig Chester" + ], + "initial_release_date": "2005-04-24", + "genre": [ + "Romance Film", + "Romantic comedy", + "LGBT", + "Gay Themed", + "Indie film", + "Gay", + "Gay Interest", + "Comedy" + ], + "name": "Adam & Steve" + }, + { + "id": "/en/adam_resurrected", + "directed_by": [ + "Paul Schrader" + ], + "initial_release_date": "2008-08-30", + "genre": [ + "Historical period drama", + "Film adaptation", + "War film", + "Drama" + ], + "name": "Adam Resurrected" + }, + { + "id": "/en/adaptation_2002", + "directed_by": [ + "Spike Jonze" + ], + "initial_release_date": "2002-12-06", + "genre": [ + "Crime Fiction", + "Comedy", + "Drama" + ], + "name": "Adaptation" + }, + { + "id": "/en/address_unknown", + "directed_by": [ + "Kim Ki-duk" + ], + "initial_release_date": "2001-06-02", + "genre": [ + "War film", + "Drama" + ], + "name": "Address Unknown" + }, + { + "id": "/en/adrenaline_rush_2002", + "directed_by": [ + "Marc Fafard" + ], + "initial_release_date": "2002-10-18", + "genre": [ + "Documentary film", + "Short Film" + ], + "name": "Adrenaline Rush" + }, + { + "id": "/en/essential_keys_to_better_bowling_2006", + "directed_by": [], + "genre": [ + "Documentary film", + "Sports" + ], + "name": "Essential Keys To Better Bowling" + }, + { + "id": "/en/adventures_into_digital_comics", + "directed_by": [ + "S\u00e9bastien Dumesnil" + ], + "genre": [ + "Documentary film" + ], + "name": "Adventures Into Digital Comics" + }, + { + "id": "/en/ae_fond_kiss", + "directed_by": [ + "Ken Loach" + ], + "initial_release_date": "2004-02-13", + "genre": [ + "Romance Film", + "Drama" + ], + "name": "Ae Fond Kiss..." + }, + { + "id": "/en/aetbaar", + "directed_by": [ + "Vikram Bhatt" + ], + "initial_release_date": "2004-01-23", + "genre": [ + "Thriller", + "Romance Film", + "Mystery", + "Horror", + "Musical", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ], + "name": "Aetbaar" + }, + { + "id": "/en/aethiree", + "initial_release_date": "2004-04-23", + "genre": [ + "Comedy", + "Tamil cinema", + "World cinema" + ], + "directed_by": [ + "K. S. Ravikumar" + ], + "name": "Aethirree" + }, + { + "id": "/en/after_innocence", + "genre": [ + "Documentary film", + "Crime Fiction", + "Political cinema", + "Culture & Society", + "Law & Crime", + "Biographical film" + ], + "directed_by": [ + "Jessica Sanders" + ], + "name": "After Innocence" + }, + { + "id": "/en/after_the_sunset", + "initial_release_date": "2004-11-10", + "genre": [ + "Crime Fiction", + "Action/Adventure", + "Action Film", + "Crime Thriller", + "Heist film", + "Caper story", + "Crime Comedy", + "Comedy" + ], + "directed_by": [ + "Brett Ratner" + ], + "name": "After the Sunset" + }, + { + "id": "/en/aftermath_2007", + "initial_release_date": "2013-03-01", + "genre": [ + "Crime Fiction", + "Thriller" + ], + "directed_by": [ + "Thomas Farone" + ], + "name": "Aftermath" + }, + { + "id": "/en/against_the_ropes", + "initial_release_date": "2004-02-20", + "genre": [ + "Biographical film", + "Sports", + "Drama" + ], + "directed_by": [ + "Charles S. Dutton" + ], + "name": "Against the Ropes" + }, + { + "id": "/en/agent_cody_banks_2_destination_london", + "initial_release_date": "2004-03-12", + "genre": [ + "Adventure Film", + "Action Film", + "Family", + "Action/Adventure", + "Spy film", + "Children's/Family", + "Family-Oriented Adventure", + "Comedy" + ], + "directed_by": [ + "Kevin Allen" + ], + "name": "Agent Cody Banks 2: Destination London" + }, + { + "id": "/en/agent_one-half", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Brian Bero" + ], + "name": "Agent One-Half" + }, + { + "id": "/en/agnes_and_his_brothers", + "initial_release_date": "2004-09-05", + "genre": [ + "Drama", + "Comedy" + ], + "directed_by": [ + "Oskar Roehler" + ], + "name": "Agnes and His Brothers" + }, + { + "id": "/en/aideista_parhain", + "initial_release_date": "2005-08-25", + "genre": [ + "War film", + "Drama" + ], + "directed_by": [ + "Klaus H\u00e4r\u00f6" + ], + "name": "Mother of Mine" + }, + { + "id": "/en/aileen_life_and_death_of_a_serial_killer", + "initial_release_date": "2003-05-10", + "genre": [ + "Documentary film", + "Crime Fiction", + "Political drama" + ], + "directed_by": [ + "Nick Broomfield", + "Joan Churchill" + ], + "name": "Aileen: Life and Death of a Serial Killer" + }, + { + "id": "/en/air_2005", + "initial_release_date": "2005-02-05", + "genre": [ + "Fantasy", + "Anime", + "Animation", + "Japanese Movies", + "Drama" + ], + "directed_by": [ + "Osamu Dezaki" + ], + "name": "Air" + }, + { + "id": "/en/air_bud_seventh_inning_fetch", + "initial_release_date": "2002-02-21", + "genre": [ + "Family", + "Sports", + "Comedy", + "Drama" + ], + "directed_by": [ + "Robert Vince" + ], + "name": "Air Bud: Seventh Inning Fetch" + }, + { + "id": "/en/air_bud_spikes_back", + "initial_release_date": "2003-06-24", + "genre": [ + "Family", + "Sports", + "Comedy" + ], + "directed_by": [ + "Mike Southon" + ], + "name": "Air Bud: Spikes Back" + }, + { + "id": "/en/air_buddies", + "initial_release_date": "2006-12-10", + "genre": [ + "Family", + "Animal Picture", + "Children's/Family", + "Family-Oriented Adventure", + "Comedy" + ], + "directed_by": [ + "Robert Vince" + ], + "name": "Air Buddies" + }, + { + "id": "/en/aitraaz", + "initial_release_date": "2004-11-12", + "genre": [ + "Trial drama", + "Thriller", + "Bollywood", + "World cinema", + "Drama" + ], + "directed_by": [ + "Abbas Burmawalla", + "Mustan Burmawalla" + ], + "name": "Aitraaz" + }, + { + "id": "/en/aka_2002", + "initial_release_date": "2002-01-19", + "genre": [ + "LGBT", + "Indie film", + "Historical period drama", + "Drama" + ], + "directed_by": [ + "Duncan Roy" + ], + "name": "AKA" + }, + { + "id": "/en/aakasha_gopuram", + "initial_release_date": "2008-08-22", + "genre": [ + "Romance Film", + "Drama", + "Malayalam Cinema", + "World cinema" + ], + "directed_by": [ + "K.P.Kumaran" + ], + "name": "Aakasha Gopuram" + }, + { + "id": "/en/akbar-jodha", + "initial_release_date": "2008-02-13", + "genre": [ + "Biographical film", + "Romance Film", + "Musical", + "World cinema", + "Adventure Film", + "Action Film", + "Historical fiction", + "Musical Drama", + "Drama" + ], + "directed_by": [ + "Ashutosh Gowariker" + ], + "name": "Jodhaa Akbar" + }, + { + "id": "/en/akeelah_and_the_bee", + "initial_release_date": "2006-03-16", + "genre": [ + "Drama" + ], + "directed_by": [ + "Doug Atchison" + ], + "name": "Akeelah and the Bee" + }, + { + "id": "/en/aks", + "initial_release_date": "2001-07-13", + "genre": [ + "Horror", + "Thriller", + "Mystery", + "Bollywood", + "World cinema" + ], + "directed_by": [ + "Rakeysh Omprakash Mehra" + ], + "name": "The Reflection" + }, + { + "id": "/en/aksar", + "initial_release_date": "2006-02-03", + "genre": [ + "Romance Film", + "World cinema", + "Thriller", + "Drama" + ], + "directed_by": [ + "Anant Mahadevan" + ], + "name": "Aksar" + }, + { + "id": "/en/al_franken_god_spoke", + "initial_release_date": "2006-09-13", + "genre": [ + "Mockumentary", + "Documentary film", + "Political cinema", + "Culture & Society", + "Biographical film" + ], + "directed_by": [ + "Nick Doob", + "Chris Hegedus" + ], + "name": "Al Franken: God Spoke" + }, + { + "id": "/en/alag", + "initial_release_date": "2006-06-16", + "genre": [ + "Thriller", + "Science Fiction", + "Bollywood", + "World cinema" + ], + "directed_by": [ + "Ashu Trikha" + ], + "name": "Different" + }, + { + "id": "/en/alai", + "initial_release_date": "2003-09-10", + "genre": [ + "Romance Film", + "Drama", + "Comedy", + "Tamil cinema", + "World cinema" + ], + "directed_by": [ + "Vikram Kumar" + ], + "name": "Wave" + }, + { + "id": "/en/alaipayuthey", + "initial_release_date": "2000-04-14", + "genre": [ + "Musical", + "Romance Film", + "Musical Drama", + "Drama" + ], + "directed_by": [ + "Mani Ratnam" + ], + "name": "Waves" + }, + { + "id": "/en/alatriste", + "initial_release_date": "2006-09-01", + "genre": [ + "Thriller", + "War film", + "Adventure Film", + "Action Film", + "Drama", + "Historical fiction" + ], + "directed_by": [ + "Agust\u00edn D\u00edaz Yanes" + ], + "name": "Alatriste" + }, + { + "id": "/en/alex_emma", + "initial_release_date": "2003-06-20", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Rob Reiner" + ], + "name": "Alex & Emma" + }, + { + "id": "/en/alexander_2004", + "initial_release_date": "2004-11-16", + "genre": [ + "War film", + "Action Film", + "Adventure Film", + "Romance Film", + "Biographical film", + "Historical fiction", + "Drama" + ], + "directed_by": [ + "Oliver Stone", + "Wilhelm Sasnal", + "Anka Sasnal" + ], + "name": "Alexander" + }, + { + "id": "/en/alexandras_project", + "genre": [ + "Thriller", + "Suspense", + "Psychological thriller", + "Indie film", + "World cinema", + "Drama" + ], + "directed_by": [ + "Rolf de Heer" + ], + "name": "Alexandra's Project" + }, + { + "id": "/en/alfie_2004", + "initial_release_date": "2004-10-22", + "genre": [ + "Sex comedy", + "Remake", + "Comedy-drama", + "Romance Film", + "Romantic comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Charles Shyer" + ], + "name": "Alfie" + }, + { + "id": "/en/ali_2001", + "initial_release_date": "2001-12-11", + "genre": [ + "Biographical film", + "Sports", + "Historical period drama", + "Sports films", + "Drama" + ], + "directed_by": [ + "Michael Mann" + ], + "name": "Ali" + }, + { + "id": "/en/ali_g_indahouse", + "initial_release_date": "2002-03-22", + "genre": [ + "Stoner film", + "Parody", + "Gross out", + "Gross-out film", + "Comedy" + ], + "directed_by": [ + "Mark Mylod" + ], + "name": "Ali G Indahouse" + }, + { + "id": "/en/alien_autopsy_2006", + "initial_release_date": "2006-04-07", + "genre": [ + "Science Fiction", + "Mockumentary", + "Comedy" + ], + "directed_by": [ + "Jonny Campbell" + ], + "name": "Alien Autopsy" + }, + { + "id": "/en/avp_alien_vs_predator", + "initial_release_date": "2004-08-12", + "genre": [ + "Science Fiction", + "Horror", + "Action Film", + "Monster movie", + "Thriller", + "Adventure Film" + ], + "directed_by": [ + "Paul W. S. Anderson" + ], + "name": "Alien vs. Predator" + }, + { + "id": "/en/avpr_aliens_vs_predator_requiem", + "initial_release_date": "2007-12-25", + "genre": [ + "Science Fiction", + "Action Film", + "Action/Adventure", + "Horror", + "Monster movie", + "Thriller" + ], + "directed_by": [ + "Colin Strause", + "Greg Strause" + ], + "name": "AVPR: Aliens vs Predator - Requiem" + }, + { + "id": "/en/aliens_of_the_deep", + "initial_release_date": "2005-01-28", + "genre": [ + "Documentary film", + "Travel", + "Education", + "Biological Sciences" + ], + "directed_by": [ + "James Cameron", + "Steven Quale", + "Steven Quale" + ], + "name": "Aliens of the Deep" + }, + { + "id": "/en/alive_2002", + "initial_release_date": "2002-09-12", + "genre": [ + "Science Fiction", + "Action Film", + "Horror", + "Thriller", + "World cinema", + "Action/Adventure", + "Japanese Movies" + ], + "directed_by": [ + "Ryuhei Kitamura" + ], + "name": "Alive" + }, + { + "id": "/en/all_about_lily_chou-chou", + "initial_release_date": "2001-09-07", + "genre": [ + "Crime Fiction", + "Musical", + "Thriller", + "Art film", + "Romance Film", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Shunji Iwai" + ], + "name": "All About Lily Chou-Chou" + }, + { + "id": "/en/all_about_the_benjamins", + "initial_release_date": "2002-03-08", + "genre": [ + "Action Film", + "Crime Fiction", + "Comedy", + "Thriller" + ], + "directed_by": [ + "Kevin Bray" + ], + "name": "All About the Benjamins" + }, + { + "id": "/en/all_i_want_2002", + "initial_release_date": "2002-09-10", + "genre": [ + "Romantic comedy", + "Coming of age", + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Jeffrey Porter" + ], + "name": "All I Want" + }, + { + "id": "/en/all_over_the_guy", + "genre": [ + "Indie film", + "LGBT", + "Romantic comedy", + "Romance Film", + "Gay", + "Gay Interest", + "Gay Themed", + "Comedy" + ], + "directed_by": [ + "Julie Davis" + ], + "name": "All Over the Guy" + }, + { + "id": "/en/all_souls_day_2005", + "initial_release_date": "2005-01-25", + "genre": [ + "Horror", + "Supernatural", + "Zombie Film" + ], + "directed_by": [ + "Jeremy Kasten", + "Mark A. Altman" + ], + "name": "All Souls Day" + }, + { + "id": "/en/all_the_kings_men_2006", + "initial_release_date": "2006-09-10", + "genre": [ + "Political drama", + "Thriller" + ], + "directed_by": [ + "Steven Zaillian" + ], + "name": "All the King's Men" + }, + { + "id": "/en/all_the_real_girls", + "initial_release_date": "2003-01-19", + "genre": [ + "Romance Film", + "Indie film", + "Coming of age", + "Drama" + ], + "directed_by": [ + "David Gordon Green" + ], + "name": "All the Real Girls" + }, + { + "id": "/en/allari_bullodu", + "genre": [ + "Comedy", + "Romance Film", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Kovelamudi Raghavendra Rao" + ], + "name": "Allari Bullodu" + }, + { + "id": "/en/allari_pidugu", + "initial_release_date": "2005-10-05", + "genre": [ + "Drama", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Jayant Paranji" + ], + "name": "Allari Pidugu" + }, + { + "id": "/en/alles_auf_zucker", + "initial_release_date": "2004-12-31", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Dani Levy" + ], + "name": "Alles auf Zucker!" + }, + { + "id": "/en/alley_cats_strike", + "initial_release_date": "2000-03-18", + "genre": [ + "Family", + "Sports" + ], + "directed_by": [ + "Rod Daniel" + ], + "name": "Alley Cats Strike!" + }, + { + "id": "/en/almost_famous", + "initial_release_date": "2000-09-08", + "genre": [ + "Musical", + "Comedy-drama", + "Musical Drama", + "Road movie", + "Musical comedy", + "Comedy", + "Music", + "Drama" + ], + "directed_by": [ + "Cameron Crowe" + ], + "name": "Almost Famous" + }, + { + "id": "/en/almost_round_three", + "initial_release_date": "2004-11-10", + "genre": [ + "Sports" + ], + "directed_by": [ + "Matt Hill", + "Matt Hill" + ], + "name": "Almost: Round Three" + }, + { + "id": "/en/alone_and_restless", + "genre": [ + "Drama" + ], + "directed_by": [ + "Michael Thomas Dunn" + ], + "name": "Alone and Restless" + }, + { + "id": "/en/alone_in_the_dark", + "initial_release_date": "2005-01-28", + "genre": [ + "Science Fiction", + "Horror", + "Action Film", + "Thriller", + "B movie", + "Action/Adventure" + ], + "directed_by": [ + "Uwe Boll" + ], + "name": "Alone in the Dark" + }, + { + "id": "/en/along_came_polly", + "initial_release_date": "2004-01-12", + "genre": [ + "Romantic comedy", + "Romance Film", + "Gross out", + "Gross-out film", + "Comedy" + ], + "directed_by": [ + "John Hamburg" + ], + "name": "Along Came Polly" + }, + { + "id": "/en/alpha_dog", + "initial_release_date": "2006-01-27", + "genre": [ + "Crime Fiction", + "Biographical film", + "Drama" + ], + "directed_by": [ + "Nick Cassavetes" + ], + "name": "Alpha Dog" + }, + { + "id": "/en/amelie", + "initial_release_date": "2001-04-25", + "genre": [ + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Jean-Pierre Jeunet" + ], + "name": "Am\u00e9lie" + }, + { + "id": "/en/america_freedom_to_fascism", + "initial_release_date": "2006-07-28", + "genre": [ + "Documentary film", + "Political cinema", + "Culture & Society" + ], + "directed_by": [ + "Aaron Russo" + ], + "name": "America: Freedom to Fascism" + }, + { + "id": "/en/americas_sweethearts", + "initial_release_date": "2001-07-17", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Joe Roth" + ], + "name": "America's Sweethearts" + }, + { + "id": "/en/american_cowslip", + "initial_release_date": "2009-07-24", + "genre": [ + "Black comedy", + "Indie film", + "Comedy" + ], + "directed_by": [ + "Mark David" + ], + "name": "American Cowslip" + }, + { + "id": "/en/american_desi", + "genre": [ + "Indie film", + "Romance Film", + "Romantic comedy", + "Musical comedy", + "Teen film", + "Comedy" + ], + "directed_by": [ + "Piyush Dinker Pandya" + ], + "name": "American Desi" + }, + { + "id": "/en/american_dog", + "initial_release_date": "2008-11-17", + "genre": [ + "Family", + "Adventure Film", + "Animation", + "Comedy" + ], + "directed_by": [ + "Chris Williams", + "Byron Howard" + ], + "name": "Bolt" + }, + { + "id": "/en/american_dreamz", + "initial_release_date": "2006-04-21", + "genre": [ + "Political cinema", + "Parody", + "Political satire", + "Media Satire", + "Comedy" + ], + "directed_by": [ + "Paul Weitz" + ], + "name": "American Dreamz" + }, + { + "id": "/en/american_gangster", + "initial_release_date": "2007-10-19", + "genre": [ + "Crime Fiction", + "War film", + "Crime Thriller", + "Historical period drama", + "Biographical film", + "Crime Drama", + "Gangster Film", + "True crime", + "Drama" + ], + "directed_by": [ + "Ridley Scott" + ], + "name": "American Gangster" + }, + { + "id": "/en/american_gun", + "initial_release_date": "2005-09-15", + "genre": [ + "Indie film", + "Drama" + ], + "directed_by": [ + "Aric Avelino" + ], + "name": "American Gun" + }, + { + "id": "/en/american_hardcore_2006", + "initial_release_date": "2006-03-11", + "genre": [ + "Music", + "Documentary film", + "Rockumentary", + "Punk rock", + "Biographical film" + ], + "directed_by": [ + "Paul Rachman" + ], + "name": "American Hardcore" + }, + { + "id": "/en/american_outlaws", + "initial_release_date": "2001-08-17", + "genre": [ + "Western", + "Costume drama", + "Action/Adventure", + "Action Film", + "Revisionist Western", + "Comedy Western", + "Comedy" + ], + "directed_by": [ + "Les Mayfield" + ], + "name": "American Outlaws" + }, + { + "id": "/en/american_pie_the_naked_mile", + "initial_release_date": "2006-12-07", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Joe Nussbaum" + ], + "name": "American Pie Presents: The Naked Mile" + }, + { + "id": "/en/american_pie_2", + "initial_release_date": "2001-08-06", + "genre": [ + "Romance Film", + "Comedy" + ], + "directed_by": [ + "James B. Rogers" + ], + "name": "American Pie 2" + }, + { + "id": "/en/american_pie_presents_band_camp", + "initial_release_date": "2005-10-31", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Steve Rash" + ], + "name": "American Pie Presents: Band Camp" + }, + { + "id": "/en/american_psycho_2000", + "initial_release_date": "2000-01-21", + "genre": [ + "Black comedy", + "Slasher", + "Thriller", + "Horror", + "Psychological thriller", + "Crime Fiction", + "Horror comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Mary Harron" + ], + "name": "American Psycho" + }, + { + "id": "/en/american_splendor_2003", + "initial_release_date": "2003-01-20", + "genre": [ + "Indie film", + "Biographical film", + "Comedy-drama", + "Marriage Drama", + "Comedy", + "Drama" + ], + "directed_by": [ + "Shari Springer Berman", + "Robert Pulcini" + ], + "name": "American Splendor" + }, + { + "id": "/en/american_wedding", + "initial_release_date": "2003-07-24", + "genre": [ + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Jesse Dylan" + ], + "name": "American Wedding" + }, + { + "id": "/en/americano_2005", + "initial_release_date": "2005-01-07", + "genre": [ + "Romance Film", + "Comedy", + "Drama" + ], + "directed_by": [ + "Kevin Noland" + ], + "name": "Americano" + }, + { + "id": "/en/amma_nanna_o_tamila_ammayi", + "initial_release_date": "2003-04-19", + "genre": [ + "Sports", + "Tollywood", + "World cinema", + "Drama" + ], + "directed_by": [ + "Puri Jagannadh" + ], + "name": "Amma Nanna O Tamila Ammayi" + }, + { + "id": "/en/amores_perros", + "initial_release_date": "2000-05-14", + "genre": [ + "Thriller", + "Drama" + ], + "directed_by": [ + "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu" + ], + "name": "Amores perros" + }, + { + "id": "/en/amrutham", + "initial_release_date": "2004-12-24", + "genre": [ + "Drama", + "Malayalam Cinema", + "World cinema" + ], + "directed_by": [ + "Sibi Malayil" + ], + "name": "Amrutham" + }, + { + "id": "/en/an_american_crime", + "initial_release_date": "2007-01-19", + "genre": [ + "Crime Fiction", + "Biographical film", + "Indie film", + "Drama" + ], + "directed_by": [ + "Tommy O'Haver" + ], + "name": "An American Crime" + }, + { + "id": "/en/an_american_haunting", + "initial_release_date": "2005-11-05", + "genre": [ + "Horror", + "Mystery", + "Thriller" + ], + "directed_by": [ + "Courtney Solomon" + ], + "name": "An American Haunting" + }, + { + "id": "/en/an_american_tail_the_mystery_of_the_night_monster", + "initial_release_date": "2000-07-25", + "genre": [ + "Fantasy", + "Animated cartoon", + "Animation", + "Music", + "Family", + "Adventure Film", + "Children's Fantasy", + "Children's/Family", + "Family-Oriented Adventure" + ], + "directed_by": [ + "Larry Latham" + ], + "name": "An American Tail: The Mystery of the Night Monster" + }, + { + "id": "/en/an_evening_with_kevin_smith", + "genre": [ + "Documentary film", + "Stand-up comedy", + "Indie film", + "Film & Television History", + "Comedy", + "Biographical film", + "Media studies" + ], + "directed_by": [ + "J.M. Kenny" + ], + "name": "An Evening with Kevin Smith" + }, + { + "id": "/en/an_evening_with_kevin_smith_2006", + "genre": [ + "Documentary film" + ], + "directed_by": [ + "J.M. Kenny" + ], + "name": "An Evening with Kevin Smith 2: Evening Harder" + }, + { + "id": "/en/an_everlasting_piece", + "initial_release_date": "2000-12-25", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Barry Levinson" + ], + "name": "An Everlasting Piece" + }, + { + "id": "/en/an_extremely_goofy_movie", + "initial_release_date": "2000-02-29", + "genre": [ + "Animation", + "Coming of age", + "Animated Musical", + "Children's/Family", + "Comedy" + ], + "directed_by": [ + "Ian Harrowell", + "Douglas McCarthy" + ], + "name": "An Extremely Goofy Movie" + }, + { + "id": "/en/an_inconvenient_truth", + "initial_release_date": "2006-01-24", + "genre": [ + "Documentary film" + ], + "directed_by": [ + "Davis Guggenheim" + ], + "name": "An Inconvenient Truth" + }, + { + "id": "/en/an_unfinished_life", + "initial_release_date": "2005-08-19", + "genre": [ + "Melodrama", + "Drama" + ], + "directed_by": [ + "Lasse Hallstr\u00f6m" + ], + "name": "An Unfinished Life" + }, + { + "id": "/en/anacondas_the_hunt_for_the_blood_orchid", + "initial_release_date": "2004-08-25", + "genre": [ + "Thriller", + "Adventure Film", + "Horror", + "Action Film", + "Action/Adventure", + "Natural horror film", + "Jungle Film" + ], + "directed_by": [ + "Dwight H. Little" + ], + "name": "Anacondas: The Hunt for the Blood Orchid" + }, + { + "id": "/en/anal_pick-up", + "genre": [ + "Pornographic film", + "Gay pornography" + ], + "directed_by": [ + "Decklin" + ], + "name": "Anal Pick-Up" + }, + { + "id": "/en/analyze_that", + "initial_release_date": "2002-12-06", + "genre": [ + "Buddy film", + "Crime Comedy", + "Gangster Film", + "Comedy" + ], + "directed_by": [ + "Harold Ramis" + ], + "name": "Analyze That" + }, + { + "id": "/en/anamorph", + "genre": [ + "Psychological thriller", + "Crime Fiction", + "Thriller", + "Mystery", + "Crime Thriller", + "Suspense" + ], + "directed_by": [ + "H.S. Miller" + ], + "name": "Anamorph" + }, + { + "id": "/en/anand_2004", + "initial_release_date": "2004-10-15", + "genre": [ + "Musical", + "Comedy", + "Drama", + "Musical comedy", + "Musical Drama", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Sekhar Kammula" + ], + "name": "Anand" + }, + { + "id": "/en/anbe_aaruyire", + "initial_release_date": "2005-08-15", + "genre": [ + "Romance Film", + "Tamil cinema", + "World cinema", + "Drama" + ], + "directed_by": [ + "S. J. Surya" + ], + "name": "Anbe Aaruyire" + }, + { + "id": "/en/anbe_sivam", + "initial_release_date": "2003-01-14", + "genre": [ + "Musical", + "Musical comedy", + "Comedy", + "Adventure Film", + "Tamil cinema", + "World cinema", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Sundar C." + ], + "name": "Love is God" + }, + { + "id": "/en/ancanar", + "genre": [ + "Fantasy", + "Adventure Film", + "Action/Adventure" + ], + "directed_by": [ + "Sam R. Balcomb", + "Raiya Corsiglia" + ], + "name": "Ancanar" + }, + { + "id": "/en/anchorman_the_legend_of_ron_burgundy", + "initial_release_date": "2004-06-28", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Adam McKay" + ], + "name": "Anchorman: The Legend of Ron Burgundy" + }, + { + "id": "/en/andaaz", + "initial_release_date": "2003-05-23", + "genre": [ + "Musical", + "Romance Film", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Raj Kanwar" + ], + "name": "Andaaz" + }, + { + "id": "/en/andarivaadu", + "initial_release_date": "2005-06-03", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Srinu Vaitla" + ], + "name": "Andarivaadu" + }, + { + "id": "/en/andhrawala", + "initial_release_date": "2004-01-01", + "genre": [ + "Adventure Film", + "Action Film", + "Tollywood", + "Drama" + ], + "directed_by": [ + "Puri Jagannadh", + "V.V.S. Ram" + ], + "name": "Andhrawala" + }, + { + "id": "/en/ang_tanging_ina", + "initial_release_date": "2003-05-28", + "genre": [ + "Comedy", + "Drama" + ], + "directed_by": [ + "Wenn V. Deramas" + ], + "name": "Ang Tanging Ina" + }, + { + "id": "/en/angel_eyes", + "initial_release_date": "2001-05-18", + "genre": [ + "Romance Film", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "Luis Mandoki" + ], + "name": "Angel Eyes" + }, + { + "id": "/en/angel-a", + "initial_release_date": "2005-12-21", + "genre": [ + "Romance Film", + "Fantasy", + "Comedy", + "Romantic comedy", + "Drama" + ], + "directed_by": [ + "Luc Besson" + ], + "name": "Angel-A" + }, + { + "id": "/en/angels_and_demons_2008", + "initial_release_date": "2009-05-04", + "genre": [ + "Thriller", + "Mystery", + "Crime Fiction" + ], + "directed_by": [ + "Ron Howard" + ], + "name": "Angels & Demons" + }, + { + "id": "/en/angels_and_virgins", + "initial_release_date": "2007-12-17", + "genre": [ + "Romance Film", + "Comedy", + "Adventure Film", + "Drama" + ], + "directed_by": [ + "David Leland" + ], + "name": "Virgin Territory" + }, + { + "id": "/en/angels_in_the_infield", + "initial_release_date": "2000-04-09", + "genre": [ + "Fantasy", + "Sports", + "Family", + "Children's/Family", + "Heavenly Comedy", + "Comedy" + ], + "directed_by": [ + "Robert King" + ], + "name": "Angels in the Infield" + }, + { + "id": "/en/anger_management_2003", + "initial_release_date": "2003-03-05", + "genre": [ + "Black comedy", + "Slapstick", + "Comedy" + ], + "directed_by": [ + "Peter Segal" + ], + "name": "Anger Management" + }, + { + "id": "/en/angli_the_movie", + "initial_release_date": "2005-05-28", + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction" + ], + "directed_by": [ + "Mario Busietta" + ], + "name": "Angli: The Movie" + }, + { + "id": "/en/animal_factory", + "initial_release_date": "2000-10-22", + "genre": [ + "Crime Fiction", + "Prison film", + "Drama" + ], + "directed_by": [ + "Steve Buscemi" + ], + "name": "Animal Factory" + }, + { + "id": "/en/anjaneya", + "initial_release_date": "2003-10-24", + "genre": [ + "Romance Film", + "Crime Fiction", + "Drama", + "World cinema", + "Tamil cinema" + ], + "directed_by": [ + "Maharajan", + "N.Maharajan" + ], + "name": "Anjaneya" + }, + { + "id": "/en/ankahee", + "initial_release_date": "2006-05-19", + "genre": [ + "Romance Film", + "Thriller", + "Drama" + ], + "directed_by": [ + "Vikram Bhatt" + ], + "name": "Ankahee" + }, + { + "id": "/en/annapolis_2006", + "genre": [ + "Romance Film", + "Sports", + "Drama" + ], + "directed_by": [ + "Justin Lin" + ], + "name": "Annapolis" + }, + { + "id": "/en/annavaram_2007", + "initial_release_date": "2006-12-29", + "genre": [ + "Thriller", + "Musical", + "Action Film", + "Romance Film", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Gridhar", + "Bhimaneni Srinivasa Rao", + "Sippy" + ], + "name": "Annavaram" + }, + { + "id": "/en/anniyan", + "initial_release_date": "2005-06-10", + "genre": [ + "Horror", + "Short Film", + "Psychological thriller", + "Thriller", + "Musical Drama", + "Action Film", + "Drama" + ], + "directed_by": [ + "S. Shankar" + ], + "name": "Anniyan" + }, + { + "id": "/en/another_gay_movie", + "initial_release_date": "2006-04-28", + "genre": [ + "Parody", + "Coming of age", + "LGBT", + "Gay Themed", + "Romantic comedy", + "Romance Film", + "Gay", + "Gay Interest", + "Sex comedy", + "Comedy", + "Pornographic film" + ], + "directed_by": [ + "Todd Stephens" + ], + "name": "Another Gay Movie" + }, + { + "id": "/en/ant_man", + "initial_release_date": "2015-07-17", + "genre": [ + "Thriller", + "Science Fiction", + "Action/Adventure", + "Superhero movie", + "Comedy" + ], + "directed_by": [ + "Peyton Reed" + ], + "name": "Ant-Man" + }, + { + "id": "/en/anthony_zimmer", + "initial_release_date": "2005-04-27", + "genre": [ + "Thriller", + "Romance Film", + "World cinema", + "Crime Thriller" + ], + "directed_by": [ + "J\u00e9r\u00f4me Salle" + ], + "name": "Anthony Zimmer" + }, + { + "id": "/en/antwone_fisher_2003", + "initial_release_date": "2002-09-12", + "genre": [ + "Romance Film", + "Biographical film", + "Drama" + ], + "directed_by": [ + "Denzel Washington" + ], + "name": "Antwone Fisher" + }, + { + "id": "/en/anukokunda_oka_roju", + "initial_release_date": "2005-06-30", + "genre": [ + "Thriller", + "Horror", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Chandra Sekhar Yeleti" + ], + "name": "Anukokunda Oka Roju" + }, + { + "id": "/en/anus_magillicutty", + "initial_release_date": "2003-04-15", + "genre": [ + "B movie", + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Morey Fineburgh" + ], + "name": "Anus Magillicutty" + }, + { + "id": "/en/any_way_the_wind_blows", + "initial_release_date": "2003-05-17", + "genre": [ + "Comedy-drama" + ], + "directed_by": [ + "Tom Barman" + ], + "name": "Any Way the Wind Blows" + }, + { + "id": "/en/anything_else", + "initial_release_date": "2003-08-27", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Woody Allen" + ], + "name": "Anything Else" + }, + { + "id": "/en/apasionados", + "initial_release_date": "2002-06-06", + "genre": [ + "Romantic comedy", + "Romance Film", + "World cinema", + "Comedy", + "Drama" + ], + "directed_by": [ + "Juan Jos\u00e9 Jusid" + ], + "name": "Apasionados" + }, + { + "id": "/en/apocalypto", + "initial_release_date": "2006-12-08", + "genre": [ + "Action Film", + "Adventure Film", + "Epic film", + "Thriller", + "Drama" + ], + "directed_by": [ + "Mel Gibson" + ], + "name": "Apocalypto" + }, + { + "id": "/en/aprils_shower", + "initial_release_date": "2006-01-13", + "genre": [ + "Romantic comedy", + "Indie film", + "Romance Film", + "LGBT", + "Gay", + "Gay Interest", + "Gay Themed", + "Sex comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Trish Doolan" + ], + "name": "April's Shower" + }, + { + "id": "/en/aquamarine_2006", + "initial_release_date": "2006-02-26", + "genre": [ + "Coming of age", + "Teen film", + "Romance Film", + "Family", + "Fantasy", + "Fantasy Comedy", + "Comedy" + ], + "directed_by": [ + "Elizabeth Allen Rosenbaum" + ], + "name": "Aquamarine" + }, + { + "id": "/en/arabian_nights", + "initial_release_date": "2000-04-30", + "genre": [ + "Family", + "Fantasy", + "Adventure Film" + ], + "directed_by": [ + "Steve Barron" + ], + "name": "Arabian Nights" + }, + { + "id": "/en/aragami", + "initial_release_date": "2003-03-27", + "genre": [ + "Thriller", + "Action/Adventure", + "World cinema", + "Japanese Movies", + "Action Film", + "Drama" + ], + "directed_by": [ + "Ryuhei Kitamura" + ], + "name": "Aragami" + }, + { + "id": "/en/arahan", + "initial_release_date": "2004-04-30", + "genre": [ + "Action Film", + "Comedy", + "Korean drama", + "East Asian cinema", + "World cinema" + ], + "directed_by": [ + "Ryoo Seung-wan" + ], + "name": "Arahan" + }, + { + "id": "/en/ararat", + "initial_release_date": "2002-05-20", + "genre": [ + "LGBT", + "Political drama", + "War film", + "Drama" + ], + "directed_by": [ + "Atom Egoyan" + ], + "name": "Ararat" + }, + { + "id": "/en/are_we_there_yet", + "initial_release_date": "2005-01-21", + "genre": [ + "Family", + "Adventure Film", + "Romance Film", + "Comedy", + "Drama" + ], + "directed_by": [ + "Brian Levant" + ], + "name": "Are We There Yet" + }, + { + "id": "/en/arinthum_ariyamalum", + "initial_release_date": "2005-05-20", + "genre": [ + "Crime Fiction", + "Family", + "Romance Film", + "Comedy", + "Tamil cinema", + "World cinema", + "Drama" + ], + "directed_by": [ + "Vishnuvardhan" + ], + "name": "Arinthum Ariyamalum" + }, + { + "id": "/en/arisan", + "initial_release_date": "2003-12-10", + "genre": [ + "Comedy", + "Drama" + ], + "directed_by": [ + "Nia Dinata" + ], + "name": "Arisan!" + }, + { + "id": "/en/arjun_2004", + "initial_release_date": "2004-08-18", + "genre": [ + "Action Film", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Gunasekhar", + "J. Hemambar" + ], + "name": "Arjun" + }, + { + "id": "/en/armaan", + "initial_release_date": "2003-05-16", + "genre": [ + "Romance Film", + "Family", + "Drama" + ], + "directed_by": [ + "Honey Irani" + ], + "name": "Armaan" + }, + { + "id": "/en/around_the_bend", + "initial_release_date": "2004-10-08", + "genre": [ + "Family Drama", + "Comedy-drama", + "Road movie", + "Drama" + ], + "directed_by": [ + "Jordan Roberts" + ], + "name": "Around the Bend" + }, + { + "id": "/en/around_the_world_in_80_days_2004", + "initial_release_date": "2004-06-13", + "genre": [ + "Adventure Film", + "Action Film", + "Family", + "Western", + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Frank Coraci" + ], + "name": "Around the World in 80 Days" + }, + { + "id": "/en/art_of_the_devil_2", + "initial_release_date": "2005-12-01", + "genre": [ + "Horror", + "Slasher", + "Fantasy", + "Mystery" + ], + "directed_by": [ + "Pasith Buranajan", + "Seree Phongnithi", + "Yosapong Polsap", + "Putipong Saisikaew", + "Art Thamthrakul", + "Kongkiat Khomsiri", + "Isara Nadee" + ], + "name": "Art of the Devil 2" + }, + { + "id": "/en/art_school_confidential", + "genre": [ + "Comedy-drama" + ], + "directed_by": [ + "Terry Zwigoff" + ], + "name": "Art School Confidential" + }, + { + "id": "/en/arul", + "initial_release_date": "2004-05-01", + "genre": [ + "Musical", + "Action Film", + "Tamil cinema", + "World cinema", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Hari" + ], + "name": "Arul" + }, + { + "id": "/en/arya_2007", + "initial_release_date": "2007-08-10", + "genre": [ + "Romance Film", + "Drama", + "Tamil cinema", + "World cinema" + ], + "directed_by": [ + "Balasekaran" + ], + "name": "Aarya" + }, + { + "id": "/en/arya_2004", + "initial_release_date": "2004-05-07", + "genre": [ + "Musical", + "Romance Film", + "Romantic comedy", + "Musical comedy", + "Comedy", + "Drama", + "Musical Drama", + "World cinema", + "Tollywood" + ], + "directed_by": [ + "Sukumar" + ], + "name": "Arya" + }, + { + "id": "/en/aryan_2006", + "initial_release_date": "2006-12-05", + "genre": [ + "Action Film", + "Drama" + ], + "directed_by": [ + "Abhishek Kapoor" + ], + "name": "Aryan: Unbreakable" + }, + { + "id": "/en/as_it_is_in_heaven", + "initial_release_date": "2004-08-20", + "genre": [ + "Musical", + "Comedy", + "Romance Film", + "Drama", + "Musical comedy", + "Musical Drama", + "World cinema" + ], + "directed_by": [ + "Kay Pollak" + ], + "name": "As It Is in Heaven" + }, + { + "id": "/en/ashok", + "initial_release_date": "2006-07-13", + "genre": [ + "Action Film", + "Romance Film", + "Drama", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Surender Reddy" + ], + "name": "Ashok" + }, + { + "id": "/en/ask_the_dust_2006", + "initial_release_date": "2006-02-02", + "genre": [ + "Historical period drama", + "Film adaptation", + "Romance Film", + "Drama" + ], + "directed_by": [ + "Robert Towne" + ], + "name": "Ask the Dust" + }, + { + "id": "/en/asoka", + "initial_release_date": "2001-09-13", + "genre": [ + "Action Film", + "Romance Film", + "War film", + "Epic film", + "Musical", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Santosh Sivan" + ], + "name": "Ashoka the Great" + }, + { + "id": "/en/assault_on_precinct_13_2005", + "initial_release_date": "2005-01-19", + "genre": [ + "Thriller", + "Action Film", + "Remake", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "Jean-Fran\u00e7ois Richet" + ], + "name": "Assault on Precinct 13" + }, + { + "id": "/en/astitva", + "initial_release_date": "2000-10-06", + "genre": [ + "Art film", + "Bollywood", + "World cinema", + "Drama" + ], + "directed_by": [ + "Mahesh Manjrekar" + ], + "name": "Astitva" + }, + { + "id": "/en/asylum_2005", + "initial_release_date": "2005-08-12", + "genre": [ + "Film adaptation", + "Romance Film", + "Thriller", + "Drama" + ], + "directed_by": [ + "David Mackenzie" + ], + "name": "Asylum" + }, + { + "id": "/en/atanarjuat", + "initial_release_date": "2001-05-13", + "genre": [ + "Fantasy", + "Drama" + ], + "directed_by": [ + "Zacharias Kunuk" + ], + "name": "Atanarjuat: The Fast Runner" + }, + { + "id": "/en/athadu", + "initial_release_date": "2005-08-10", + "genre": [ + "Action Film", + "Thriller", + "Musical", + "Romance Film", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Trivikram Srinivas" + ], + "name": "Athadu" + }, + { + "id": "/en/atl_2006", + "initial_release_date": "2006-03-28", + "genre": [ + "Coming of age", + "Comedy", + "Drama" + ], + "directed_by": [ + "Chris Robinson" + ], + "name": "ATL" + }, + { + "id": "/en/atlantis_the_lost_empire", + "initial_release_date": "2001-06-03", + "genre": [ + "Adventure Film", + "Science Fiction", + "Family", + "Animation" + ], + "directed_by": [ + "Gary Trousdale", + "Kirk Wise" + ], + "name": "Atlantis: The Lost Empire" + }, + { + "id": "/en/atonement_2007", + "initial_release_date": "2007-08-28", + "genre": [ + "Romance Film", + "War film", + "Mystery", + "Drama", + "Music" + ], + "directed_by": [ + "Joe Wright" + ], + "name": "Atonement" + }, + { + "id": "/en/attagasam", + "initial_release_date": "2004-11-12", + "genre": [ + "Action Film", + "Thriller", + "Tamil cinema", + "World cinema", + "Drama" + ], + "directed_by": [ + "Saran" + ], + "name": "Attahasam" + }, + { + "id": "/en/attila_2001", + "genre": [ + "Adventure Film", + "History", + "Action Film", + "War film", + "Historical fiction", + "Biographical film" + ], + "directed_by": [ + "Dick Lowry" + ], + "name": "Attila" + }, + { + "id": "/en/austin_powers_goldmember", + "initial_release_date": "2002-07-22", + "genre": [ + "Action Film", + "Crime Fiction", + "Comedy" + ], + "directed_by": [ + "Jay Roach" + ], + "name": "Austin Powers: Goldmember" + }, + { + "id": "/en/australian_rules", + "genre": [ + "Drama" + ], + "directed_by": [ + "Paul Goldman" + ], + "name": "Australian Rules" + }, + { + "id": "/en/auto", + "initial_release_date": "2007-02-16", + "genre": [ + "Action Film", + "Comedy", + "Tamil cinema", + "World cinema", + "Drama" + ], + "directed_by": [ + "Pushkar", + "Gayatri" + ], + "name": "Oram Po" + }, + { + "id": "/en/auto_focus", + "initial_release_date": "2002-09-08", + "genre": [ + "Biographical film", + "Indie film", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "Paul Schrader", + "Larry Karaszewski" + ], + "name": "Auto Focus" + }, + { + "id": "/en/autograph_2004", + "initial_release_date": "2004-02-14", + "genre": [ + "Musical", + "Romance Film", + "Drama", + "Musical Drama", + "Tamil cinema", + "World cinema" + ], + "directed_by": [ + "Cheran" + ], + "name": "Autograph" + }, + { + "id": "/en/avalon_2001", + "initial_release_date": "2001-01-20", + "genre": [ + "Science Fiction", + "Thriller", + "Action Film", + "Adventure Film", + "Fantasy", + "Drama" + ], + "directed_by": [ + "Mamoru Oshii" + ], + "name": "Avalon" + }, + { + "id": "/en/avatar_2009", + "initial_release_date": "2009-12-10", + "genre": [ + "Science Fiction", + "Adventure Film", + "Fantasy", + "Action Film" + ], + "directed_by": [ + "James Cameron" + ], + "name": "Avatar" + }, + { + "id": "/en/avenging_angelo", + "initial_release_date": "2002-08-30", + "genre": [ + "Action Film", + "Romance Film", + "Crime Fiction", + "Action/Adventure", + "Thriller", + "Romantic comedy", + "Crime Comedy", + "Gangster Film", + "Comedy" + ], + "directed_by": [ + "Martyn Burke" + ], + "name": "Avenging Angelo" + }, + { + "id": "/en/awake_2007", + "initial_release_date": "2007-11-30", + "genre": [ + "Thriller", + "Crime Fiction", + "Mystery" + ], + "directed_by": [ + "Joby Harold" + ], + "name": "Awake" + }, + { + "id": "/en/awara_paagal_deewana", + "initial_release_date": "2002-06-20", + "genre": [ + "Action Film", + "World cinema", + "Musical", + "Crime Fiction", + "Musical comedy", + "Comedy", + "Bollywood", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Vikram Bhatt" + ], + "name": "Awara Paagal Deewana" + }, + { + "id": "/en/awesome_i_fuckin_shot_that", + "initial_release_date": "2006-01-06", + "genre": [ + "Concert film", + "Rockumentary", + "Hip hop film", + "Documentary film", + "Indie film" + ], + "directed_by": [ + "Adam Yauch" + ], + "name": "Awesome; I Fuckin' Shot That!" + }, + { + "id": "/en/azumi", + "initial_release_date": "2003-05-10", + "genre": [ + "Action Film", + "Epic film", + "Adventure Film", + "Fantasy", + "Thriller" + ], + "directed_by": [ + "Ryuhei Kitamura" + ], + "name": "Azumi" + }, + { + "id": "/wikipedia/en_title/$00C6on_Flux_$0028film$0029", + "initial_release_date": "2005-12-01", + "genre": [ + "Science Fiction", + "Dystopia", + "Action Film", + "Thriller", + "Adventure Film" + ], + "directed_by": [ + "Karyn Kusama" + ], + "name": "\u00c6on Flux" + }, + { + "id": "/en/baabul", + "initial_release_date": "2006-12-08", + "genre": [ + "Musical", + "Family", + "Romance Film", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Ravi Chopra" + ], + "name": "Baabul" + }, + { + "id": "/en/baadasssss_cinema", + "initial_release_date": "2002-08-14", + "genre": [ + "Indie film", + "Documentary film", + "Blaxploitation film", + "Action/Adventure", + "Film & Television History", + "Biographical film" + ], + "directed_by": [ + "Isaac Julien" + ], + "name": "BaadAsssss Cinema" + }, + { + "id": "/en/baadasssss", + "initial_release_date": "2003-09-07", + "genre": [ + "Indie film", + "Biographical film", + "Docudrama", + "Historical period drama", + "Drama" + ], + "directed_by": [ + "Mario Van Peebles" + ], + "name": "Baadasssss!" + }, + { + "id": "/en/babel_2006", + "initial_release_date": "2006-05-23", + "genre": [ + "Indie film", + "Political drama", + "Drama" + ], + "directed_by": [ + "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu" + ], + "name": "Babel" + }, + { + "id": "/en/baby_boy", + "initial_release_date": "2001-06-21", + "genre": [ + "Coming of age", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "John Singleton" + ], + "name": "Baby Boy" + }, + { + "id": "/en/back_by_midnight", + "initial_release_date": "2005-01-25", + "genre": [ + "Prison film", + "Comedy" + ], + "directed_by": [ + "Harry Basil" + ], + "name": "Back by Midnight" + }, + { + "id": "/en/back_to_school_with_franklin", + "initial_release_date": "2003-08-19", + "genre": [ + "Family", + "Animation", + "Educational film" + ], + "directed_by": [ + "Arna Selznick" + ], + "name": "Back to School with Franklin" + }, + { + "id": "/en/bad_boys_ii", + "initial_release_date": "2003-07-09", + "genre": [ + "Action Film", + "Crime Fiction", + "Thriller", + "Comedy" + ], + "directed_by": [ + "Michael Bay" + ], + "name": "Bad Boys II" + }, + { + "id": "/wikipedia/ru_id/1598664", + "initial_release_date": "2002-04-26", + "genre": [ + "Spy film", + "Action/Adventure", + "Action Film", + "Thriller", + "Comedy" + ], + "directed_by": [ + "Joel Schumacher" + ], + "name": "Bad Company" + }, + { + "id": "/en/bad_education", + "initial_release_date": "2004-03-19", + "genre": [ + "Mystery", + "Drama" + ], + "directed_by": [ + "Pedro Almod\u00f3var" + ], + "name": "Bad Education" + }, + { + "id": "/en/bad_eggs", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Tony Martin" + ], + "name": "Bad Eggs" + }, + { + "id": "/en/bad_news_bears", + "initial_release_date": "2005-07-22", + "genre": [ + "Family", + "Sports", + "Comedy" + ], + "directed_by": [ + "Richard Linklater" + ], + "name": "Bad News Bears" + }, + { + "id": "/en/bad_santa", + "initial_release_date": "2003-11-26", + "genre": [ + "Black comedy", + "Crime Fiction", + "Comedy" + ], + "directed_by": [ + "Terry Zwigoff" + ], + "name": "Bad Santa" + }, + { + "id": "/en/badal", + "initial_release_date": "2000-02-11", + "genre": [ + "Musical", + "Romance Film", + "Crime Fiction", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Raj Kanwar" + ], + "name": "Badal" + }, + { + "id": "/en/baghdad_er", + "initial_release_date": "2006-08-29", + "genre": [ + "Documentary film", + "Culture & Society", + "War film", + "Biographical film" + ], + "directed_by": [ + "Jon Alpert", + "Matthew O'Neill" + ], + "name": "Baghdad ER" + }, + { + "id": "/en/baise_moi", + "initial_release_date": "2000-06-28", + "genre": [ + "Erotica", + "Thriller", + "Erotic thriller", + "Art film", + "Romance Film", + "Drama", + "Road movie" + ], + "directed_by": [ + "Virginie Despentes", + "Coralie Trinh Thi" + ], + "name": "Baise Moi" + }, + { + "id": "/en/bait_2000", + "initial_release_date": "2000-09-15", + "genre": [ + "Thriller", + "Crime Fiction", + "Adventure Film", + "Action Film", + "Action/Adventure", + "Crime Thriller", + "Comedy", + "Drama" + ], + "directed_by": [ + "Antoine Fuqua" + ], + "name": "Bait" + }, + { + "id": "/en/bala_2002", + "initial_release_date": "2002-12-13", + "genre": [ + "Drama", + "Tamil cinema", + "World cinema" + ], + "directed_by": [ + "Deepak" + ], + "name": "Bala" + }, + { + "id": "/en/ballistic_ecks_vs_sever", + "initial_release_date": "2002-09-20", + "genre": [ + "Spy film", + "Thriller", + "Action Film", + "Suspense", + "Action/Adventure", + "Action Thriller", + "Glamorized Spy Film" + ], + "directed_by": [ + "Wych Kaosayananda" + ], + "name": "Ballistic: Ecks vs. Sever" + }, + { + "id": "/en/balu_abcdefg", + "initial_release_date": "2005-01-06", + "genre": [ + "Romance Film", + "Tollywood", + "World cinema", + "Drama" + ], + "directed_by": [ + "A. Karunakaran" + ], + "name": "Balu ABCDEFG" + }, + { + "id": "/en/balzac_and_the_little_chinese_seamstress_2002", + "initial_release_date": "2002-05-16", + "genre": [ + "Romance Film", + "Comedy-drama", + "Biographical film", + "Drama" + ], + "directed_by": [ + "Dai Sijie" + ], + "name": "The Little Chinese Seamstress" + }, + { + "id": "/en/bambi_ii", + "initial_release_date": "2006-01-26", + "genre": [ + "Animation", + "Family", + "Adventure Film", + "Coming of age", + "Children's/Family", + "Family-Oriented Adventure" + ], + "directed_by": [ + "Brian Pimental" + ], + "name": "Bambi II" + }, + { + "id": "/en/bamboozled", + "initial_release_date": "2000-10-06", + "genre": [ + "Satire", + "Indie film", + "Music", + "Black comedy", + "Comedy-drama", + "Media Satire", + "Comedy", + "Drama" + ], + "directed_by": [ + "Spike Lee" + ], + "name": "Bamboozled" + }, + { + "id": "/en/bandidas", + "initial_release_date": "2006-01-18", + "genre": [ + "Western", + "Action Film", + "Crime Fiction", + "Buddy film", + "Comedy", + "Adventure Film" + ], + "directed_by": [ + "Espen Sandberg", + "Joachim R\u00f8nning" + ], + "name": "Bandidas" + }, + { + "id": "/en/bandits", + "initial_release_date": "2001-10-12", + "genre": [ + "Romantic comedy", + "Crime Fiction", + "Buddy film", + "Romance Film", + "Heist film", + "Comedy", + "Drama" + ], + "directed_by": [ + "Barry Levinson" + ], + "name": "Bandits" + }, + { + "id": "/en/bangaram", + "initial_release_date": "2006-05-03", + "genre": [ + "Action Film", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "Dharani" + ], + "name": "Bangaram" + }, + { + "id": "/en/bangkok_loco", + "initial_release_date": "2004-10-07", + "genre": [ + "Musical", + "Musical comedy", + "Comedy" + ], + "directed_by": [ + "Pornchai Hongrattanaporn" + ], + "name": "Bangkok Loco" + }, + { + "id": "/en/baran", + "initial_release_date": "2001-01-31", + "genre": [ + "Romance Film", + "Adventure Film", + "World cinema", + "Drama" + ], + "directed_by": [ + "Majid Majidi" + ], + "name": "Baran" + }, + { + "id": "/en/barbershop", + "initial_release_date": "2002-08-07", + "genre": [ + "Ensemble Film", + "Workplace Comedy", + "Comedy" + ], + "directed_by": [ + "Tim Story" + ], + "name": "Barbershop" + }, + { + "id": "/en/bareback_mountain", + "genre": [ + "Pornographic film", + "Gay pornography" + ], + "directed_by": [ + "Afton Nills" + ], + "name": "Bareback Mountain" + }, + { + "id": "/wikipedia/pt/Barnyard", + "initial_release_date": "2006-08-04", + "genre": [ + "Family", + "Animation", + "Comedy" + ], + "directed_by": [ + "Steve Oedekerk" + ], + "name": "Barnyard" + }, + { + "id": "/en/barricade_2007", + "genre": [ + "Slasher", + "Horror" + ], + "directed_by": [ + "Timo Rose" + ], + "name": "Barricade" + }, + { + "id": "/en/bas_itna_sa_khwaab_hai", + "initial_release_date": "2001-07-06", + "genre": [ + "Romance Film", + "Bollywood", + "World cinema" + ], + "directed_by": [ + "Goldie Behl" + ], + "name": "Bas Itna Sa Khwaab Hai" + }, + { + "id": "/en/basic_2003", + "initial_release_date": "2003-03-28", + "genre": [ + "Thriller", + "Action Film", + "Mystery" + ], + "directed_by": [ + "John McTiernan" + ], + "name": "Basic" + }, + { + "id": "/en/basic_emotions", + "directed_by": [ + "Thomas Moon", + "Julie Pham", + "Georgia Lee" + ], + "initial_release_date": "2004-09-09", + "name": "Basic emotions", + "genre": [ + "Drama" + ] + }, + { + "id": "/en/basic_instinct_2", + "directed_by": [ + "Michael Caton-Jones" + ], + "initial_release_date": "2006-03-31", + "name": "Basic Instinct 2", + "genre": [ + "Thriller", + "Erotic thriller", + "Psychological thriller", + "Mystery", + "Crime Fiction", + "Horror" + ] + }, + { + "id": "/en/batalla_en_el_cielo", + "directed_by": [ + "Carlos Reygadas" + ], + "initial_release_date": "2005-05-15", + "name": "Battle In Heaven", + "genre": [ + "Drama" + ] + }, + { + "id": "/en/batman_begins", + "directed_by": [ + "Christopher Nolan" + ], + "initial_release_date": "2005-06-10", + "name": "Batman Begins", + "genre": [ + "Action Film", + "Crime Fiction", + "Adventure Film", + "Film noir", + "Drama" + ] + }, + { + "id": "/en/batman_beyond_return_of_the_joker", + "directed_by": [ + "Curt Geda" + ], + "initial_release_date": "2000-12-12", + "name": "Batman Beyond: Return of the Joker", + "genre": [ + "Science Fiction", + "Animation", + "Superhero movie", + "Action Film" + ] + }, + { + "id": "/en/batman_dead_end", + "directed_by": [ + "Sandy Collora" + ], + "initial_release_date": "2003-07-19", + "name": "Batman: Dead End", + "genre": [ + "Indie film", + "Short Film", + "Fan film" + ] + }, + { + "id": "/en/batman_mystery_of_the_batwoman", + "directed_by": [ + "Curt Geda", + "Tim Maltby" + ], + "initial_release_date": "2003-10-21", + "name": "Batman: Mystery of the Batwoman", + "genre": [ + "Animated cartoon", + "Animation", + "Family", + "Superhero movie", + "Action/Adventure", + "Fantasy", + "Short Film", + "Fantasy Adventure" + ] + }, + { + "id": "/en/batoru_rowaiaru_ii_chinkonka", + "directed_by": [ + "Kenta Fukasaku", + "Kinji Fukasaku" + ], + "initial_release_date": "2003-07-05", + "name": "Battle Royale II: Requiem", + "genre": [ + "Thriller", + "Action Film", + "Science Fiction", + "Drama" + ] + }, + { + "id": "/en/battlefield_baseball", + "directed_by": [ + "Y\u016bdai Yamaguchi" + ], + "initial_release_date": "2003-07-19", + "name": "Battlefield Baseball", + "genre": [ + "Martial Arts Film", + "Horror", + "World cinema", + "Sports", + "Musical comedy", + "Japanese Movies", + "Horror comedy", + "Comedy" + ] + }, + { + "id": "/en/bbs_the_documentary", + "directed_by": [ + "Jason Scott Sadofsky" + ], + "name": "BBS: The Documentary", + "genre": [ + "Documentary film" + ] + }, + { + "id": "/en/be_cool", + "directed_by": [ + "F. Gary Gray" + ], + "initial_release_date": "2005-03-04", + "name": "Be Cool", + "genre": [ + "Crime Fiction", + "Crime Comedy", + "Comedy" + ] + }, + { + "id": "/en/be_kind_rewind", + "directed_by": [ + "Michel Gondry" + ], + "initial_release_date": "2008-01-20", + "name": "Be Kind Rewind", + "genre": [ + "Farce", + "Comedy of Errors", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/be_with_me", + "directed_by": [ + "Eric Khoo" + ], + "initial_release_date": "2005-05-12", + "name": "Be with Me", + "genre": [ + "Indie film", + "LGBT", + "World cinema", + "Art film", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/beah_a_black_woman_speaks", + "directed_by": [ + "Lisa Gay Hamilton" + ], + "initial_release_date": "2003-08-22", + "name": "Beah: A Black Woman Speaks", + "genre": [ + "Documentary film", + "History", + "Biographical film" + ] + }, + { + "id": "/en/beastly_boyz", + "directed_by": [ + "David DeCoteau" + ], + "name": "Beastly Boyz", + "genre": [ + "LGBT", + "Horror", + "B movie", + "Teen film" + ] + }, + { + "id": "/en/beauty_shop", + "directed_by": [ + "Bille Woodruff" + ], + "initial_release_date": "2005-03-24", + "name": "Beauty Shop", + "genre": [ + "Comedy" + ] + }, + { + "id": "/en/bedazzled_2000", + "directed_by": [ + "Harold Ramis" + ], + "initial_release_date": "2000-10-19", + "name": "Bedazzled", + "genre": [ + "Romantic comedy", + "Fantasy", + "Black comedy", + "Romance Film", + "Comedy" + ] + }, + { + "id": "/en/bee_movie", + "directed_by": [ + "Steve Hickner", + "Simon J. Smith" + ], + "initial_release_date": "2007-10-28", + "name": "Bee Movie", + "genre": [ + "Family", + "Adventure Film", + "Animation", + "Comedy" + ] + }, + { + "id": "/en/bee_season_2005", + "directed_by": [ + "David Siegel", + "Scott McGehee" + ], + "initial_release_date": "2005-11-11", + "name": "Bee Season", + "genre": [ + "Film adaptation", + "Coming of age", + "Family Drama", + "Drama" + ] + }, + { + "id": "/en/beer_league", + "directed_by": [ + "Frank Sebastiano" + ], + "initial_release_date": "2006-09-15", + "name": "Artie Lange's Beer League", + "genre": [ + "Sports", + "Indie film", + "Comedy" + ] + }, + { + "id": "/en/beer_the_movie", + "directed_by": [ + "Peter Hoare" + ], + "initial_release_date": "2006-05-16", + "name": "Beer: The Movie", + "genre": [ + "Indie film", + "Cult film", + "Parody", + "Bloopers & Candid Camera", + "Comedy" + ] + }, + { + "id": "/en/beerfest", + "directed_by": [ + "Jay Chandrasekhar" + ], + "initial_release_date": "2006-08-25", + "name": "Beerfest", + "genre": [ + "Absurdism", + "Comedy" + ] + }, + { + "id": "/en/before_night_falls_2001", + "directed_by": [ + "Julian Schnabel" + ], + "initial_release_date": "2000-09-03", + "name": "Before Night Falls", + "genre": [ + "LGBT", + "Gay Themed", + "Political drama", + "Gay", + "Gay Interest", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/before_sunset", + "directed_by": [ + "Richard Linklater" + ], + "initial_release_date": "2004-02-10", + "name": "Before Sunset", + "genre": [ + "Romance Film", + "Indie film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/behind_enemy_lines", + "directed_by": [ + "John Moore" + ], + "initial_release_date": "2001-11-17", + "name": "Behind Enemy Lines", + "genre": [ + "Thriller", + "Action Film", + "War film", + "Action/Adventure", + "Drama" + ] + }, + { + "id": "/en/behind_the_mask_2006", + "directed_by": [ + "Shannon Keith" + ], + "initial_release_date": "2006-03-21", + "name": "Behind the Mask", + "genre": [ + "Documentary film", + "Indie film", + "Political cinema", + "Crime Fiction" + ] + }, + { + "id": "/en/behind_the_sun_2001", + "directed_by": [ + "Walter Salles" + ], + "initial_release_date": "2001-09-06", + "name": "Behind the Sun", + "genre": [ + "Drama" + ] + }, + { + "id": "/en/being_cyrus", + "directed_by": [ + "Homi Adajania" + ], + "initial_release_date": "2005-11-08", + "name": "Being Cyrus", + "genre": [ + "Thriller", + "Black comedy", + "Mystery", + "Psychological thriller", + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/being_julia", + "directed_by": [ + "Istv\u00e1n Szab\u00f3" + ], + "initial_release_date": "2004-09-03", + "name": "Being Julia", + "genre": [ + "Romance Film", + "Romantic comedy", + "Comedy-drama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/bekhals_tears", + "directed_by": [ + "Lauand Omar" + ], + "name": "Bekhal's Tears", + "genre": [ + "Drama" + ] + }, + { + "id": "/en/believe_in_me", + "directed_by": [ + "Robert Collector" + ], + "name": "Believe in Me", + "genre": [ + "Sports", + "Family Drama", + "Family", + "Drama" + ] + }, + { + "id": "/en/belly_of_the_beast", + "directed_by": [ + "Ching Siu-tung" + ], + "initial_release_date": "2003-12-30", + "name": "Belly of the Beast", + "genre": [ + "Action Film", + "Thriller", + "Political thriller", + "Martial Arts Film", + "Action/Adventure", + "Crime Thriller", + "Action Thriller", + "Chinese Movies" + ] + }, + { + "id": "/en/bellyful", + "directed_by": [ + "Melvin Van Peebles" + ], + "initial_release_date": "2000-06-28", + "name": "Bellyful", + "genre": [ + "Indie film", + "Satire", + "Comedy" + ] + }, + { + "id": "/en/bend_it_like_beckham", + "directed_by": [ + "Gurinder Chadha" + ], + "initial_release_date": "2002-04-11", + "name": "Bend It Like Beckham", + "genre": [ + "Coming of age", + "Indie film", + "Teen film", + "Sports", + "Romance Film", + "Comedy-drama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/bendito_infierno", + "directed_by": [ + "Agust\u00edn D\u00edaz Yanes" + ], + "initial_release_date": "2001-11-28", + "name": "Don't Tempt Me", + "genre": [ + "Religious Film", + "Fantasy", + "Comedy" + ] + }, + { + "id": "/en/beneath", + "directed_by": [ + "Dagen Merrill" + ], + "initial_release_date": "2007-08-07", + "name": "Beneath", + "genre": [ + "Horror", + "Psychological thriller", + "Thriller", + "Supernatural", + "Crime Thriller" + ] + }, + { + "id": "/en/beneath_clouds", + "directed_by": [ + "Ivan Sen" + ], + "initial_release_date": "2002-02-08", + "name": "Beneath Clouds", + "genre": [ + "Indie film", + "Romance Film", + "Road movie", + "Social problem film", + "Drama" + ] + }, + { + "id": "/en/beowulf_2007", + "directed_by": [ + "Robert Zemeckis" + ], + "initial_release_date": "2007-11-05", + "name": "Beowulf", + "genre": [ + "Adventure Film", + "Computer Animation", + "Fantasy", + "Action Film", + "Animation" + ] + }, + { + "id": "/en/beowulf_grendel", + "directed_by": [ + "Sturla Gunnarsson" + ], + "initial_release_date": "2005-09-14", + "name": "Beowulf & Grendel", + "genre": [ + "Adventure Film", + "Action Film", + "Fantasy", + "Action/Adventure", + "Film adaptation", + "World cinema", + "Historical period drama", + "Mythological Fantasy", + "Drama" + ] + }, + { + "id": "/en/best_in_show", + "directed_by": [ + "Christopher Guest" + ], + "initial_release_date": "2000-09-08", + "name": "Best in Show", + "genre": [ + "Comedy" + ] + }, + { + "id": "/en/the_best_of_the_bloodiest_brawls_vol_1", + "directed_by": [], + "initial_release_date": "2006-03-14", + "name": "The Best of The Bloodiest Brawls, Vol. 1", + "genre": [ + "Sports" + ] + }, + { + "id": "/en/better_luck_tomorrow", + "directed_by": [ + "Justin Lin" + ], + "initial_release_date": "2003-04-11", + "name": "Better Luck Tomorrow", + "genre": [ + "Coming of age", + "Teen film", + "Crime Fiction", + "Crime Drama", + "Drama" + ] + }, + { + "id": "/en/bettie_page_dark_angel", + "directed_by": [ + "Nico B." + ], + "initial_release_date": "2004-02-11", + "name": "Bettie Page: Dark Angel", + "genre": [ + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/bewitched_2005", + "directed_by": [ + "Nora Ephron" + ], + "initial_release_date": "2005-06-24", + "name": "Bewitched", + "genre": [ + "Romantic comedy", + "Fantasy", + "Romance Film", + "Comedy" + ] + }, + { + "id": "/en/beyond_borders", + "directed_by": [ + "Martin Campbell" + ], + "initial_release_date": "2003-10-24", + "name": "Beyond Borders", + "genre": [ + "Adventure Film", + "Historical period drama", + "Romance Film", + "War film", + "Drama" + ] + }, + { + "id": "/en/beyond_re-animator", + "directed_by": [ + "Brian Yuzna" + ], + "initial_release_date": "2003-04-04", + "name": "Beyond Re-Animator", + "genre": [ + "Horror", + "Science Fiction", + "Comedy" + ] + }, + { + "id": "/en/beyond_the_sea", + "directed_by": [ + "Kevin Spacey" + ], + "initial_release_date": "2004-09-11", + "name": "Beyond the Sea", + "genre": [ + "Musical", + "Music", + "Biographical film", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/bhadra_2005", + "directed_by": [ + "Boyapati Srinu" + ], + "initial_release_date": "2005-05-12", + "name": "Bhadra", + "genre": [ + "Action Film", + "Tollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/bhageeradha", + "directed_by": [ + "Rasool Ellore" + ], + "initial_release_date": "2005-10-13", + "name": "Bhageeratha", + "genre": [ + "Drama", + "Tollywood", + "World cinema" + ] + }, + { + "id": "/en/bheema", + "directed_by": [ + "N. Lingusamy" + ], + "initial_release_date": "2008-01-14", + "name": "Bheemaa", + "genre": [ + "Action Film", + "Tamil cinema", + "World cinema" + ] + }, + { + "id": "/en/bhoot", + "directed_by": [ + "Ram Gopal Varma" + ], + "initial_release_date": "2003-05-17", + "name": "Bhoot", + "genre": [ + "Horror", + "Thriller", + "Bollywood", + "World cinema" + ] + }, + { + "id": "/en/bichhoo", + "directed_by": [ + "Guddu Dhanoa" + ], + "initial_release_date": "2000-07-07", + "name": "Bichhoo", + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction", + "Bollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/big_eden", + "directed_by": [ + "Thomas Bezucha" + ], + "initial_release_date": "2000-04-18", + "name": "Big Eden", + "genre": [ + "LGBT", + "Indie film", + "Romance Film", + "Comedy-drama", + "Gay", + "Gay Interest", + "Gay Themed", + "Romantic comedy", + "Drama" + ] + }, + { + "id": "/en/big_fat_liar", + "directed_by": [ + "Shawn Levy" + ], + "initial_release_date": "2002-02-02", + "name": "Big Fat Liar", + "genre": [ + "Family", + "Adventure Film", + "Comedy" + ] + }, + { + "id": "/en/big_fish", + "directed_by": [ + "Tim Burton" + ], + "initial_release_date": "2003-12-10", + "name": "Big Fish", + "genre": [ + "Fantasy", + "Adventure Film", + "War film", + "Comedy-drama", + "Film adaptation", + "Family Drama", + "Fantasy Comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/big_girls_dont_cry_2002", + "directed_by": [ + "Maria von Heland" + ], + "initial_release_date": "2002-10-24", + "name": "Big Girls Don't Cry", + "genre": [ + "World cinema", + "Melodrama", + "Teen film", + "Drama" + ] + }, + { + "id": "/en/big_man_little_love", + "directed_by": [ + "Handan \u0130pek\u00e7i" + ], + "initial_release_date": "2001-10-19", + "name": "Big Man, Little Love", + "genre": [ + "Drama" + ] + }, + { + "id": "/en/big_mommas_house", + "directed_by": [ + "Raja Gosnell" + ], + "initial_release_date": "2000-05-31", + "name": "Big Momma's House", + "genre": [ + "Action Film", + "Crime Fiction", + "Comedy" + ] + }, + { + "id": "/en/big_mommas_house_2", + "directed_by": [ + "John Whitesell" + ], + "initial_release_date": "2006-01-26", + "name": "Big Momma's House 2", + "genre": [ + "Crime Fiction", + "Slapstick", + "Action Film", + "Action/Adventure", + "Thriller", + "Farce", + "Comedy" + ] + }, + { + "id": "/en/big_toys_no_boys_2", + "directed_by": [ + "Trist\u00e1n" + ], + "name": "Big Toys, No Boys 2", + "genre": [ + "Pornographic film" + ] + }, + { + "id": "/en/big_trouble_2002", + "directed_by": [ + "Barry Sonnenfeld" + ], + "initial_release_date": "2002-04-05", + "name": "Big Trouble", + "genre": [ + "Crime Fiction", + "Black comedy", + "Action Film", + "Action/Adventure", + "Gangster Film", + "Comedy" + ] + }, + { + "id": "/en/bigger_than_the_sky", + "directed_by": [ + "Al Corley" + ], + "initial_release_date": "2005-02-18", + "name": "Bigger Than the Sky", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy-drama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/biggie_tupac", + "directed_by": [ + "Nick Broomfield" + ], + "initial_release_date": "2002-01-11", + "name": "Biggie & Tupac", + "genre": [ + "Documentary film", + "Hip hop film", + "Rockumentary", + "Indie film", + "Crime Fiction", + "True crime", + "Biographical film" + ] + }, + { + "id": "/en/bill_2007", + "directed_by": [ + "Bernie Goldmann", + "Melisa Wallick" + ], + "initial_release_date": "2007-09-08", + "name": "Meet Bill", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/billy_elliot", + "directed_by": [ + "Stephen Daldry" + ], + "initial_release_date": "2000-05-19", + "name": "Billy Elliot", + "genre": [ + "Comedy", + "Music", + "Drama" + ] + }, + { + "id": "/en/bionicle_3_web_of_shadows", + "directed_by": [ + "David Molina", + "Terry Shakespeare" + ], + "initial_release_date": "2005-10-11", + "name": "Bionicle 3: Web of Shadows", + "genre": [ + "Fantasy", + "Adventure Film", + "Animation", + "Family", + "Computer Animation", + "Science Fiction" + ] + }, + { + "id": "/en/bionicle_2_legends_of_metru_nui", + "directed_by": [ + "David Molina", + "Terry Shakespeare" + ], + "initial_release_date": "2004-10-19", + "name": "Bionicle 2: Legends of Metru Nui", + "genre": [ + "Fantasy", + "Adventure Film", + "Animation", + "Family", + "Computer Animation", + "Science Fiction", + "Children's Fantasy", + "Children's/Family", + "Fantasy Adventure" + ] + }, + { + "id": "/en/bionicle_mask_of_light", + "directed_by": [ + "David Molina", + "Terry Shakespeare" + ], + "initial_release_date": "2003-09-16", + "name": "Bionicle: Mask of Light: The Movie", + "genre": [ + "Family", + "Fantasy", + "Animation", + "Adventure Film", + "Computer Animation", + "Science Fiction", + "Children's Fantasy", + "Children's/Family", + "Fantasy Adventure" + ] + }, + { + "id": "/en/birth_2004", + "directed_by": [ + "Jonathan Glazer" + ], + "initial_release_date": "2004-09-08", + "name": "Birth", + "genre": [ + "Mystery", + "Indie film", + "Romance Film", + "Thriller", + "Drama" + ] + }, + { + "id": "/en/birthday_girl", + "directed_by": [ + "Jez Butterworth" + ], + "initial_release_date": "2002-02-01", + "name": "Birthday Girl", + "genre": [ + "Black comedy", + "Thriller", + "Indie film", + "Erotic thriller", + "Crime Fiction", + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/bite_me_fanboy", + "directed_by": [ + "Mat Nastos" + ], + "initial_release_date": "2005-06-01", + "name": "Bite Me, Fanboy", + "genre": [ + "Comedy" + ] + }, + { + "id": "/en/bitter_jester", + "directed_by": [ + "Maija DiGiorgio" + ], + "initial_release_date": "2003-02-26", + "name": "Bitter Jester", + "genre": [ + "Indie film", + "Documentary film", + "Stand-up comedy", + "Culture & Society", + "Comedy", + "Biographical film" + ] + }, + { + "id": "/en/black_2005", + "directed_by": [ + "Sanjay Leela Bhansali" + ], + "initial_release_date": "2005-02-04", + "name": "Black", + "genre": [ + "Family", + "Drama" + ] + }, + { + "id": "/en/black_and_white_2002", + "directed_by": [ + "Craig Lahiff" + ], + "initial_release_date": "2002-10-31", + "name": "Black and White", + "genre": [ + "Trial drama", + "Crime Fiction", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/black_book_2006", + "directed_by": [ + "Paul Verhoeven" + ], + "initial_release_date": "2006-09-01", + "name": "Black Book", + "genre": [ + "Thriller", + "War film", + "Drama" + ] + }, + { + "id": "/wikipedia/fr/Black_Christmas_$0028film$002C_2006$0029", + "directed_by": [ + "Glen Morgan" + ], + "initial_release_date": "2006-12-15", + "name": "Black Christmas", + "genre": [ + "Slasher", + "Teen film", + "Horror", + "Thriller" + ] + }, + { + "id": "/en/black_cloud", + "directed_by": [ + "Ricky Schroder" + ], + "initial_release_date": "2004-04-30", + "name": "Black Cloud", + "genre": [ + "Indie film", + "Sports", + "Drama" + ] + }, + { + "id": "/en/black_friday_1993", + "directed_by": [ + "Anurag Kashyap" + ], + "initial_release_date": "2004-05-20", + "name": "Black Friday", + "genre": [ + "Crime Fiction", + "Historical drama", + "Drama" + ] + }, + { + "id": "/en/black_hawk_down", + "directed_by": [ + "Ridley Scott" + ], + "initial_release_date": "2001-12-18", + "name": "Black Hawk Down", + "genre": [ + "War film", + "Action/Adventure", + "Action Film", + "History", + "Combat Films", + "Drama" + ] + }, + { + "id": "/en/black_hole_2006", + "directed_by": [ + "Tibor Tak\u00e1cs" + ], + "initial_release_date": "2006-06-10", + "name": "The Black Hole", + "genre": [ + "Science Fiction", + "Thriller", + "Television film" + ] + }, + { + "id": "/en/black_knight_2001", + "directed_by": [ + "Gil Junger" + ], + "initial_release_date": "2001-11-15", + "name": "Black Knight", + "genre": [ + "Time travel", + "Adventure Film", + "Costume drama", + "Science Fiction", + "Fantasy", + "Adventure Comedy", + "Fantasy Comedy", + "Comedy" + ] + }, + { + "id": "/en/blackball_2005", + "directed_by": [ + "Mel Smith" + ], + "initial_release_date": "2005-02-11", + "name": "Blackball", + "genre": [ + "Sports", + "Family Drama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/blackwoods", + "directed_by": [ + "Uwe Boll" + ], + "name": "Blackwoods", + "genre": [ + "Thriller", + "Crime Thriller", + "Psychological thriller", + "Drama" + ] + }, + { + "id": "/en/blade_ii", + "directed_by": [ + "Guillermo del Toro" + ], + "initial_release_date": "2002-03-21", + "name": "Blade II", + "genre": [ + "Thriller", + "Horror", + "Science Fiction", + "Action Film" + ] + }, + { + "id": "/en/blade_trinity", + "directed_by": [ + "David S. Goyer" + ], + "initial_release_date": "2004-12-07", + "name": "Blade: Trinity", + "genre": [ + "Thriller", + "Action Film", + "Horror", + "Action/Adventure", + "Superhero movie", + "Fantasy", + "Adventure Film", + "Action Thriller" + ] + }, + { + "id": "/en/bleach_memories_of_nobody", + "directed_by": [ + "Noriyuki Abe" + ], + "initial_release_date": "2006-12-16", + "name": "Bleach: Memories of Nobody", + "genre": [ + "Anime", + "Fantasy", + "Animation", + "Action Film", + "Adventure Film" + ] + }, + { + "id": "/en/bless_the_child", + "directed_by": [ + "Chuck Russell" + ], + "initial_release_date": "2000-08-11", + "name": "Bless the Child", + "genre": [ + "Horror", + "Crime Fiction", + "Drama", + "Thriller" + ] + }, + { + "id": "/en/blind_shaft", + "directed_by": [ + "Li Yang" + ], + "initial_release_date": "2003-02-12", + "name": "Blind Shaft", + "genre": [ + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/blissfully_yours", + "directed_by": [ + "Apichatpong Weerasethakul" + ], + "initial_release_date": "2002-05-17", + "name": "Blissfully Yours", + "genre": [ + "Erotica", + "Romance Film", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/blood_of_a_champion", + "directed_by": [ + "Lawrence Page" + ], + "initial_release_date": "2006-03-07", + "name": "Blood of a Champion", + "genre": [ + "Crime Fiction", + "Sports", + "Drama" + ] + }, + { + "id": "/en/blood_rain", + "directed_by": [ + "Kim Dae-seung" + ], + "initial_release_date": "2005-05-04", + "name": "Blood Rain", + "genre": [ + "Thriller", + "Mystery", + "East Asian cinema", + "World cinema" + ] + }, + { + "id": "/en/blood_work", + "directed_by": [ + "Clint Eastwood" + ], + "initial_release_date": "2002-08-09", + "name": "Blood Work", + "genre": [ + "Mystery", + "Crime Thriller", + "Thriller", + "Suspense", + "Crime Fiction", + "Detective fiction", + "Drama" + ] + }, + { + "id": "/en/bloodrayne_2006", + "directed_by": [ + "Uwe Boll" + ], + "initial_release_date": "2005-10-23", + "name": "BloodRayne", + "genre": [ + "Horror", + "Action Film", + "Fantasy", + "Adventure Film", + "Costume drama" + ] + }, + { + "id": "/en/bloodsport_ecws_most_violent_matches", + "directed_by": [], + "initial_release_date": "2006-02-07", + "name": "Bloodsport - ECW's Most Violent Matches", + "genre": [ + "Documentary film", + "Sports" + ] + }, + { + "id": "/en/bloody_sunday", + "directed_by": [ + "Paul Greengrass" + ], + "initial_release_date": "2002-01-16", + "name": "Bloody Sunday", + "genre": [ + "Political drama", + "Docudrama", + "Historical fiction", + "War film", + "Drama" + ] + }, + { + "id": "/en/blow", + "directed_by": [ + "Ted Demme" + ], + "initial_release_date": "2001-03-29", + "name": "Blow", + "genre": [ + "Biographical film", + "Crime Fiction", + "Film adaptation", + "Historical period drama", + "Drama" + ] + }, + { + "id": "/en/blue_car", + "directed_by": [ + "Karen Moncrieff" + ], + "initial_release_date": "2003-05-02", + "name": "Blue Car", + "genre": [ + "Indie film", + "Family Drama", + "Coming of age", + "Drama" + ] + }, + { + "id": "/en/blue_collar_comedy_tour_rides_again", + "directed_by": [ + "C. B. Harding" + ], + "initial_release_date": "2004-12-05", + "name": "Blue Collar Comedy Tour Rides Again", + "genre": [ + "Documentary film", + "Stand-up comedy", + "Comedy" + ] + }, + { + "id": "/en/blue_collar_comedy_tour_one_for_the_road", + "directed_by": [ + "C. B. Harding" + ], + "initial_release_date": "2006-06-27", + "name": "Blue Collar Comedy Tour: One for the Road", + "genre": [ + "Stand-up comedy", + "Concert film", + "Comedy" + ] + }, + { + "id": "/en/blue_collar_comedy_tour_the_movie", + "directed_by": [ + "C. B. Harding" + ], + "initial_release_date": "2003-03-28", + "name": "Blue Collar Comedy Tour: The Movie", + "genre": [ + "Stand-up comedy", + "Documentary film", + "Comedy" + ] + }, + { + "id": "/en/blue_crush", + "directed_by": [ + "John Stockwell" + ], + "initial_release_date": "2002-08-08", + "name": "Blue Crush", + "genre": [ + "Teen film", + "Romance Film", + "Sports", + "Drama" + ] + }, + { + "id": "/en/blue_gate_crossing", + "directed_by": [ + "Yee Chin-yen" + ], + "initial_release_date": "2002-09-08", + "name": "Blue Gate Crossing", + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/blue_milk", + "directed_by": [ + "William Grammer" + ], + "initial_release_date": "2006-06-20", + "name": "Blue Milk", + "genre": [ + "Indie film", + "Short Film", + "Fan film" + ] + }, + { + "id": "/en/blue_state", + "directed_by": [ + "Marshall Lewy" + ], + "name": "Blue State", + "genre": [ + "Indie film", + "Romance Film", + "Political cinema", + "Romantic comedy", + "Political satire", + "Road movie", + "Comedy" + ] + }, + { + "id": "/en/blueberry_2004", + "directed_by": [ + "Jan Kounen" + ], + "initial_release_date": "2004-02-11", + "name": "Blueberry", + "genre": [ + "Western", + "Thriller", + "Action Film", + "Adventure Film" + ] + }, + { + "id": "/en/blueprint_2003", + "directed_by": [ + "Rolf Sch\u00fcbel" + ], + "initial_release_date": "2003-12-08", + "name": "Blueprint", + "genre": [ + "Science Fiction", + "Drama" + ] + }, + { + "id": "/en/bluffmaster", + "directed_by": [ + "Rohan Sippy" + ], + "initial_release_date": "2005-12-16", + "name": "Bluffmaster!", + "genre": [ + "Romance Film", + "Musical", + "Crime Fiction", + "Romantic comedy", + "Musical comedy", + "Comedy", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/boa_vs_python", + "directed_by": [ + "David Flores" + ], + "initial_release_date": "2004-05-24", + "name": "Boa vs. Python", + "genre": [ + "Horror", + "Natural horror film", + "Monster", + "Science Fiction", + "Creature Film" + ] + }, + { + "id": "/en/bobby", + "directed_by": [ + "Emilio Estevez" + ], + "initial_release_date": "2006-09-05", + "name": "Bobby", + "genre": [ + "Political drama", + "Historical period drama", + "History", + "Drama" + ] + }, + { + "id": "/en/boiler_room", + "directed_by": [ + "Ben Younger" + ], + "initial_release_date": "2000-01-30", + "name": "Boiler Room", + "genre": [ + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/bolletjes_blues", + "directed_by": [ + "Brigit Hillenius", + "Karin Junger" + ], + "initial_release_date": "2006-03-23", + "name": "Bolletjes Blues", + "genre": [ + "Musical" + ] + }, + { + "id": "/en/bollywood_hollywood", + "directed_by": [ + "Deepa Mehta" + ], + "initial_release_date": "2002-10-25", + "name": "Bollywood/Hollywood", + "genre": [ + "Bollywood", + "Musical", + "Romance Film", + "Romantic comedy", + "Musical comedy", + "Comedy" + ] + }, + { + "id": "/en/bomb_the_system", + "directed_by": [ + "Adam Bhala Lough" + ], + "name": "Bomb the System", + "genre": [ + "Crime Fiction", + "Indie film", + "Coming of age", + "Drama" + ] + }, + { + "id": "/en/bommarillu", + "directed_by": [ + "Bhaskar" + ], + "initial_release_date": "2006-08-09", + "name": "Bommarillu", + "genre": [ + "Musical", + "Romance Film", + "Drama", + "Musical Drama", + "Tollywood", + "World cinema" + ] + }, + { + "id": "/en/bon_cop_bad_cop", + "directed_by": [ + "Eric Canuel" + ], + "name": "Bon Cop, Bad Cop", + "genre": [ + "Crime Fiction", + "Buddy film", + "Action Film", + "Action/Adventure", + "Thriller", + "Comedy" + ] + }, + { + "id": "/en/bones_2001", + "directed_by": [ + "Ernest R. Dickerson" + ], + "initial_release_date": "2001-10-26", + "name": "Bones", + "genre": [ + "Horror", + "Blaxploitation film", + "Action Film" + ] + }, + { + "id": "/en/bonjour_monsieur_shlomi", + "directed_by": [ + "Shemi Zarhin" + ], + "initial_release_date": "2003-04-03", + "name": "Bonjour Monsieur Shlomi", + "genre": [ + "World cinema", + "Family Drama", + "Comedy-drama", + "Coming of age", + "Family", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/boogeyman", + "directed_by": [ + "Stephen T. Kay" + ], + "initial_release_date": "2005-02-04", + "name": "Boogeyman", + "genre": [ + "Horror", + "Supernatural", + "Teen film", + "Thriller", + "Mystery", + "Drama" + ] + }, + { + "id": "/en/boogiepop_and_others_2000", + "directed_by": [ + "Ryu Kaneda" + ], + "initial_release_date": "2000-03-11", + "name": "Boogiepop and Others", + "genre": [ + "Animation", + "Fantasy", + "Anime", + "Thriller", + "Japanese Movies" + ] + }, + { + "id": "/en/book_of_love_2004", + "directed_by": [ + "Alan Brown" + ], + "initial_release_date": "2004-01-18", + "name": "Book of Love", + "genre": [ + "Indie film", + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/book_of_shadows_blair_witch_2", + "directed_by": [ + "Joe Berlinger" + ], + "initial_release_date": "2000-10-27", + "name": "Book of Shadows: Blair Witch 2", + "genre": [ + "Horror", + "Supernatural", + "Mystery", + "Psychological thriller", + "Slasher", + "Thriller", + "Ensemble Film", + "Crime Fiction" + ] + }, + { + "id": "/en/boomer", + "directed_by": [ + "Pyotr Buslov" + ], + "initial_release_date": "2003-08-02", + "name": "Bimmer", + "genre": [ + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/wikipedia/de_id/1782985", + "directed_by": [ + "Larry Charles" + ], + "initial_release_date": "2006-08-04", + "name": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", + "genre": [ + "Comedy" + ] + }, + { + "id": "/en/born_into_brothels_calcuttas_red_light_kids", + "directed_by": [ + "Zana Briski", + "Ross Kauffman" + ], + "initial_release_date": "2004-01-17", + "name": "Born into Brothels: Calcutta's Red Light Kids", + "genre": [ + "Documentary film" + ] + }, + { + "id": "/en/free_radicals", + "directed_by": [ + "Barbara Albert" + ], + "name": "Free Radicals", + "genre": [ + "World cinema", + "Romance Film", + "Art film", + "Drama" + ] + }, + { + "id": "/en/boss_2006", + "directed_by": [ + "V.N. Aditya" + ], + "initial_release_date": "2006-09-27", + "name": "Boss", + "genre": [ + "Musical", + "Romance Film", + "Drama", + "Musical Drama", + "Tollywood", + "World cinema" + ] + }, + { + "id": "/en/bossn_up", + "directed_by": [ + "Dylan C. Brown" + ], + "initial_release_date": "2005-06-01", + "name": "Boss'n Up", + "genre": [ + "Musical", + "Indie film", + "Crime Fiction", + "Musical Drama", + "Drama" + ] + }, + { + "id": "/en/bossa_nova_2000", + "directed_by": [ + "Bruno Barreto" + ], + "initial_release_date": "2000-02-18", + "name": "Bossa Nova", + "genre": [ + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/bosta", + "directed_by": [ + "Philippe Aractingi" + ], + "name": "Bosta", + "genre": [ + "Musical" + ] + }, + { + "id": "/en/bowling_for_columbine", + "directed_by": [ + "Michael Moore" + ], + "initial_release_date": "2002-05-15", + "name": "Bowling for Columbine", + "genre": [ + "Indie film", + "Documentary film", + "Political cinema", + "Historical Documentaries" + ] + }, + { + "id": "/en/bowling_fun_and_fundamentals_for_boys_and_girls", + "directed_by": [], + "name": "Bowling Fun And Fundamentals For Boys And Girls", + "genre": [ + "Documentary film", + "Sports" + ] + }, + { + "id": "/en/boy_eats_girl", + "directed_by": [ + "Stephen Bradley" + ], + "initial_release_date": "2005-04-06", + "name": "Boy Eats Girl", + "genre": [ + "Indie film", + "Horror", + "Teen film", + "Creature Film", + "Zombie Film", + "Horror comedy", + "Comedy" + ] + }, + { + "id": "/en/boynton_beach_club", + "directed_by": [ + "Susan Seidelman" + ], + "initial_release_date": "2006-08-04", + "name": "Boynton Beach Club", + "genre": [ + "Romantic comedy", + "Indie film", + "Romance Film", + "Comedy-drama", + "Slice of life", + "Ensemble Film", + "Comedy" + ] + }, + { + "id": "/en/boys_2003", + "directed_by": [ + "S. Shankar" + ], + "initial_release_date": "2003-08-29", + "name": "Boys", + "genre": [ + "Musical", + "Romance Film", + "Comedy", + "Tamil cinema", + "World cinema", + "Drama", + "Musical comedy", + "Musical Drama" + ] + }, + { + "id": "/en/brain_blockers", + "directed_by": [ + "Lincoln Kupchak" + ], + "initial_release_date": "2007-03-15", + "name": "Brain Blockers", + "genre": [ + "Horror", + "Zombie Film", + "Horror comedy", + "Comedy" + ] + }, + { + "id": "/en/breakin_all_the_rules", + "directed_by": [ + "Daniel Taplitz" + ], + "initial_release_date": "2004-05-14", + "name": "Breakin' All the Rules", + "genre": [ + "Romance Film", + "Romantic comedy", + "Comedy of Errors", + "Comedy" + ] + }, + { + "id": "/en/breaking_and_entering", + "directed_by": [ + "Anthony Minghella" + ], + "initial_release_date": "2006-09-13", + "name": "Breaking and Entering", + "genre": [ + "Romance Film", + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/brick_2006", + "directed_by": [ + "Rian Johnson" + ], + "initial_release_date": "2006-04-07", + "name": "Brick", + "genre": [ + "Film noir", + "Indie film", + "Teen film", + "Neo-noir", + "Mystery", + "Crime Thriller", + "Crime Fiction", + "Thriller", + "Detective fiction", + "Drama" + ] + }, + { + "id": "/en/bride_and_prejudice", + "directed_by": [ + "Gurinder Chadha" + ], + "initial_release_date": "2004-10-06", + "name": "Bride and Prejudice", + "genre": [ + "Musical", + "Romantic comedy", + "Romance Film", + "Film adaptation", + "Comedy of manners", + "Musical Drama", + "Musical comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/bridget_jones_the_edge_of_reason", + "directed_by": [ + "Beeban Kidron" + ], + "initial_release_date": "2004-11-08", + "name": "Bridget Jones: The Edge of Reason", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ] + }, + { + "id": "/en/bridget_joness_diary_2001", + "directed_by": [ + "Sharon Maguire" + ], + "initial_release_date": "2001-04-04", + "name": "Bridget Jones's Diary", + "genre": [ + "Romantic comedy", + "Film adaptation", + "Romance Film", + "Comedy of manners", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/brigham_city_2001", + "directed_by": [ + "Richard Dutcher" + ], + "name": "Brigham City", + "genre": [ + "Mystery", + "Indie film", + "Crime Fiction", + "Thriller", + "Crime Thriller", + "Drama" + ] + }, + { + "id": "/en/bright_young_things", + "directed_by": [ + "Stephen Fry" + ], + "initial_release_date": "2003-10-03", + "name": "Bright Young Things", + "genre": [ + "Indie film", + "War film", + "Comedy-drama", + "Historical period drama", + "Comedy of manners", + "Comedy", + "Drama" + ] + }, + { + "id": "/wikipedia/en_title/Brilliant_$0028film$0029", + "directed_by": [ + "Roger Cardinal" + ], + "initial_release_date": "2004-02-15", + "name": "Brilliant", + "genre": [ + "Thriller" + ] + }, + { + "id": "/en/bring_it_on", + "directed_by": [ + "Peyton Reed" + ], + "initial_release_date": "2000-08-22", + "name": "Bring It On", + "genre": [ + "Comedy", + "Sports" + ] + }, + { + "id": "/en/bring_it_on_again", + "directed_by": [ + "Damon Santostefano" + ], + "initial_release_date": "2004-01-13", + "name": "Bring It On Again", + "genre": [ + "Teen film", + "Sports", + "Comedy" + ] + }, + { + "id": "/en/bring_it_on_all_or_nothing", + "directed_by": [ + "Steve Rash" + ], + "initial_release_date": "2006-08-08", + "name": "Bring It On: All or Nothing", + "genre": [ + "Teen film", + "Sports", + "Comedy" + ] + }, + { + "id": "/en/bringing_down_the_house", + "directed_by": [ + "Adam Shankman" + ], + "initial_release_date": "2003-03-07", + "name": "Bringing Down the House", + "genre": [ + "Romantic comedy", + "Screwball comedy", + "Comedy of Errors", + "Crime Comedy", + "Comedy" + ] + }, + { + "id": "/en/broadway_the_golden_age", + "directed_by": [ + "Rick McKay" + ], + "initial_release_date": "2004-06-11", + "name": "Broadway: The Golden Age", + "genre": [ + "Documentary film", + "Biographical film" + ] + }, + { + "id": "/en/brokeback_mountain", + "directed_by": [ + "Ang Lee" + ], + "initial_release_date": "2005-09-02", + "name": "Brokeback Mountain", + "genre": [ + "Romance Film", + "Epic film", + "Drama" + ] + }, + { + "id": "/en/broken_allegiance", + "directed_by": [ + "Nick Hallam" + ], + "name": "Broken Allegiance", + "genre": [ + "Indie film", + "Short Film", + "Fan film" + ] + }, + { + "id": "/en/broken_flowers", + "directed_by": [ + "Jim Jarmusch" + ], + "initial_release_date": "2005-08-05", + "name": "Broken Flowers", + "genre": [ + "Mystery", + "Road movie", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/the_broken_hearts_club_a_romantic_comedy", + "directed_by": [ + "Greg Berlanti" + ], + "initial_release_date": "2000-01-29", + "name": "The Broken Hearts Club: A Romantic Comedy", + "genre": [ + "Romance Film", + "LGBT", + "Romantic comedy", + "Gay Themed", + "Indie film", + "Comedy-drama", + "Gay", + "Gay Interest", + "Ensemble Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/brooklyn_lobster", + "directed_by": [ + "Kevin Jordan" + ], + "initial_release_date": "2005-09-09", + "name": "Brooklyn Lobster", + "genre": [ + "Indie film", + "Family Drama", + "Comedy-drama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/brother", + "directed_by": [ + "Takeshi Kitano" + ], + "name": "Brother", + "genre": [ + "Thriller", + "Crime Fiction" + ] + }, + { + "id": "/en/brother_bear", + "directed_by": [ + "Aaron Blaise", + "Robert A. Walker" + ], + "initial_release_date": "2003-10-20", + "name": "Brother Bear", + "genre": [ + "Family", + "Fantasy", + "Animation", + "Adventure Film" + ] + }, + { + "id": "/en/brother_bear_2", + "directed_by": [ + "Ben Gluck" + ], + "initial_release_date": "2006-08-29", + "name": "Brother Bear 2", + "genre": [ + "Family", + "Animated cartoon", + "Fantasy", + "Adventure Film", + "Animation" + ] + }, + { + "id": "/en/brother_2", + "directed_by": [ + "Aleksei Balabanov" + ], + "initial_release_date": "2000-05-11", + "name": "Brother 2", + "genre": [ + "Crime Fiction", + "Thriller", + "Action Film" + ] + }, + { + "id": "/en/brotherhood_of_blood", + "directed_by": [ + "Michael Roesch", + "Peter Scheerer", + "Sid Haig" + ], + "name": "Brotherhood of Blood", + "genre": [ + "Horror", + "Cult film", + "Creature Film" + ] + }, + { + "id": "/en/brotherhood_of_the_wolf", + "directed_by": [ + "Christophe Gans" + ], + "initial_release_date": "2001-01-31", + "name": "Brotherhood of the Wolf", + "genre": [ + "Martial Arts Film", + "Adventure Film", + "Mystery", + "Science Fiction", + "Historical fiction", + "Thriller", + "Action Film" + ] + }, + { + "id": "/en/brothers_of_the_head", + "directed_by": [ + "Keith Fulton", + "Louis Pepe" + ], + "initial_release_date": "2005-09-10", + "name": "Brothers of the Head", + "genre": [ + "Indie film", + "Musical", + "Film adaptation", + "Music", + "Mockumentary", + "Comedy-drama", + "Historical period drama", + "Musical Drama", + "Drama" + ] + }, + { + "id": "/en/brown_sugar_2002", + "directed_by": [ + "Rick Famuyiwa" + ], + "initial_release_date": "2002-10-05", + "name": "Brown Sugar", + "genre": [ + "Musical", + "Romantic comedy", + "Coming of age", + "Romance Film", + "Musical Drama", + "Musical comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/bruce_almighty", + "directed_by": [ + "Tom Shadyac" + ], + "initial_release_date": "2003-05-23", + "name": "Bruce Almighty", + "genre": [ + "Comedy", + "Fantasy", + "Drama" + ] + }, + { + "id": "/en/bubba_ho-tep", + "directed_by": [ + "Don Coscarelli" + ], + "initial_release_date": "2002-06-09", + "name": "Bubba Ho-Tep", + "genre": [ + "Horror", + "Parody", + "Comedy", + "Mystery", + "Drama" + ] + }, + { + "id": "/en/bubble", + "directed_by": [ + "Steven Soderbergh" + ], + "initial_release_date": "2005-09-03", + "name": "Bubble", + "genre": [ + "Crime Fiction", + "Mystery", + "Indie film", + "Thriller", + "Drama" + ] + }, + { + "id": "/en/bubble_boy", + "directed_by": [ + "Blair Hayes" + ], + "initial_release_date": "2001-08-23", + "name": "Bubble Boy", + "genre": [ + "Romance Film", + "Teen film", + "Romantic comedy", + "Adventure Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/buddy_boy", + "directed_by": [ + "Mark Hanlon" + ], + "initial_release_date": "2000-03-24", + "name": "Buddy Boy", + "genre": [ + "Psychological thriller", + "Thriller", + "Indie film", + "Erotic thriller" + ] + }, + { + "id": "/en/buffalo_dreams", + "directed_by": [ + "David Jackson" + ], + "initial_release_date": "2005-03-11", + "name": "Buffalo Dreams", + "genre": [ + "Western", + "Teen film", + "Drama" + ] + }, + { + "id": "/en/buffalo_soldiers", + "directed_by": [ + "Gregor Jordan" + ], + "initial_release_date": "2001-09-08", + "name": "Buffalo Soldiers", + "genre": [ + "War film", + "Crime Fiction", + "Comedy", + "Thriller", + "Satire", + "Indie film", + "Drama" + ] + }, + { + "id": "/en/bug_2006", + "directed_by": [ + "William Friedkin" + ], + "initial_release_date": "2006-05-19", + "name": "Bug", + "genre": [ + "Thriller", + "Horror", + "Indie film", + "Drama" + ] + }, + { + "id": "/en/bulletproof_monk", + "directed_by": [ + "Paul Hunter" + ], + "initial_release_date": "2003-04-16", + "name": "Bulletproof Monk", + "genre": [ + "Martial Arts Film", + "Fantasy", + "Action Film", + "Buddy film", + "Thriller", + "Action/Adventure", + "Action Comedy", + "Comedy" + ] + }, + { + "id": "/en/bully_2001", + "directed_by": [ + "Larry Clark" + ], + "initial_release_date": "2001-06-15", + "name": "Bully", + "genre": [ + "Teen film", + "Crime Fiction", + "Thriller", + "Drama" + ] + }, + { + "id": "/en/bunny_2005", + "directed_by": [ + "V. V. Vinayak" + ], + "initial_release_date": "2005-04-06", + "name": "Bunny", + "genre": [ + "Musical", + "Romance Film", + "World cinema", + "Tollywood", + "Musical Drama", + "Drama" + ] + }, + { + "id": "/en/bunshinsaba", + "directed_by": [ + "Ahn Byeong-ki" + ], + "initial_release_date": "2004-05-14", + "name": "Bunshinsaba", + "genre": [ + "Horror", + "World cinema", + "East Asian cinema" + ] + }, + { + "id": "/en/bunty_aur_babli", + "directed_by": [ + "Shaad Ali" + ], + "initial_release_date": "2005-05-27", + "name": "Bunty Aur Babli", + "genre": [ + "Romance Film", + "Musical", + "World cinema", + "Musical comedy", + "Comedy", + "Adventure Film", + "Crime Fiction" + ] + }, + { + "id": "/en/onibus_174", + "directed_by": [ + "Jos\u00e9 Padilha" + ], + "initial_release_date": "2002-10-22", + "name": "Bus 174", + "genre": [ + "Documentary film", + "True crime" + ] + }, + { + "id": "/en/bus_conductor", + "directed_by": [ + "V. M. Vinu" + ], + "initial_release_date": "2005-12-23", + "name": "Bus Conductor", + "genre": [ + "Comedy", + "Action Film", + "Malayalam Cinema", + "World cinema", + "Drama" + ] + }, + { + "id": "/m/0bvs38", + "directed_by": [ + "Michael Votto" + ], + "name": "Busted Shoes and Broken Hearts: A Film About Lowlight", + "genre": [ + "Indie film", + "Documentary film" + ] + }, + { + "id": "/en/butterfly_2004", + "directed_by": [ + "Yan Yan Mak" + ], + "initial_release_date": "2004-09-04", + "name": "Butterfly", + "genre": [ + "LGBT", + "Chinese Movies", + "Drama" + ] + }, + { + "id": "/en/butterfly_on_a_wheel", + "directed_by": [ + "Mike Barker" + ], + "initial_release_date": "2007-02-10", + "name": "Butterfly on a Wheel", + "genre": [ + "Thriller", + "Crime Thriller", + "Crime Fiction", + "Psychological thriller", + "Drama" + ] + }, + { + "id": "/en/c_i_d_moosa", + "directed_by": [ + "Johny Antony" + ], + "initial_release_date": "2003-07-04", + "name": "C.I.D.Moosa", + "genre": [ + "Action Film", + "Comedy", + "Malayalam Cinema", + "World cinema" + ] + }, + { + "id": "/en/c_r_a_z_y", + "directed_by": [ + "Jean-Marc Vall\u00e9e" + ], + "initial_release_date": "2005-05-27", + "name": "C.R.A.Z.Y.", + "genre": [ + "LGBT", + "Indie film", + "Comedy-drama", + "Gay", + "Gay Interest", + "Gay Themed", + "Historical period drama", + "Coming of age", + "Drama" + ] + }, + { + "id": "/en/c_s_a_the_confederate_states_of_america", + "directed_by": [ + "Kevin Willmott" + ], + "name": "C.S.A.: The Confederate States of America", + "genre": [ + "Mockumentary", + "Satire", + "Black comedy", + "Parody", + "Indie film", + "Political cinema", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/cabaret_paradis", + "directed_by": [ + "Corinne Benizio", + "Gilles Benizio" + ], + "initial_release_date": "2006-04-12", + "name": "Cabaret Paradis", + "genre": [ + "Comedy" + ] + }, + { + "id": "/wikipedia/it_id/335645", + "directed_by": [ + "Michael Haneke" + ], + "initial_release_date": "2005-05-14", + "name": "Cach\u00e9", + "genre": [ + "Thriller", + "Mystery", + "Psychological thriller", + "Drama" + ] + }, + { + "id": "/en/cactuses", + "directed_by": [ + "Matt Hannon", + "Rick Rapoza" + ], + "initial_release_date": "2006-03-15", + "name": "Cactuses", + "genre": [ + "Drama" + ] + }, + { + "id": "/en/cadet_kelly", + "directed_by": [ + "Larry Shaw" + ], + "initial_release_date": "2002-03-08", + "name": "Cadet Kelly", + "genre": [ + "Teen film", + "Coming of age", + "Family", + "Comedy" + ] + }, + { + "id": "/en/caffeine_2006", + "directed_by": [ + "John Cosgrove" + ], + "name": "Caffeine", + "genre": [ + "Romantic comedy", + "Romance Film", + "Indie film", + "Ensemble Film", + "Workplace Comedy", + "Comedy" + ] + }, + { + "id": "/wikipedia/es_id/1062610", + "directed_by": [ + "Nisha Ganatra", + "Jennifer Arzt" + ], + "name": "Cake", + "genre": [ + "Romantic comedy", + "Short Film", + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/calcutta_mail", + "directed_by": [ + "Sudhir Mishra" + ], + "initial_release_date": "2003-06-30", + "name": "Calcutta Mail", + "genre": [ + "Thriller", + "Bollywood", + "World cinema" + ] + }, + { + "id": "/en/can_you_hack_it", + "directed_by": [ + "Sam Bozzo" + ], + "name": "Hackers Wanted", + "genre": [ + "Indie film", + "Documentary film" + ] + }, + { + "id": "/en/candy_2006", + "directed_by": [ + "Neil Armfield" + ], + "initial_release_date": "2006-04-27", + "name": "Candy", + "genre": [ + "Romance Film", + "Indie film", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/caotica_ana", + "directed_by": [ + "Julio Medem" + ], + "initial_release_date": "2007-08-24", + "name": "Ca\u00f3tica Ana", + "genre": [ + "Romance Film", + "Mystery", + "Drama" + ] + }, + { + "id": "/en/capote", + "directed_by": [ + "Bennett Miller" + ], + "initial_release_date": "2005-09-02", + "name": "Capote", + "genre": [ + "Crime Fiction", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/capturing_the_friedmans", + "directed_by": [ + "Andrew Jarecki" + ], + "initial_release_date": "2003-01-17", + "name": "Capturing the Friedmans", + "genre": [ + "Documentary film", + "Mystery", + "Biographical film" + ] + }, + { + "id": "/en/care_bears_journey_to_joke_a_lot", + "directed_by": [ + "Mike Fallows" + ], + "initial_release_date": "2004-10-05", + "name": "Care Bears: Journey to Joke-a-lot", + "genre": [ + "Musical", + "Computer Animation", + "Animation", + "Children's Fantasy", + "Children's/Family", + "Musical comedy", + "Comedy", + "Family" + ] + }, + { + "id": "/en/cargo_2006", + "directed_by": [ + "Clive Gordon" + ], + "initial_release_date": "2006-01-24", + "name": "Cargo", + "genre": [ + "Thriller", + "Psychological thriller", + "Indie film", + "Adventure Film", + "Drama" + ] + }, + { + "id": "/en/cars", + "directed_by": [ + "John Lasseter", + "Joe Ranft" + ], + "initial_release_date": "2006-03-14", + "name": "Cars", + "genre": [ + "Animation", + "Family", + "Adventure Film", + "Sports", + "Comedy" + ] + }, + { + "id": "/en/casanova", + "directed_by": [ + "Lasse Hallstr\u00f6m" + ], + "initial_release_date": "2005-09-03", + "name": "Casanova", + "genre": [ + "Romance Film", + "Romantic comedy", + "Costume drama", + "Adventure Film", + "Historical period drama", + "Swashbuckler film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/case_of_evil", + "directed_by": [ + "Graham Theakston" + ], + "initial_release_date": "2002-10-25", + "name": "Sherlock: Case of Evil", + "genre": [ + "Mystery", + "Action Film", + "Adventure Film", + "Thriller", + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/cast_away", + "initial_release_date": "2000-12-07", + "name": "Cast Away", + "directed_by": [ + "Robert Zemeckis" + ], + "genre": [ + "Airplanes and airports", + "Adventure Film", + "Action/Adventure", + "Drama" + ] + }, + { + "id": "/en/castlevania_2007", + "name": "Castlevania", + "directed_by": [ + "Paul W. S. Anderson", + "Sylvain White" + ], + "genre": [ + "Action Film", + "Horror" + ] + }, + { + "id": "/en/catch_me_if_you_can", + "initial_release_date": "2002-12-16", + "name": "Catch Me If You Can", + "directed_by": [ + "Steven Spielberg" + ], + "genre": [ + "Crime Fiction", + "Comedy", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/catch_that_kid", + "initial_release_date": "2004-02-06", + "name": "Catch That Kid", + "directed_by": [ + "Bart Freundlich" + ], + "genre": [ + "Teen film", + "Adventure Film", + "Crime Fiction", + "Family", + "Caper story", + "Children's/Family", + "Crime Comedy", + "Family-Oriented Adventure", + "Comedy" + ] + }, + { + "id": "/en/caterina_in_the_big_city", + "initial_release_date": "2003-10-24", + "name": "Caterina in the Big City", + "directed_by": [ + "Paolo Virz\u00ec" + ], + "genre": [ + "Comedy", + "Drama" + ] + }, + { + "id": "/en/cats_dogs", + "initial_release_date": "2001-07-04", + "name": "Cats & Dogs", + "directed_by": [ + "Lawrence Guterman" + ], + "genre": [ + "Adventure Film", + "Family", + "Action Film", + "Children's/Family", + "Fantasy Adventure", + "Fantasy Comedy", + "Comedy" + ] + }, + { + "id": "/en/catwoman_2004", + "initial_release_date": "2004-07-19", + "name": "Catwoman", + "directed_by": [ + "Pitof" + ], + "genre": [ + "Action Film", + "Crime Fiction", + "Fantasy", + "Action/Adventure", + "Thriller", + "Superhero movie" + ] + }, + { + "id": "/en/caved_in_prehistoric_terror", + "initial_release_date": "2006-01-07", + "name": "Caved In: Prehistoric Terror", + "directed_by": [ + "Richard Pepin" + ], + "genre": [ + "Science Fiction", + "Horror", + "Natural horror film", + "Monster", + "Fantasy", + "Television film", + "Creature Film", + "Sci-Fi Horror" + ] + }, + { + "id": "/en/cellular", + "initial_release_date": "2004-09-10", + "name": "Cellular", + "directed_by": [ + "David R. Ellis" + ], + "genre": [ + "Thriller", + "Action Film", + "Crime Thriller", + "Action/Adventure" + ] + }, + { + "id": "/en/center_stage", + "initial_release_date": "2000-05-12", + "name": "Center Stage", + "directed_by": [ + "Nicholas Hytner" + ], + "genre": [ + "Teen film", + "Dance film", + "Musical", + "Musical Drama", + "Ensemble Film", + "Drama" + ] + }, + { + "id": "/en/chai_lai", + "initial_release_date": "2006-01-26", + "name": "Chai Lai", + "directed_by": [ + "Poj Arnon" + ], + "genre": [ + "Action Film", + "Martial Arts Film", + "Comedy" + ] + }, + { + "id": "/en/chain_2004", + "name": "Chain", + "directed_by": [ + "Jem Cohen" + ], + "genre": [ + "Documentary film" + ] + }, + { + "id": "/en/chakram_2005", + "initial_release_date": "2005-03-25", + "name": "Chakram", + "directed_by": [ + "Krishna Vamsi" + ], + "genre": [ + "Romance Film", + "Drama", + "Tollywood", + "World cinema" + ] + }, + { + "id": "/en/challenger_2007", + "name": "Challenger", + "directed_by": [ + "Philip Kaufman" + ], + "genre": [ + "Drama" + ] + }, + { + "id": "/en/chalo_ishq_ladaaye", + "initial_release_date": "2002-12-27", + "name": "Chalo Ishq Ladaaye", + "directed_by": [ + "Aziz Sejawal" + ], + "genre": [ + "Romance Film", + "Comedy", + "Bollywood", + "World cinema" + ] + }, + { + "id": "/en/chalte_chalte", + "initial_release_date": "2003-06-12", + "name": "Chalte Chalte", + "directed_by": [ + "Aziz Mirza" + ], + "genre": [ + "Romance Film", + "Musical", + "Bollywood", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/chameli", + "initial_release_date": "2003-12-31", + "name": "Chameli", + "directed_by": [ + "Sudhir Mishra", + "Anant Balani" + ], + "genre": [ + "Romance Film", + "Bollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/chandni_bar", + "initial_release_date": "2001-09-28", + "name": "Chandni Bar", + "directed_by": [ + "Madhur Bhandarkar" + ], + "genre": [ + "Crime Fiction", + "Bollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/chandramukhi", + "initial_release_date": "2005-04-13", + "name": "Chandramukhi", + "directed_by": [ + "P. Vasu" + ], + "genre": [ + "Horror", + "World cinema", + "Musical", + "Horror comedy", + "Musical comedy", + "Comedy", + "Fantasy", + "Romance Film" + ] + }, + { + "id": "/en/changing_lanes", + "initial_release_date": "2002-04-07", + "name": "Changing Lanes", + "directed_by": [ + "Roger Michell" + ], + "genre": [ + "Thriller", + "Psychological thriller", + "Melodrama", + "Drama" + ] + }, + { + "id": "/en/chaos_2007", + "initial_release_date": "2005-12-15", + "name": "Chaos", + "directed_by": [ + "Tony Giglio" + ], + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction", + "Heist film", + "Action/Adventure", + "Drama" + ] + }, + { + "id": "/en/chaos_2005", + "initial_release_date": "2005-08-10", + "name": "Chaos", + "directed_by": [ + "David DeFalco" + ], + "genre": [ + "Horror", + "Teen film", + "B movie", + "Slasher" + ] + }, + { + "id": "/en/chaos_and_creation_at_abbey_road", + "initial_release_date": "2006-01-27", + "name": "Chaos and Creation at Abbey Road", + "directed_by": [ + "Simon Hilton" + ], + "genre": [ + "Musical" + ] + }, + { + "id": "/en/chaos_theory_2007", + "name": "Chaos Theory", + "directed_by": [ + "Marcos Siega" + ], + "genre": [ + "Romance Film", + "Romantic comedy", + "Comedy-drama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/chapter_27", + "initial_release_date": "2007-01-25", + "name": "Chapter 27", + "directed_by": [ + "Jarrett Schaefer" + ], + "genre": [ + "Indie film", + "Crime Fiction", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/charlie_and_the_chocolate_factory_2005", + "initial_release_date": "2005-07-10", + "name": "Charlie and the Chocolate Factory", + "directed_by": [ + "Tim Burton" + ], + "genre": [ + "Fantasy", + "Remake", + "Adventure Film", + "Family", + "Children's Fantasy", + "Children's/Family", + "Comedy" + ] + }, + { + "id": "/en/charlies_angels", + "initial_release_date": "2000-10-22", + "name": "Charlie's Angels", + "directed_by": [ + "Joseph McGinty Nichol" + ], + "genre": [ + "Action Film", + "Crime Fiction", + "Comedy", + "Adventure Film", + "Thriller" + ] + }, + { + "id": "/en/charlies_angels_full_throttle", + "initial_release_date": "2003-06-18", + "name": "Charlie's Angels: Full Throttle", + "directed_by": [ + "Joseph McGinty Nichol" + ], + "genre": [ + "Martial Arts Film", + "Action Film", + "Adventure Film", + "Crime Fiction", + "Action/Adventure", + "Action Comedy", + "Comedy" + ] + }, + { + "id": "/en/charlotte_gray", + "initial_release_date": "2001-12-17", + "name": "Charlotte Gray", + "directed_by": [ + "Gillian Armstrong" + ], + "genre": [ + "Romance Film", + "War film", + "Political drama", + "Historical period drama", + "Film adaptation", + "Drama" + ] + }, + { + "id": "/en/charlottes_web", + "initial_release_date": "2006-12-07", + "name": "Charlotte's Web", + "directed_by": [ + "Gary Winick" + ], + "genre": [ + "Animation", + "Family", + "Comedy" + ] + }, + { + "id": "/en/chasing_liberty", + "initial_release_date": "2004-01-07", + "name": "Chasing Liberty", + "directed_by": [ + "Andy Cadiff" + ], + "genre": [ + "Romantic comedy", + "Teen film", + "Romance Film", + "Road movie", + "Comedy" + ] + }, + { + "id": "/en/chasing_papi", + "initial_release_date": "2003-04-16", + "name": "Chasing Papi", + "directed_by": [ + "Linda Mendoza" + ], + "genre": [ + "Romance Film", + "Romantic comedy", + "Farce", + "Chase Movie", + "Comedy" + ] + }, + { + "id": "/en/chasing_sleep", + "initial_release_date": "2001-09-16", + "name": "Chasing Sleep", + "directed_by": [ + "Michael Walker" + ], + "genre": [ + "Mystery", + "Psychological thriller", + "Surrealism", + "Thriller", + "Indie film", + "Suspense", + "Crime Thriller" + ] + }, + { + "id": "/en/chasing_the_horizon", + "initial_release_date": "2006-04-26", + "name": "Chasing the Horizon", + "directed_by": [ + "Markus Canter", + "Mason Canter" + ], + "genre": [ + "Documentary film", + "Auto racing" + ] + }, + { + "id": "/en/chathikkatha_chanthu", + "initial_release_date": "2004-04-14", + "name": "Chathikkatha Chanthu", + "directed_by": [ + "Meccartin" + ], + "genre": [ + "Comedy", + "Malayalam Cinema", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/chatrapati", + "initial_release_date": "2005-09-25", + "name": "Chhatrapati", + "directed_by": [ + "S. S. Rajamouli" + ], + "genre": [ + "Action Film", + "Tollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/cheaper_by_the_dozen_2003", + "initial_release_date": "2003-12-25", + "name": "Cheaper by the Dozen", + "directed_by": [ + "Shawn Levy" + ], + "genre": [ + "Family", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/cheaper_by_the_dozen_2", + "initial_release_date": "2005-12-21", + "name": "Cheaper by the Dozen 2", + "directed_by": [ + "Adam Shankman" + ], + "genre": [ + "Family", + "Adventure Film", + "Domestic Comedy", + "Comedy" + ] + }, + { + "id": "/en/checking_out_2005", + "initial_release_date": "2005-04-10", + "name": "Checking Out", + "directed_by": [ + "Jeff Hare" + ], + "genre": [ + "Black comedy", + "Comedy" + ] + }, + { + "id": "/en/chellamae", + "initial_release_date": "2004-09-10", + "name": "Chellamae", + "directed_by": [ + "Gandhi Krishna" + ], + "genre": [ + "Romance Film", + "Tamil cinema", + "World cinema" + ] + }, + { + "id": "/en/chemman_chaalai", + "name": "Chemman Chaalai", + "directed_by": [ + "Deepak Kumaran Menon" + ], + "genre": [ + "Tamil cinema", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/chennaiyil_oru_mazhai_kaalam", + "name": "Chennaiyil Oru Mazhai Kaalam", + "directed_by": [ + "Prabhu Deva" + ], + "genre": [] + }, + { + "id": "/en/cher_the_farewell_tour_live_in_miami", + "initial_release_date": "2003-08-26", + "name": "The Farewell Tour", + "directed_by": [ + "Dorina Sanchez", + "David Mallet" + ], + "genre": [ + "Music video" + ] + }, + { + "id": "/en/cherry_falls", + "initial_release_date": "2000-07-29", + "name": "Cherry Falls", + "directed_by": [ + "Geoffrey Wright" + ], + "genre": [ + "Satire", + "Slasher", + "Indie film", + "Horror", + "Horror comedy", + "Comedy" + ] + }, + { + "id": "/wikipedia/en_title/Chess_$00282006_film$0029", + "initial_release_date": "2006-07-07", + "name": "Chess", + "directed_by": [ + "RajBabu" + ], + "genre": [ + "Crime Fiction", + "Thriller", + "Action Film", + "Comedy", + "Malayalam Cinema", + "World cinema" + ] + }, + { + "id": "/en/chica_de_rio", + "initial_release_date": "2003-04-11", + "name": "Girl from Rio", + "directed_by": [ + "Christopher Monger" + ], + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ] + }, + { + "id": "/en/chicago_2002", + "initial_release_date": "2002-12-10", + "name": "Chicago", + "directed_by": [ + "Rob Marshall" + ], + "genre": [ + "Musical", + "Crime Fiction", + "Comedy", + "Musical comedy" + ] + }, + { + "id": "/en/chicken_little", + "initial_release_date": "2005-10-30", + "name": "Chicken Little", + "directed_by": [ + "Mark Dindal" + ], + "genre": [ + "Animation", + "Adventure Film", + "Comedy" + ] + }, + { + "id": "/en/chicken_run", + "initial_release_date": "2000-06-21", + "name": "Chicken Run", + "directed_by": [ + "Peter Lord", + "Nick Park" + ], + "genre": [ + "Family", + "Animation", + "Comedy" + ] + }, + { + "id": "/en/child_marriage_2005", + "name": "Child Marriage", + "directed_by": [ + "Neeraj Kumar" + ], + "genre": [ + "Documentary film" + ] + }, + { + "id": "/en/children_of_men", + "initial_release_date": "2006-09-03", + "name": "Children of Men", + "directed_by": [ + "Alfonso Cuar\u00f3n" + ], + "genre": [ + "Thriller", + "Action Film", + "Science Fiction", + "Dystopia", + "Doomsday film", + "Future noir", + "Mystery", + "Adventure Film", + "Film adaptation", + "Action Thriller", + "Drama" + ] + }, + { + "id": "/en/children_of_the_corn_revelation", + "initial_release_date": "2001-10-09", + "name": "Children of the Corn: Revelation", + "directed_by": [ + "Guy Magar" + ], + "genre": [ + "Horror", + "Supernatural", + "Cult film" + ] + }, + { + "id": "/en/children_of_the_living_dead", + "name": "Children of the Living Dead", + "directed_by": [ + "Tor Ramsey" + ], + "genre": [ + "Indie film", + "Teen film", + "Horror", + "Zombie Film", + "Horror comedy" + ] + }, + { + "id": "/en/chinthamani_kolacase", + "initial_release_date": "2006-03-31", + "name": "Chinthamani Kolacase", + "directed_by": [ + "Shaji Kailas" + ], + "genre": [ + "Horror", + "Mystery", + "Crime Fiction", + "Action Film", + "Thriller", + "Malayalam Cinema", + "World cinema" + ] + }, + { + "id": "/en/chips_2008", + "name": "CHiPs", + "directed_by": [], + "genre": [ + "Musical", + "Children's/Family" + ] + }, + { + "id": "/en/chithiram_pesuthadi", + "initial_release_date": "2006-02-10", + "name": "Chithiram Pesuthadi", + "directed_by": [ + "Mysskin" + ], + "genre": [ + "Romance Film", + "Tamil cinema", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/chocolat_2000", + "initial_release_date": "2000-12-15", + "name": "Chocolat", + "directed_by": [ + "Lasse Hallstr\u00f6m" + ], + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/choose_your_own_adventure_the_abominable_snowman", + "initial_release_date": "2006-07-25", + "name": "Choose Your Own Adventure The Abominable Snowman", + "directed_by": [ + "Bob Doucette" + ], + "genre": [ + "Adventure Film", + "Family", + "Children's/Family", + "Family-Oriented Adventure", + "Animation" + ] + }, + { + "id": "/en/chopin_desire_for_love", + "initial_release_date": "2002-03-01", + "name": "Chopin: Desire for Love", + "directed_by": [ + "Jerzy Antczak" + ], + "genre": [ + "Biographical film", + "Romance Film", + "Music", + "Drama" + ] + }, + { + "id": "/en/chopper", + "initial_release_date": "2000-08-03", + "name": "Chopper", + "directed_by": [ + "Andrew Dominik" + ], + "genre": [ + "Biographical film", + "Crime Fiction", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/chori_chori_2003", + "initial_release_date": "2003-08-01", + "name": "Chori Chori", + "directed_by": [ + "Milan Luthria" + ], + "genre": [ + "Romance Film", + "Musical", + "Romantic comedy", + "Musical comedy", + "Comedy", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/chori_chori_chupke_chupke", + "initial_release_date": "2001-03-09", + "name": "Chori Chori Chupke Chupke", + "directed_by": [ + "Abbas Burmawalla", + "Mustan Burmawalla" + ], + "genre": [ + "Romance Film", + "Musical", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/christinas_house", + "initial_release_date": "2000-02-24", + "name": "Christina's House", + "directed_by": [ + "Gavin Wilding" + ], + "genre": [ + "Thriller", + "Mystery", + "Horror", + "Teen film", + "Slasher", + "Psychological thriller", + "Drama" + ] + }, + { + "id": "/en/christmas_with_the_kranks", + "initial_release_date": "2004-11-24", + "name": "Christmas with the Kranks", + "directed_by": [ + "Joe Roth" + ], + "genre": [ + "Christmas movie", + "Family", + "Film adaptation", + "Slapstick", + "Holiday Film", + "Comedy" + ] + }, + { + "id": "/en/chromophobia", + "initial_release_date": "2005-05-21", + "name": "Chromophobia", + "directed_by": [ + "Martha Fiennes" + ], + "genre": [ + "Family Drama", + "Drama" + ] + }, + { + "id": "/en/chubby_killer", + "name": "Chubby Killer", + "directed_by": [ + "Reuben Rox" + ], + "genre": [ + "Slasher", + "Indie film", + "Horror" + ] + }, + { + "id": "/en/chukkallo_chandrudu", + "initial_release_date": "2006-01-14", + "name": "Chukkallo Chandrudu", + "directed_by": [ + "Siva Kumar" + ], + "genre": [ + "Comedy", + "Tollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/chup_chup_ke", + "initial_release_date": "2006-06-09", + "name": "Chup Chup Ke", + "directed_by": [ + "Priyadarshan", + "Kookie Gulati" + ], + "genre": [ + "Romantic comedy", + "Comedy", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/church_ball", + "initial_release_date": "2006-03-17", + "name": "Church Ball", + "directed_by": [ + "Kurt Hale" + ], + "genre": [ + "Family", + "Sports", + "Comedy" + ] + }, + { + "id": "/en/churchill_the_hollywood_years", + "initial_release_date": "2004-12-03", + "name": "Churchill: The Hollywood Years", + "directed_by": [ + "Peter Richardson" + ], + "genre": [ + "Satire", + "Comedy" + ] + }, + { + "id": "/en/cinderella_iii", + "initial_release_date": "2007-02-06", + "name": "Cinderella III: A Twist in Time", + "directed_by": [ + "Frank Nissen" + ], + "genre": [ + "Family", + "Animated cartoon", + "Fantasy", + "Romance Film", + "Animation", + "Children's/Family" + ] + }, + { + "id": "/en/cinderella_man", + "initial_release_date": "2005-05-23", + "name": "Cinderella Man", + "directed_by": [ + "Ron Howard" + ], + "genre": [ + "Biographical film", + "Historical period drama", + "Romance Film", + "Sports", + "Drama" + ] + }, + { + "id": "/en/cinemania", + "name": "Cinemania", + "directed_by": [ + "Angela Christlieb", + "Stephen Kijak" + ], + "genre": [ + "Documentary film", + "Culture & Society" + ] + }, + { + "id": "/en/city_of_ghosts", + "initial_release_date": "2003-03-27", + "name": "City of Ghosts", + "directed_by": [ + "Matt Dillon" + ], + "genre": [ + "Thriller", + "Crime Fiction", + "Crime Thriller", + "Drama" + ] + }, + { + "id": "/en/city_of_god", + "initial_release_date": "2002-05-18", + "name": "City of God", + "directed_by": [ + "Fernando Meirelles" + ], + "genre": [ + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/claustrophobia_2003", + "name": "Claustrophobia", + "directed_by": [ + "Mark Tapio Kines" + ], + "genre": [ + "Slasher", + "Horror" + ] + }, + { + "id": "/en/clean", + "initial_release_date": "2004-03-27", + "name": "Clean", + "directed_by": [ + "Olivier Assayas" + ], + "genre": [ + "Music", + "Drama" + ] + }, + { + "id": "/en/clear_cut_the_story_of_philomath_oregon", + "initial_release_date": "2006-01-20", + "name": "Clear Cut: The Story of Philomath, Oregon", + "directed_by": [ + "Peter Richardson" + ], + "genre": [ + "Documentary film" + ] + }, + { + "id": "/en/clerks_ii", + "initial_release_date": "2006-05-26", + "name": "Clerks II", + "directed_by": [ + "Kevin Smith" + ], + "genre": [ + "Buddy film", + "Workplace Comedy", + "Comedy" + ] + }, + { + "id": "/en/click", + "initial_release_date": "2006-06-22", + "name": "Click", + "directed_by": [ + "Frank Coraci" + ], + "genre": [ + "Comedy", + "Fantasy", + "Drama" + ] + }, + { + "id": "/en/clockstoppers", + "initial_release_date": "2002-03-29", + "name": "Clockstoppers", + "directed_by": [ + "Jonathan Frakes" + ], + "genre": [ + "Science Fiction", + "Teen film", + "Family", + "Thriller", + "Adventure Film", + "Comedy" + ] + }, + { + "id": "/en/closer_2004", + "initial_release_date": "2004-12-03", + "name": "Closer", + "directed_by": [ + "Mike Nichols" + ], + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/closing_the_ring", + "initial_release_date": "2007-09-14", + "name": "Closing the Ring", + "directed_by": [ + "Richard Attenborough" + ], + "genre": [ + "War film", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/club_dread", + "initial_release_date": "2004-02-27", + "name": "Club Dread", + "directed_by": [ + "Jay Chandrasekhar" + ], + "genre": [ + "Parody", + "Horror", + "Slasher", + "Black comedy", + "Indie film", + "Horror comedy", + "Comedy" + ] + }, + { + "id": "/en/coach_carter", + "initial_release_date": "2005-01-13", + "name": "Coach Carter", + "directed_by": [ + "Thomas Carter" + ], + "genre": [ + "Coming of age", + "Sports", + "Docudrama", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/coast_guard_2002", + "initial_release_date": "2002-11-14", + "name": "The Coast Guard", + "directed_by": [ + "Kim Ki-duk" + ], + "genre": [ + "Action Film", + "War film", + "East Asian cinema", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/code_46", + "initial_release_date": "2004-05-07", + "name": "Code 46", + "directed_by": [ + "Michael Winterbottom" + ], + "genre": [ + "Science Fiction", + "Thriller", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/codename_kids_next_door_operation_z_e_r_o", + "initial_release_date": "2006-01-13", + "name": "Codename: Kids Next Door: Operation Z.E.R.O.", + "directed_by": [ + "Tom Warburton" + ], + "genre": [ + "Science Fiction", + "Animation", + "Adventure Film", + "Family", + "Comedy", + "Crime Fiction" + ] + }, + { + "id": "/en/coffee_and_cigarettes", + "initial_release_date": "2003-09-05", + "name": "Coffee and Cigarettes", + "directed_by": [ + "Jim Jarmusch" + ], + "genre": [ + "Music", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/cold_creek_manor", + "initial_release_date": "2003-09-19", + "name": "Cold Creek Manor", + "directed_by": [ + "Mike Figgis" + ], + "genre": [ + "Thriller", + "Mystery", + "Psychological thriller", + "Crime Thriller", + "Drama" + ] + }, + { + "id": "/en/cold_mountain", + "initial_release_date": "2003-12-25", + "name": "Cold Mountain", + "directed_by": [ + "Anthony Minghella" + ], + "genre": [ + "War film", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/cold_showers", + "initial_release_date": "2005-05-22", + "name": "Cold Showers", + "directed_by": [ + "Antony Cordier" + ], + "genre": [ + "Coming of age", + "LGBT", + "World cinema", + "Gay Themed", + "Teen film", + "Erotic Drama", + "Drama" + ] + }, + { + "id": "/en/collateral", + "initial_release_date": "2004-08-05", + "name": "Collateral", + "directed_by": [ + "Michael Mann" + ], + "genre": [ + "Thriller", + "Crime Fiction", + "Crime Thriller", + "Film noir", + "Drama" + ] + }, + { + "id": "/en/collateral_damage_2002", + "initial_release_date": "2002-02-04", + "name": "Collateral Damage", + "directed_by": [ + "Andrew Davis" + ], + "genre": [ + "Action Film", + "Thriller", + "Drama" + ] + }, + { + "id": "/en/comedian_2002", + "initial_release_date": "2002-10-11", + "name": "Comedian", + "directed_by": [ + "Christian Charles" + ], + "genre": [ + "Indie film", + "Documentary film", + "Stand-up comedy", + "Comedy", + "Biographical film" + ] + }, + { + "id": "/en/coming_out_2006", + "name": "Coming Out", + "directed_by": [ + "Joel Zwick" + ], + "genre": [ + "Comedy", + "Drama" + ] + }, + { + "id": "/en/commitments", + "initial_release_date": "2001-05-04", + "name": "Commitments", + "directed_by": [ + "Carol Mayes" + ], + "genre": [ + "Romantic comedy", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/common_ground_2000", + "initial_release_date": "2000-01-29", + "name": "Common Ground", + "directed_by": [ + "Donna Deitch" + ], + "genre": [ + "LGBT", + "Drama" + ] + }, + { + "id": "/en/company_2002", + "initial_release_date": "2002-04-15", + "name": "Company", + "directed_by": [ + "Ram Gopal Varma" + ], + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction", + "Bollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/confessions_of_a_dangerous_mind", + "name": "Confessions of a Dangerous Mind", + "directed_by": [ + "George Clooney" + ], + "genre": [ + "Biographical film", + "Thriller", + "Crime Fiction", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/confessions_of_a_teenage_drama_queen", + "initial_release_date": "2004-02-17", + "genre": [ + "Family", + "Teen film", + "Musical comedy", + "Romantic comedy" + ], + "directed_by": [ + "Sara Sugarman" + ], + "name": "Confessions of a Teenage Drama Queen" + }, + { + "id": "/en/confetti_2006", + "initial_release_date": "2006-05-05", + "genre": [ + "Mockumentary", + "Romantic comedy", + "Romance Film", + "Parody", + "Music", + "Comedy" + ], + "directed_by": [ + "Debbie Isitt" + ], + "name": "Confetti" + }, + { + "id": "/en/confidence_2004", + "initial_release_date": "2003-01-20", + "genre": [ + "Thriller", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "James Foley" + ], + "name": "Confidence" + }, + { + "id": "/en/connie_and_carla", + "initial_release_date": "2004-04-16", + "genre": [ + "LGBT", + "Buddy film", + "Comedy of Errors", + "Comedy" + ], + "directed_by": [ + "Michael Lembeck" + ], + "name": "Connie and Carla" + }, + { + "id": "/en/conspiracy_2001", + "initial_release_date": "2001-05-19", + "genre": [ + "History", + "War film", + "Political drama", + "Historical period drama", + "Drama" + ], + "directed_by": [ + "Frank Pierson" + ], + "name": "Conspiracy" + }, + { + "id": "/en/constantine_2005", + "initial_release_date": "2005-02-08", + "genre": [ + "Horror", + "Fantasy", + "Action Film" + ], + "directed_by": [ + "Francis Lawrence" + ], + "name": "Constantine" + }, + { + "id": "/en/control_room", + "genre": [ + "Documentary film", + "Political cinema", + "Culture & Society", + "War film", + "Journalism", + "Media studies" + ], + "directed_by": [ + "Jehane Noujaim" + ], + "name": "Control Room" + }, + { + "id": "/en/control_the_ian_curtis_film", + "initial_release_date": "2007-05-17", + "genre": [ + "Biographical film", + "Indie film", + "Musical", + "Japanese Movies", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Anton Corbijn" + ], + "name": "Control" + }, + { + "id": "/en/cope_2005", + "initial_release_date": "2007-01-23", + "genre": [ + "Horror", + "B movie" + ], + "directed_by": [ + "Ronald Jackson", + "Ronald Jerry" + ], + "name": "Cope" + }, + { + "id": "/en/copying_beethoven", + "initial_release_date": "2006-07-30", + "genre": [ + "Biographical film", + "Music", + "Historical fiction", + "Drama" + ], + "directed_by": [ + "Agnieszka Holland" + ], + "name": "Copying Beethoven" + }, + { + "id": "/en/corporate", + "initial_release_date": "2006-07-07", + "genre": [ + "Drama" + ], + "directed_by": [ + "Madhur Bhandarkar" + ], + "name": "Corporate" + }, + { + "id": "/en/corpse_bride", + "initial_release_date": "2005-09-07", + "genre": [ + "Fantasy", + "Animation", + "Musical", + "Romance Film" + ], + "directed_by": [ + "Tim Burton", + "Mike Johnson" + ], + "name": "Corpse Bride" + }, + { + "id": "/en/covert_one_the_hades_factor", + "genre": [ + "Thriller", + "Action Film", + "Action/Adventure" + ], + "directed_by": [ + "Mick Jackson" + ], + "name": "Covert One: The Hades Factor" + }, + { + "id": "/en/cow_belles", + "initial_release_date": "2006-03-24", + "genre": [ + "Family", + "Television film", + "Teen film", + "Romantic comedy", + "Comedy" + ], + "directed_by": [ + "Francine McDougall" + ], + "name": "Cow Belles" + }, + { + "id": "/en/cowards_bend_the_knee", + "initial_release_date": "2003-02-26", + "genre": [ + "Silent film", + "Indie film", + "Surrealism", + "Romance Film", + "Experimental film", + "Crime Fiction", + "Avant-garde", + "Drama" + ], + "directed_by": [ + "Guy Maddin" + ], + "name": "Cowards Bend the Knee" + }, + { + "id": "/en/cowboy_bebop_the_movie", + "initial_release_date": "2001-09-01", + "genre": [ + "Anime", + "Science Fiction", + "Action Film", + "Animation", + "Comedy", + "Crime Fiction" + ], + "directed_by": [ + "Shinichir\u014d Watanabe" + ], + "name": "Cowboy Bebop: The Movie" + }, + { + "id": "/en/coyote_ugly", + "initial_release_date": "2000-07-31", + "genre": [ + "Musical", + "Romance Film", + "Comedy", + "Drama", + "Musical comedy", + "Musical Drama" + ], + "directed_by": [ + "David McNally" + ], + "name": "Coyote Ugly" + }, + { + "id": "/en/crackerjack_2002", + "initial_release_date": "2002-11-07", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Paul Moloney" + ], + "name": "Crackerjack" + }, + { + "id": "/en/cradle_2_the_grave", + "initial_release_date": "2003-02-28", + "genre": [ + "Martial Arts Film", + "Thriller", + "Action Film", + "Crime Fiction", + "Buddy film", + "Action Thriller", + "Adventure Film", + "Crime" + ], + "directed_by": [ + "Andrzej Bartkowiak" + ], + "name": "Cradle 2 the Grave" + }, + { + "id": "/en/cradle_of_fear", + "genre": [ + "Horror", + "B movie", + "Slasher" + ], + "directed_by": [ + "Alex Chandon" + ], + "name": "Cradle of Fear" + }, + { + "id": "/en/crank", + "initial_release_date": "2006-08-31", + "genre": [ + "Thriller", + "Action Film", + "Action/Adventure", + "Crime Thriller", + "Crime Fiction", + "Action Thriller" + ], + "directed_by": [ + "Neveldine/Taylor" + ], + "name": "Crank" + }, + { + "id": "/en/crash_2004", + "initial_release_date": "2004-09-10", + "genre": [ + "Crime Fiction", + "Indie film", + "Drama" + ], + "directed_by": [ + "Paul Haggis" + ], + "name": "Crash" + }, + { + "id": "/en/crazy_beautiful", + "initial_release_date": "2001-06-28", + "genre": [ + "Teen film", + "Romance Film", + "Drama" + ], + "directed_by": [ + "John Stockwell" + ], + "name": "Crazy/Beautiful" + }, + { + "id": "/en/creep_2005", + "initial_release_date": "2004-08-10", + "genre": [ + "Horror", + "Mystery", + "Thriller" + ], + "directed_by": [ + "Christopher Smith" + ], + "name": "Creep" + }, + { + "id": "/en/criminal", + "initial_release_date": "2004-09-10", + "genre": [ + "Thriller", + "Crime Fiction", + "Indie film", + "Crime Thriller", + "Heist film", + "Comedy", + "Drama" + ], + "directed_by": [ + "Gregory Jacobs" + ], + "name": "Criminal" + }, + { + "id": "/en/crimson_gold", + "genre": [ + "World cinema", + "Thriller", + "Drama" + ], + "directed_by": [ + "Jafar Panahi" + ], + "name": "Crimson Gold" + }, + { + "id": "/en/crimson_rivers_ii_angels_of_the_apocalypse", + "initial_release_date": "2004-02-18", + "genre": [ + "Action Film", + "Thriller", + "Crime Fiction" + ], + "directed_by": [ + "Olivier Dahan" + ], + "name": "Crimson Rivers II: Angels of the Apocalypse" + }, + { + "id": "/en/crocodile_2000", + "initial_release_date": "2000-12-26", + "genre": [ + "Horror", + "Natural horror film", + "Teen film", + "Thriller", + "Action Film", + "Action/Adventure" + ], + "directed_by": [ + "Tobe Hooper" + ], + "name": "Crocodile" + }, + { + "id": "/en/crocodile_2_death_swamp", + "initial_release_date": "2002-08-01", + "genre": [ + "Horror", + "Natural horror film", + "B movie", + "Action/Adventure", + "Action Film", + "Thriller", + "Adventure Film", + "Action Thriller", + "Creature Film" + ], + "directed_by": [ + "Gary Jones" + ], + "name": "Crocodile 2: Death Swamp" + }, + { + "id": "/en/crocodile_dundee_in_los_angeles", + "initial_release_date": "2001-04-12", + "genre": [ + "Action Film", + "Adventure Film", + "Action/Adventure", + "World cinema", + "Action Comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Simon Wincer" + ], + "name": "Crocodile Dundee in Los Angeles" + }, + { + "id": "/en/crossing_the_bridge_the_sound_of_istanbul", + "initial_release_date": "2005-06-09", + "genre": [ + "Musical", + "Documentary film", + "Music", + "Culture & Society" + ], + "directed_by": [ + "Fatih Ak\u0131n" + ], + "name": "Crossing the Bridge: The Sound of Istanbul" + }, + { + "id": "/en/crossover_2006", + "initial_release_date": "2006-09-01", + "genre": [ + "Action Film", + "Coming of age", + "Teen film", + "Sports", + "Short Film", + "Fantasy", + "Drama" + ], + "directed_by": [ + "Preston A. Whitmore II" + ], + "name": "Crossover" + }, + { + "id": "/en/crossroads_2002", + "initial_release_date": "2002-02-11", + "genre": [ + "Coming of age", + "Teen film", + "Musical", + "Romance Film", + "Romantic comedy", + "Adventure Film", + "Comedy-drama", + "Musical Drama", + "Musical comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Tamra Davis" + ], + "name": "Crossroads" + }, + { + "id": "/en/crouching_tiger_hidden_dragon", + "initial_release_date": "2000-05-16", + "genre": [ + "Romance Film", + "Action Film", + "Martial Arts Film", + "Drama" + ], + "directed_by": [ + "Ang Lee" + ], + "name": "Crouching Tiger, Hidden Dragon" + }, + { + "id": "/en/cruel_intentions_3", + "initial_release_date": "2004-05-25", + "genre": [ + "Erotica", + "Thriller", + "Teen film", + "Psychological thriller", + "Romance Film", + "Erotic thriller", + "Crime Fiction", + "Crime Thriller", + "Drama" + ], + "directed_by": [ + "Scott Ziehl" + ], + "name": "Cruel Intentions 3" + }, + { + "id": "/en/crustaces_et_coquillages", + "initial_release_date": "2005-02-12", + "genre": [ + "Musical", + "Romantic comedy", + "LGBT", + "Romance Film", + "World cinema", + "Musical Drama", + "Musical comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Jacques Martineau", + "Olivier Ducastel" + ], + "name": "Crustac\u00e9s et Coquillages" + }, + { + "id": "/en/cry_wolf", + "initial_release_date": "2005-09-16", + "genre": [ + "Slasher", + "Horror", + "Mystery", + "Thriller", + "Drama" + ], + "directed_by": [ + "Jeff Wadlow" + ], + "name": "Cry_Wolf" + }, + { + "id": "/en/cube_2_hypercube", + "initial_release_date": "2002-04-15", + "genre": [ + "Science Fiction", + "Horror", + "Psychological thriller", + "Thriller", + "Escape Film" + ], + "directed_by": [ + "Andrzej Seku\u0142a" + ], + "name": "Cube 2: Hypercube" + }, + { + "id": "/en/curious_george_2006", + "initial_release_date": "2006-02-10", + "genre": [ + "Animation", + "Adventure Film", + "Family", + "Comedy" + ], + "directed_by": [ + "Matthew O'Callaghan" + ], + "name": "Curious George" + }, + { + "id": "/en/curse_of_the_golden_flower", + "initial_release_date": "2006-12-21", + "genre": [ + "Romance Film", + "Action Film", + "Drama" + ], + "directed_by": [ + "Zhang Yimou" + ], + "name": "Curse of the Golden Flower" + }, + { + "id": "/en/cursed", + "initial_release_date": "2004-11-07", + "genre": [ + "Horror", + "Thriller", + "Horror comedy", + "Comedy" + ], + "directed_by": [ + "Wes Craven" + ], + "name": "Cursed" + }, + { + "id": "/en/d-tox", + "initial_release_date": "2002-01-04", + "genre": [ + "Thriller", + "Crime Thriller", + "Horror", + "Mystery" + ], + "directed_by": [ + "Jim Gillespie" + ], + "name": "D-Tox" + }, + { + "id": "/en/daddy", + "initial_release_date": "2001-10-04", + "genre": [ + "Family", + "Drama", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Suresh Krissna" + ], + "name": "Daddy" + }, + { + "id": "/en/daddy_day_care", + "initial_release_date": "2003-05-04", + "genre": [ + "Family", + "Comedy" + ], + "directed_by": [ + "Steve Carr" + ], + "name": "Daddy Day Care" + }, + { + "id": "/en/daddy_long-legs", + "initial_release_date": "2005-01-13", + "genre": [ + "Romantic comedy", + "East Asian cinema", + "World cinema", + "Drama" + ], + "directed_by": [ + "Gong Jeong-shik" + ], + "name": "Daddy-Long-Legs" + }, + { + "id": "/en/dahmer_2002", + "initial_release_date": "2002-06-21", + "genre": [ + "Thriller", + "Biographical film", + "LGBT", + "Crime Fiction", + "Indie film", + "Mystery", + "Cult film", + "Horror", + "Slasher", + "Drama" + ], + "directed_by": [ + "David Jacobson" + ], + "name": "Dahmer" + }, + { + "id": "/en/daisy_2006", + "initial_release_date": "2006-03-09", + "genre": [ + "Chinese Movies", + "Romance Film", + "Melodrama", + "Drama" + ], + "directed_by": [ + "Andrew Lau" + ], + "name": "Daisy" + }, + { + "id": "/en/daivanamathil", + "genre": [ + "Drama", + "Malayalam Cinema", + "World cinema" + ], + "directed_by": [ + "Jayaraj" + ], + "name": "Daivanamathil" + }, + { + "id": "/en/daltry_calhoun", + "initial_release_date": "2005-09-25", + "genre": [ + "Black comedy", + "Comedy-drama", + "Comedy", + "Drama" + ], + "directed_by": [ + "Katrina Holden Bronson" + ], + "name": "Daltry Calhoun" + }, + { + "id": "/en/dan_in_real_life", + "initial_release_date": "2007-10-26", + "genre": [ + "Romance Film", + "Romantic comedy", + "Comedy-drama", + "Domestic Comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Peter Hedges" + ], + "name": "Dan in Real Life" + }, + { + "id": "/en/dancer_in_the_dark", + "initial_release_date": "2000-05-17", + "genre": [ + "Musical", + "Crime Fiction", + "Melodrama", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Lars von Trier" + ], + "name": "Dancer in the Dark" + }, + { + "id": "/en/daniel_amos_live_in_anaheim_1985", + "genre": [ + "Music video" + ], + "directed_by": [ + "Dave Perry" + ], + "name": "Daniel Amos Live in Anaheim 1985" + }, + { + "id": "/en/danny_deckchair", + "genre": [ + "Romantic comedy", + "Indie film", + "Romance Film", + "World cinema", + "Fantasy Comedy", + "Comedy" + ], + "directed_by": [ + "Jeff Balsmeyer" + ], + "name": "Danny Deckchair" + }, + { + "id": "/en/daredevil_2003", + "initial_release_date": "2003-02-09", + "genre": [ + "Action Film", + "Fantasy", + "Thriller", + "Crime Fiction", + "Superhero movie" + ], + "directed_by": [ + "Mark Steven Johnson" + ], + "name": "Daredevil" + }, + { + "id": "/en/dark_blue", + "initial_release_date": "2002-12-14", + "genre": [ + "Action Film", + "Crime Fiction", + "Historical period drama", + "Drama" + ], + "directed_by": [ + "Ron Shelton" + ], + "name": "Dark Blue" + }, + { + "id": "/en/dark_harvest", + "genre": [ + "Horror", + "Slasher" + ], + "directed_by": [ + "Paul Moore, Jr." + ], + "name": "Dark Harvest" + }, + { + "id": "/en/dark_water", + "initial_release_date": "2005-06-27", + "genre": [ + "Thriller", + "Horror", + "Drama" + ], + "directed_by": [ + "Walter Salles" + ], + "name": "Dark Water" + }, + { + "id": "/en/dark_water_2002", + "initial_release_date": "2002-01-19", + "genre": [ + "Thriller", + "Horror", + "Mystery", + "Drama" + ], + "directed_by": [ + "Hideo Nakata" + ], + "name": "Dark Water" + }, + { + "id": "/en/darkness_2002", + "initial_release_date": "2002-10-03", + "genre": [ + "Horror" + ], + "directed_by": [ + "Jaume Balaguer\u00f3" + ], + "name": "Darkness" + }, + { + "id": "/en/darna_mana_hai", + "initial_release_date": "2003-07-25", + "genre": [ + "Horror", + "Adventure Film", + "Bollywood", + "World cinema" + ], + "directed_by": [ + "Prawaal Raman" + ], + "name": "Darna Mana Hai" + }, + { + "id": "/en/darna_zaroori_hai", + "initial_release_date": "2006-04-28", + "genre": [ + "Horror", + "Thriller", + "Comedy", + "Bollywood", + "World cinema" + ], + "directed_by": [ + "Ram Gopal Varma", + "Jijy Philip", + "Prawaal Raman", + "Vivek Shah", + "J. D. Chakravarthy", + "Sajid Khan", + "Manish Gupta" + ], + "name": "Darna Zaroori Hai" + }, + { + "id": "/en/darth_vaders_psychic_hotline", + "initial_release_date": "2002-04-16", + "genre": [ + "Indie film", + "Short Film", + "Fan film" + ], + "directed_by": [ + "John E. Hudgens" + ], + "name": "Darth Vader's Psychic Hotline" + }, + { + "id": "/en/darwins_nightmare", + "initial_release_date": "2004-09-01", + "genre": [ + "Documentary film", + "Political cinema", + "Biographical film" + ], + "directed_by": [ + "Hubert Sauper" + ], + "name": "Darwin's Nightmare" + }, + { + "id": "/en/das_experiment", + "initial_release_date": "2010-07-15", + "genre": [ + "Thriller", + "Psychological thriller", + "Drama" + ], + "directed_by": [ + "Paul Scheuring" + ], + "name": "The Experiment" + }, + { + "id": "/en/dasavatharam", + "initial_release_date": "2008-06-12", + "genre": [ + "Science Fiction", + "Disaster Film", + "Tamil cinema" + ], + "directed_by": [ + "K. S. Ravikumar" + ], + "name": "Dasavathaaram" + }, + { + "id": "/en/date_movie", + "initial_release_date": "2006-02-17", + "genre": [ + "Romantic comedy", + "Parody", + "Romance Film", + "Comedy" + ], + "directed_by": [ + "Aaron Seltzer", + "Jason Friedberg" + ], + "name": "Date Movie" + }, + { + "id": "/en/dave_attells_insomniac_tour", + "initial_release_date": "2006-04-11", + "genre": [ + "Stand-up comedy", + "Comedy" + ], + "directed_by": [ + "Joel Gallen" + ], + "name": "Dave Attell's Insomniac Tour" + }, + { + "id": "/en/dave_chappelles_block_party", + "initial_release_date": "2006-03-03", + "genre": [ + "Documentary film", + "Music", + "Concert film", + "Hip hop film", + "Stand-up comedy", + "Comedy" + ], + "directed_by": [ + "Michel Gondry" + ], + "name": "Dave Chappelle's Block Party" + }, + { + "id": "/en/david_layla", + "initial_release_date": "2005-10-21", + "genre": [ + "Romantic comedy", + "Indie film", + "Romance Film", + "Comedy-drama", + "Comedy", + "Drama" + ], + "directed_by": [ + "Jay Jonroy" + ], + "name": "David & Layla" + }, + { + "id": "/en/david_gilmour_in_concert", + "genre": [ + "Music video", + "Concert film" + ], + "directed_by": [ + "David Mallet" + ], + "name": "David Gilmour in Concert" + }, + { + "id": "/en/dawn_of_the_dead_2004", + "initial_release_date": "2004-03-10", + "genre": [ + "Horror", + "Action Film", + "Thriller", + "Science Fiction", + "Drama" + ], + "directed_by": [ + "Zack Snyder" + ], + "name": "Dawn of the Dead" + }, + { + "id": "/en/day_of_the_dead_2007", + "initial_release_date": "2008-04-08", + "genre": [ + "Splatter film", + "Doomsday film", + "Horror", + "Thriller", + "Cult film", + "Zombie Film" + ], + "directed_by": [ + "Steve Miner" + ], + "name": "Day of the Dead" + }, + { + "id": "/en/day_of_the_dead_2_contagium", + "initial_release_date": "2005-10-18", + "genre": [ + "Horror", + "Zombie Film" + ], + "directed_by": [ + "Ana Clavell", + "James Glenn Dudelson" + ], + "name": "Day of the Dead 2: Contagium" + }, + { + "id": "/en/day_watch", + "initial_release_date": "2006-01-01", + "genre": [ + "Thriller", + "Fantasy", + "Action Film" + ], + "directed_by": [ + "Timur Bekmambetov" + ], + "name": "Day Watch" + }, + { + "id": "/en/day_zero", + "initial_release_date": "2007-11-02", + "genre": [ + "Indie film", + "Political drama", + "Drama" + ], + "directed_by": [ + "Bryan Gunnar Cole" + ], + "name": "Day Zero" + }, + { + "id": "/en/de-lovely", + "initial_release_date": "2004-05-22", + "genre": [ + "Musical", + "Biographical film", + "Musical Drama", + "Drama" + ], + "directed_by": [ + "Irwin Winkler" + ], + "name": "De-Lovely" + }, + { + "id": "/en/dead_breakfast", + "initial_release_date": "2004-03-19", + "genre": [ + "Horror", + "Black comedy", + "Creature Film", + "Zombie Film", + "Horror comedy", + "Comedy" + ], + "directed_by": [ + "Matthew Leutwyler" + ], + "name": "Dead & Breakfast" + }, + { + "id": "/en/dead_birds_2005", + "initial_release_date": "2005-03-15", + "genre": [ + "Horror" + ], + "directed_by": [ + "Alex Turner" + ], + "name": "Dead Birds" + }, + { + "id": "/en/dead_end_2003", + "initial_release_date": "2003-01-30", + "genre": [ + "Horror", + "Thriller", + "Mystery", + "Comedy" + ], + "directed_by": [ + "Jean-Baptiste Andrea", + "Fabrice Canepa" + ], + "name": "Dead End" + }, + { + "id": "/en/dead_friend", + "initial_release_date": "2004-06-18", + "genre": [ + "Horror", + "East Asian cinema", + "World cinema" + ], + "directed_by": [ + "Kim Tae-kyeong" + ], + "name": "Dead Friend" + }, + { + "id": "/en/dead_mans_shoes", + "initial_release_date": "2004-10-01", + "genre": [ + "Psychological thriller", + "Crime Fiction", + "Thriller", + "Drama" + ], + "directed_by": [ + "Shane Meadows" + ], + "name": "Dead Man's Shoes" + }, + { + "id": "/en/dear_frankie", + "initial_release_date": "2004-05-04", + "genre": [ + "Indie film", + "Drama", + "Romance Film" + ], + "directed_by": [ + "Shona Auerbach" + ], + "name": "Dear Frankie" + }, + { + "id": "/en/dear_wendy", + "initial_release_date": "2004-05-16", + "genre": [ + "Indie film", + "Crime Fiction", + "Melodrama", + "Comedy", + "Romance Film", + "Drama" + ], + "directed_by": [ + "Thomas Vinterberg" + ], + "name": "Dear Wendy" + }, + { + "id": "/en/death_in_gaza", + "initial_release_date": "2004-02-11", + "genre": [ + "Documentary film", + "War film", + "Children's Issues", + "Culture & Society", + "Biographical film" + ], + "directed_by": [ + "James Miller" + ], + "name": "Death in Gaza" + }, + { + "id": "/en/death_to_smoochy", + "initial_release_date": "2002-03-29", + "genre": [ + "Comedy", + "Thriller", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "Danny DeVito" + ], + "name": "Death to Smoochy" + }, + { + "id": "/en/death_trance", + "initial_release_date": "2005-05-12", + "genre": [ + "Action Film", + "Fantasy", + "Martial Arts Film", + "Thriller", + "Action/Adventure", + "World cinema", + "Action Thriller", + "Japanese Movies" + ], + "directed_by": [ + "Yuji Shimomura" + ], + "name": "Death Trance" + }, + { + "id": "/en/death_walks_the_streets", + "initial_release_date": "2008-06-26", + "genre": [ + "Indie film", + "Horror", + "Crime Fiction" + ], + "directed_by": [ + "James Zahn" + ], + "name": "Death Walks the Streets" + }, + { + "id": "/en/deathwatch", + "initial_release_date": "2002-10-06", + "genre": [ + "Horror", + "War film", + "Thriller", + "Drama" + ], + "directed_by": [ + "Michael J. Bassett" + ], + "name": "Deathwatch" + }, + { + "id": "/en/december_boys", + "genre": [ + "Coming of age", + "Film adaptation", + "Indie film", + "Historical period drama", + "World cinema", + "Drama" + ], + "directed_by": [ + "Rod Hardy" + ], + "name": "December Boys" + }, + { + "id": "/en/decoys", + "genre": [ + "Science Fiction", + "Horror", + "Thriller", + "Alien Film", + "Horror comedy" + ], + "directed_by": [ + "Matthew Hastings" + ], + "name": "Decoys" + }, + { + "id": "/en/deepavali", + "initial_release_date": "2007-02-09", + "genre": [ + "Romance Film", + "Tamil cinema", + "World cinema" + ], + "directed_by": [ + "Ezhil" + ], + "name": "Deepavali" + }, + { + "id": "/en/deewane_huye_pagal", + "initial_release_date": "2005-11-25", + "genre": [ + "Romance Film", + "Romantic comedy", + "Comedy", + "Bollywood", + "World cinema", + "Drama" + ], + "directed_by": [ + "Vikram Bhatt" + ], + "name": "Deewane Huye Paagal" + }, + { + "id": "/wikipedia/ja_id/980449", + "initial_release_date": "2006-11-20", + "genre": [ + "Thriller", + "Science Fiction", + "Time travel", + "Action Film", + "Mystery", + "Crime Thriller", + "Action/Adventure" + ], + "directed_by": [ + "Tony Scott" + ], + "name": "D\u00e9j\u00e0 Vu" + }, + { + "id": "/en/democrazy_2005", + "genre": [ + "Parody", + "Action/Adventure", + "Action Film", + "Indie film", + "Superhero movie", + "Comedy" + ], + "directed_by": [ + "Michael Legge" + ], + "name": "Democrazy" + }, + { + "id": "/en/demonium", + "initial_release_date": "2001-08-25", + "genre": [ + "Horror", + "Thriller" + ], + "directed_by": [ + "Andreas Schnaas" + ], + "name": "Demonium" + }, + { + "id": "/en/der_schuh_des_manitu", + "initial_release_date": "2001-07-13", + "genre": [ + "Western", + "Comedy", + "Parody" + ], + "directed_by": [ + "Michael Herbig" + ], + "name": "Der Schuh des Manitu" + }, + { + "id": "/en/der_tunnel", + "initial_release_date": "2001-01-21", + "genre": [ + "World cinema", + "Thriller", + "Political drama", + "Political thriller", + "Drama" + ], + "directed_by": [ + "Roland Suso Richter" + ], + "name": "The Tunnel" + }, + { + "id": "/en/derailed", + "initial_release_date": "2005-11-11", + "genre": [ + "Thriller", + "Psychological thriller", + "Crime Thriller", + "Drama" + ], + "directed_by": [ + "Mikael H\u00e5fstr\u00f6m" + ], + "name": "Derailed" + }, + { + "id": "/en/derailed_2002", + "genre": [ + "Thriller", + "Action Film", + "Martial Arts Film", + "Disaster Film", + "Action/Adventure" + ], + "directed_by": [ + "Bob Misiorowski" + ], + "name": "Derailed" + }, + { + "id": "/en/destinys_child_live_in_atlana", + "initial_release_date": "2006-03-27", + "genre": [ + "Music", + "Documentary film" + ], + "directed_by": [ + "Julia Knowles" + ], + "name": "Destiny's Child: Live In Atlana" + }, + { + "id": "/en/deuce_bigalow_european_gigolo", + "initial_release_date": "2005-08-06", + "name": "Deuce Bigalow: European Gigolo", + "directed_by": [ + "Mike Bigelow" + ], + "genre": [ + "Sex comedy", + "Slapstick", + "Gross out", + "Gross-out film", + "Comedy" + ] + }, + { + "id": "/en/dev", + "initial_release_date": "2004-06-11", + "name": "Dev", + "directed_by": [ + "Govind Nihalani" + ], + "genre": [ + "Drama", + "Bollywood" + ] + }, + { + "id": "/en/devadasu", + "initial_release_date": "2006-01-11", + "name": "Devadasu", + "directed_by": [ + "YVS Chowdary", + "Gopireddy Mallikarjuna Reddy" + ], + "genre": [ + "Romance Film", + "Drama", + "Tollywood", + "World cinema" + ] + }, + { + "id": "/en/devdas_2002", + "initial_release_date": "2002-05-23", + "name": "Devdas", + "directed_by": [ + "Sanjay Leela Bhansali" + ], + "genre": [ + "Romance Film", + "Musical", + "Drama", + "Bollywood", + "World cinema", + "Musical Drama" + ] + }, + { + "id": "/en/devils_playground_2003", + "initial_release_date": "2003-02-04", + "name": "Devil's Playground", + "directed_by": [ + "Lucy Walker" + ], + "genre": [ + "Documentary film" + ] + }, + { + "id": "/en/the_devils_pond", + "initial_release_date": "2003-10-21", + "name": "Devil's Pond", + "directed_by": [ + "Joel Viertel" + ], + "genre": [ + "Thriller", + "Suspense" + ] + }, + { + "id": "/en/dhadkan", + "initial_release_date": "2000-08-11", + "name": "Dhadkan", + "directed_by": [ + "Dharmesh Darshan" + ], + "genre": [ + "Musical", + "Romance Film", + "Melodrama", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/dhool", + "initial_release_date": "2003-01-10", + "name": "Dhool", + "directed_by": [ + "Dharani" + ], + "genre": [ + "Musical", + "Family", + "Action Film", + "Tamil cinema", + "World cinema", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/dhoom_2", + "initial_release_date": "2006-11-23", + "name": "Dhoom 2", + "directed_by": [ + "Sanjay Gadhvi" + ], + "genre": [ + "Crime Fiction", + "Action/Adventure", + "Musical", + "World cinema", + "Buddy cop film", + "Action Film", + "Thriller", + "Action Thriller", + "Musical comedy", + "Comedy" + ] + }, + { + "id": "/en/dhyaas_parva", + "name": "Dhyaas Parva", + "directed_by": [ + "Amol Palekar" + ], + "genre": [ + "Biographical film", + "Drama", + "Marathi cinema" + ] + }, + { + "id": "/en/diary_of_a_housewife", + "name": "Diary of a Housewife", + "directed_by": [ + "Vinod Sukumaran" + ], + "genre": [ + "Short Film", + "Malayalam Cinema", + "World cinema" + ] + }, + { + "id": "/en/diary_of_a_mad_black_woman", + "initial_release_date": "2005-02-25", + "name": "Diary of a Mad Black Woman", + "directed_by": [ + "Darren Grant" + ], + "genre": [ + "Comedy-drama", + "Romance Film", + "Romantic comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/dickie_roberts_former_child_star", + "initial_release_date": "2003-09-03", + "name": "Dickie Roberts: Former Child Star", + "directed_by": [ + "Sam Weisman" + ], + "genre": [ + "Parody", + "Slapstick", + "Comedy" + ] + }, + { + "id": "/en/die_bad", + "initial_release_date": "2000-07-15", + "name": "Die Bad", + "directed_by": [ + "Ryoo Seung-wan" + ], + "genre": [ + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/die_mommie_die", + "initial_release_date": "2003-01-20", + "name": "Die Mommie Die!", + "directed_by": [ + "Mark Rucker" + ], + "genre": [ + "Comedy" + ] + }, + { + "id": "/en/dieu_est_grand_je_suis_toute_petite", + "initial_release_date": "2001-09-26", + "name": "God Is Great and I'm Not", + "directed_by": [ + "Pascale Bailly" + ], + "genre": [ + "Romantic comedy", + "World cinema", + "Religious Film", + "Romance Film", + "Comedy of manners", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/digimon_the_movie", + "initial_release_date": "2000-03-17", + "name": "Digimon: The Movie", + "directed_by": [ + "Mamoru Hosoda", + "Shigeyasu Yamauchi" + ], + "genre": [ + "Anime", + "Fantasy", + "Family", + "Animation", + "Adventure Film", + "Action Film", + "Thriller" + ] + }, + { + "id": "/en/digital_monster_x-evolution", + "initial_release_date": "2005-01-03", + "name": "Digital Monster X-Evolution", + "directed_by": [ + "Hiroyuki Kakud\u014d" + ], + "genre": [ + "Computer Animation", + "Animation", + "Japanese Movies" + ] + }, + { + "id": "/en/digna_hasta_el_ultimo_aliento", + "initial_release_date": "2004-12-17", + "name": "Digna... hasta el \u00faltimo aliento", + "directed_by": [ + "Felipe Cazals" + ], + "genre": [ + "Documentary film", + "Culture & Society", + "Law & Crime", + "Biographical film" + ] + }, + { + "id": "/en/dil_chahta_hai", + "initial_release_date": "2001-07-24", + "name": "Dil Chahta Hai", + "directed_by": [ + "Farhan Akhtar" + ], + "genre": [ + "Bollywood", + "Musical", + "Romance Film", + "World cinema", + "Comedy-drama", + "Musical Drama", + "Musical comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/dil_diya_hai", + "initial_release_date": "2006-09-08", + "name": "Dil Diya Hai", + "directed_by": [ + "Aditya Datt", + "Aditya Datt" + ], + "genre": [ + "Romance Film", + "Bollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/dil_hai_tumhaara", + "initial_release_date": "2002-09-06", + "name": "Dil Hai Tumhara", + "directed_by": [ + "Kundan Shah" + ], + "genre": [ + "Family", + "Romance Film", + "Musical", + "Bollywood", + "World cinema", + "Drama", + "Musical Drama" + ] + }, + { + "id": "/en/dil_ka_rishta", + "initial_release_date": "2003-01-17", + "name": "Dil Ka Rishta", + "directed_by": [ + "Naresh Malhotra" + ], + "genre": [ + "Romance Film", + "Bollywood" + ] + }, + { + "id": "/en/dil_ne_jise_apna_kahaa", + "initial_release_date": "2004-09-10", + "name": "Dil Ne Jise Apna Kahaa", + "directed_by": [ + "Atul Agnihotri" + ], + "genre": [ + "Musical", + "World cinema", + "Romance Film", + "Musical Drama", + "Musical comedy", + "Comedy", + "Bollywood", + "Drama" + ] + }, + { + "id": "/en/dinosaur_2000", + "initial_release_date": "2000-05-13", + "name": "Dinosaur", + "directed_by": [ + "Eric Leighton", + "Ralph Zondag" + ], + "genre": [ + "Computer Animation", + "Animation", + "Fantasy", + "Costume drama", + "Family", + "Adventure Film", + "Thriller" + ] + }, + { + "id": "/en/dirty_dancing_2004", + "initial_release_date": "2004-02-27", + "name": "Dirty Dancing: Havana Nights", + "directed_by": [ + "Guy Ferland" + ], + "genre": [ + "Musical", + "Coming of age", + "Indie film", + "Teen film", + "Romance Film", + "Historical period drama", + "Dance film", + "Musical Drama", + "Drama" + ] + }, + { + "id": "/en/dirty_deeds", + "initial_release_date": "2002-07-18", + "name": "Dirty Deeds", + "directed_by": [ + "David Caesar" + ], + "genre": [ + "Historical period drama", + "Black comedy", + "Crime Thriller", + "Thriller", + "Crime Fiction", + "World cinema", + "Gangster Film", + "Drama" + ] + }, + { + "id": "/en/dirty_deeds_2005", + "initial_release_date": "2005-08-26", + "name": "Dirty Deeds", + "directed_by": [ + "David Kendall" + ], + "genre": [ + "Comedy" + ] + }, + { + "id": "/en/dirty_love", + "initial_release_date": "2005-09-23", + "name": "Dirty Love", + "directed_by": [ + "John Mallory Asher" + ], + "genre": [ + "Indie film", + "Sex comedy", + "Romantic comedy", + "Romance Film", + "Comedy" + ] + }, + { + "id": "/en/disappearing_acts", + "initial_release_date": "2000-12-09", + "name": "Disappearing Acts", + "directed_by": [ + "Gina Prince-Bythewood" + ], + "genre": [ + "Romance Film", + "Television film", + "Film adaptation", + "Comedy-drama", + "Drama" + ] + }, + { + "id": "/en/dishyum", + "initial_release_date": "2006-02-02", + "name": "Dishyum", + "directed_by": [ + "Sasi" + ], + "genre": [ + "Romance Film", + "Action Film", + "Drama", + "Tamil cinema", + "World cinema" + ] + }, + { + "id": "/en/distant_lights", + "initial_release_date": "2003-02-11", + "name": "Distant Lights", + "directed_by": [ + "Hans-Christian Schmid" + ], + "genre": [ + "Drama" + ] + }, + { + "id": "/en/district_b13", + "initial_release_date": "2004-11-10", + "name": "District 13", + "directed_by": [ + "Pierre Morel" + ], + "genre": [ + "Martial Arts Film", + "Thriller", + "Action Film", + "Science Fiction", + "Crime Fiction" + ] + }, + { + "id": "/en/disturbia", + "initial_release_date": "2007-04-04", + "name": "Disturbia", + "directed_by": [ + "D. J. Caruso" + ], + "genre": [ + "Thriller", + "Mystery", + "Teen film", + "Drama" + ] + }, + { + "id": "/en/ditto_2000", + "initial_release_date": "2000-05-27", + "name": "Ditto", + "directed_by": [ + "Jeong-kwon Kim" + ], + "genre": [ + "Romance Film", + "Science Fiction", + "East Asian cinema", + "World cinema" + ] + }, + { + "id": "/en/divine_intervention_2002", + "initial_release_date": "2002-05-19", + "name": "Divine Intervention", + "directed_by": [ + "Elia Suleiman" + ], + "genre": [ + "Black comedy", + "World cinema", + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/divine_secrets_of_the_ya_ya_sisterhood", + "initial_release_date": "2002-06-03", + "name": "Divine Secrets of the Ya-Ya Sisterhood", + "directed_by": [ + "Callie Khouri" + ], + "genre": [ + "Film adaptation", + "Comedy-drama", + "Historical period drama", + "Family Drama", + "Ensemble Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/doa_dead_or_alive", + "initial_release_date": "2006-09-07", + "name": "DOA: Dead or Alive", + "directed_by": [ + "Corey Yuen" + ], + "genre": [ + "Action Film", + "Adventure Film" + ] + }, + { + "id": "/en/dodgeball_a_true_underdog_story", + "initial_release_date": "2004-06-18", + "name": "DodgeBall: A True Underdog Story", + "directed_by": [ + "Rawson Marshall Thurber" + ], + "genre": [ + "Sports", + "Comedy" + ] + }, + { + "id": "/en/dog_soldiers", + "initial_release_date": "2002-03-22", + "name": "Dog Soldiers", + "directed_by": [ + "Neil Marshall" + ], + "genre": [ + "Horror", + "Action Film", + "Creature Film" + ] + }, + { + "id": "/en/dogtown_and_z-boys", + "initial_release_date": "2001-01-19", + "name": "Dogtown and Z-Boys", + "directed_by": [ + "Stacy Peralta" + ], + "genre": [ + "Documentary film", + "Sports", + "Extreme Sports", + "Biographical film" + ] + }, + { + "id": "/en/dogville", + "initial_release_date": "2003-05-19", + "name": "Dogville", + "directed_by": [ + "Lars von Trier" + ], + "genre": [ + "Drama" + ] + }, + { + "id": "/en/doll_master", + "initial_release_date": "2004-07-30", + "name": "The Doll Master", + "directed_by": [ + "Jeong Yong-Gi" + ], + "genre": [ + "Horror", + "Thriller", + "East Asian cinema", + "World cinema" + ] + }, + { + "id": "/en/dolls", + "initial_release_date": "2002-09-05", + "name": "Dolls", + "directed_by": [ + "Takeshi Kitano" + ], + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/dominion_prequel_to_the_exorcist", + "initial_release_date": "2005-05-20", + "name": "Dominion: Prequel to the Exorcist", + "directed_by": [ + "Paul Schrader" + ], + "genre": [ + "Horror", + "Supernatural", + "Psychological thriller", + "Cult film" + ] + }, + { + "id": "/en/domino_2005", + "initial_release_date": "2005-09-25", + "name": "Domino", + "directed_by": [ + "Tony Scott" + ], + "genre": [ + "Thriller", + "Action Film", + "Biographical film", + "Crime Fiction", + "Comedy", + "Adventure Film", + "Drama" + ] + }, + { + "id": "/en/don_2006", + "initial_release_date": "2006-10-20", + "name": "Don: The Chase Begins Again", + "directed_by": [ + "Farhan Akhtar" + ], + "genre": [ + "Crime Fiction", + "Thriller", + "Mystery", + "Action Film", + "Romance Film", + "Comedy", + "Bollywood", + "World cinema" + ] + }, + { + "id": "/en/dons_plum", + "initial_release_date": "2001-02-10", + "name": "Don's Plum", + "directed_by": [ + "R.D. Robb" + ], + "genre": [ + "Black-and-white", + "Ensemble Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/dont_come_knocking", + "initial_release_date": "2005-05-19", + "name": "Don't Come Knocking", + "directed_by": [ + "Wim Wenders" + ], + "genre": [ + "Western", + "Indie film", + "Musical", + "Drama", + "Music", + "Musical Drama" + ] + }, + { + "id": "/en/dont_move", + "initial_release_date": "2004-03-12", + "name": "Don't Move", + "directed_by": [ + "Sergio Castellitto" + ], + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/dont_say_a_word_2001", + "initial_release_date": "2001-09-24", + "name": "Don't Say a Word", + "directed_by": [ + "Gary Fleder" + ], + "genre": [ + "Thriller", + "Psychological thriller", + "Crime Fiction", + "Suspense" + ] + }, + { + "id": "/en/donnie_darko", + "initial_release_date": "2001-01-19", + "name": "Donnie Darko", + "directed_by": [ + "Richard Kelly" + ], + "genre": [ + "Science Fiction", + "Mystery", + "Drama" + ] + }, + { + "id": "/en/doomsday_2008", + "initial_release_date": "2008-03-14", + "name": "Doomsday", + "directed_by": [ + "Neil Marshall" + ], + "genre": [ + "Science Fiction", + "Action Film" + ] + }, + { + "id": "/en/dopamine_2003", + "initial_release_date": "2003-01-23", + "name": "Dopamine", + "directed_by": [ + "Mark Decena" + ], + "genre": [ + "Comedy-drama", + "Romance Film", + "Indie film", + "Romantic comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/dosti_friends_forever", + "initial_release_date": "2005-12-23", + "name": "Dosti: Friends Forever", + "directed_by": [ + "Suneel Darshan" + ], + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/double_take", + "initial_release_date": "2001-01-12", + "name": "Double Take", + "directed_by": [ + "George Gallo" + ], + "genre": [ + "Crime Fiction", + "Action/Adventure", + "Action Film", + "Comedy" + ] + }, + { + "id": "/en/double_teamed", + "initial_release_date": "2002-01-18", + "name": "Double Teamed", + "directed_by": [ + "Duwayne Dunham" + ], + "genre": [ + "Family", + "Biographical film", + "Family Drama", + "Children's/Family", + "Sports" + ] + }, + { + "id": "/en/double_vision_2002", + "initial_release_date": "2002-05-20", + "name": "Double Vision", + "directed_by": [ + "Chen Kuo-Fu" + ], + "genre": [ + "Thriller", + "Mystery", + "Martial Arts Film", + "Action Film", + "Horror", + "Psychological thriller", + "Suspense", + "World cinema", + "Crime Thriller", + "Action/Adventure", + "Chinese Movies" + ] + }, + { + "id": "/en/double_whammy", + "initial_release_date": "2001-01-20", + "name": "Double Whammy", + "directed_by": [ + "Tom DiCillo" + ], + "genre": [ + "Comedy-drama", + "Indie film", + "Action Film", + "Crime Fiction", + "Action/Adventure", + "Satire", + "Romantic comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/down_and_derby", + "initial_release_date": "2005-04-15", + "name": "Down and Derby", + "directed_by": [ + "Eric Hendershot" + ], + "genre": [ + "Family", + "Sports", + "Comedy" + ] + }, + { + "id": "/en/down_in_the_valley", + "initial_release_date": "2005-05-13", + "name": "Down in the Valley", + "directed_by": [ + "David Jacobson" + ], + "genre": [ + "Indie film", + "Romance Film", + "Family Drama", + "Psychological thriller", + "Drama" + ] + }, + { + "id": "/en/down_to_earth", + "initial_release_date": "2001-02-12", + "name": "Down to Earth", + "directed_by": [ + "Chris Weitz", + "Paul Weitz" + ], + "genre": [ + "Fantasy", + "Comedy" + ] + }, + { + "id": "/en/down_with_love", + "initial_release_date": "2003-05-09", + "name": "Down with Love", + "directed_by": [ + "Peyton Reed" + ], + "genre": [ + "Romantic comedy", + "Romance Film", + "Screwball comedy", + "Parody", + "Comedy" + ] + }, + { + "id": "/en/downfall", + "initial_release_date": "2004-09-08", + "name": "Downfall", + "directed_by": [ + "Oliver Hirschbiegel" + ], + "genre": [ + "Biographical film", + "War film", + "Historical drama", + "Drama" + ] + }, + { + "id": "/en/dr_dolittle_2", + "initial_release_date": "2001-06-19", + "name": "Dr. Dolittle 2", + "directed_by": [ + "Steve Carr" + ], + "genre": [ + "Family", + "Fantasy Comedy", + "Comedy", + "Romance Film" + ] + }, + { + "id": "/en/dr_dolittle_3", + "initial_release_date": "2006-04-25", + "name": "Dr. Dolittle 3", + "directed_by": [ + "Rich Thorne" + ], + "genre": [ + "Family", + "Comedy" + ] + }, + { + "id": "/en/dracula_pages_from_a_virgins_diary", + "initial_release_date": "2002-02-28", + "name": "Dracula: Pages from a Virgin's Diary", + "directed_by": [ + "Guy Maddin" + ], + "genre": [ + "Silent film", + "Indie film", + "Horror", + "Musical", + "Experimental film", + "Dance film", + "Horror comedy", + "Musical comedy", + "Comedy" + ] + }, + { + "id": "/en/dragon_boys", + "name": "Dragon Boys", + "directed_by": [ + "Jerry Ciccoritti" + ], + "genre": [ + "Crime Drama", + "Ensemble Film", + "Drama" + ] + }, + { + "id": "/en/dragon_tiger_gate", + "initial_release_date": "2006-07-27", + "name": "Dragon Tiger Gate", + "directed_by": [ + "Wilson Yip" + ], + "genre": [ + "Martial Arts Film", + "Wuxia", + "Action/Adventure", + "Action Film", + "Thriller", + "Superhero movie", + "World cinema", + "Action Thriller", + "Chinese Movies" + ] + }, + { + "id": "/en/dragonfly_2002", + "initial_release_date": "2002-02-18", + "name": "Dragonfly", + "directed_by": [ + "Tom Shadyac" + ], + "genre": [ + "Thriller", + "Mystery", + "Romance Film", + "Fantasy", + "Drama" + ] + }, + { + "id": "/en/dragonlance_dragons_of_autumn_twilight", + "initial_release_date": "2008-01-15", + "name": "Dragonlance: Dragons of Autumn Twilight", + "directed_by": [ + "Will Meugniot" + ], + "genre": [ + "Animation", + "Sword and sorcery", + "Fantasy", + "Adventure Film", + "Science Fiction" + ] + }, + { + "id": "/en/drake_josh_go_hollywood", + "initial_release_date": "2006-01-06", + "name": "Drake & Josh Go Hollywood", + "directed_by": [ + "Adam Weissman", + "Steve Hoefer" + ], + "genre": [ + "Family", + "Adventure Film", + "Comedy" + ] + }, + { + "id": "/en/drawing_restraint_9", + "initial_release_date": "2005-07-01", + "name": "Drawing Restraint 9", + "directed_by": [ + "Matthew Barney" + ], + "genre": [ + "Cult film", + "Fantasy", + "Surrealism", + "Avant-garde", + "Experimental film", + "Japanese Movies" + ] + }, + { + "id": "/en/dreamcatcher", + "initial_release_date": "2003-03-06", + "name": "Dreamcatcher", + "directed_by": [ + "Lawrence Kasdan" + ], + "genre": [ + "Science Fiction", + "Horror", + "Thriller", + "Drama" + ] + }, + { + "id": "/en/dreamer_2005", + "initial_release_date": "2005-09-10", + "name": "Dreamer", + "directed_by": [ + "John Gatins" + ], + "genre": [ + "Family", + "Sports", + "Drama" + ] + }, + { + "id": "/en/dreaming_of_julia", + "initial_release_date": "2003-10-24", + "name": "Dreaming of Julia", + "directed_by": [ + "Juan Gerard" + ], + "genre": [ + "Indie film", + "Action Film", + "Crime Fiction", + "Action/Adventure", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/driving_miss_wealthy_juet_sai_ho_bun", + "initial_release_date": "2004-05-03", + "name": "Driving Miss Wealthy", + "directed_by": [ + "James Yuen" + ], + "genre": [ + "Romance Film", + "World cinema", + "Romantic comedy", + "Chinese Movies", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/drowning_mona", + "initial_release_date": "2000-01-02", + "name": "Drowning Mona", + "directed_by": [ + "Nick Gomez" + ], + "genre": [ + "Black comedy", + "Mystery", + "Whodunit", + "Crime Comedy", + "Crime Fiction", + "Comedy" + ] + }, + { + "id": "/en/drugstore_girl", + "name": "Drugstore Girl", + "directed_by": [ + "Katsuhide Motoki" + ], + "genre": [ + "Japanese Movies", + "Comedy" + ] + }, + { + "id": "/en/druids", + "initial_release_date": "2001-08-31", + "name": "Druids", + "directed_by": [ + "Jacques Dorfmann" + ], + "genre": [ + "Adventure Film", + "War film", + "Action/Adventure", + "World cinema", + "Epic film", + "Historical Epic", + "Historical fiction", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/duck_the_carbine_high_massacre", + "initial_release_date": "2000-04-20", + "name": "Duck! The Carbine High Massacre", + "directed_by": [ + "William Hellfire", + "Joey Smack" + ], + "genre": [ + "Satire", + "Black comedy", + "Parody", + "Indie film", + "Teen film", + "Comedy" + ] + }, + { + "id": "/en/dude_wheres_my_car", + "initial_release_date": "2000-12-10", + "name": "Dude, Where's My Car?", + "directed_by": [ + "Danny Leiner" + ], + "genre": [ + "Mystery", + "Comedy", + "Science Fiction" + ] + }, + { + "id": "/en/dude_wheres_the_party", + "name": "Dude, Where's the Party?", + "directed_by": [ + "Benny Mathews" + ], + "genre": [ + "Indie film", + "Comedy of manners", + "Comedy" + ] + }, + { + "id": "/en/duets", + "initial_release_date": "2000-09-09", + "name": "Duets", + "directed_by": [ + "Bruce Paltrow" + ], + "genre": [ + "Musical", + "Musical Drama", + "Musical comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/dumb_dumberer", + "initial_release_date": "2003-06-13", + "name": "Dumb & Dumberer: When Harry Met Lloyd", + "directed_by": [ + "Troy Miller" + ], + "genre": [ + "Buddy film", + "Teen film", + "Screwball comedy", + "Slapstick", + "Comedy" + ] + }, + { + "id": "/en/dumm_dumm_dumm", + "initial_release_date": "2001-04-13", + "name": "Dumm Dumm Dumm", + "directed_by": [ + "Azhagam Perumal" + ], + "genre": [ + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/dummy_2003", + "initial_release_date": "2003-09-12", + "name": "Dummy", + "directed_by": [ + "Greg Pritikin" + ], + "genre": [ + "Romantic comedy", + "Indie film", + "Romance Film", + "Comedy", + "Comedy-drama", + "Drama" + ] + }, + { + "id": "/en/dumplings", + "initial_release_date": "2004-08-04", + "name": "Dumplings", + "directed_by": [ + "Fruit Chan" + ], + "genre": [ + "Horror", + "Drama" + ] + }, + { + "id": "/en/duplex", + "initial_release_date": "2003-09-26", + "name": "Duplex", + "directed_by": [ + "Danny DeVito" + ], + "genre": [ + "Black comedy", + "Comedy" + ] + }, + { + "id": "/en/dus", + "initial_release_date": "2005-07-08", + "name": "Dus", + "directed_by": [ + "Anubhav Sinha" + ], + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction", + "Bollywood" + ] + }, + { + "id": "/en/dust_2001", + "initial_release_date": "2001-08-29", + "name": "Dust", + "directed_by": [ + "Milcho Manchevski" + ], + "genre": [ + "Western", + "Drama" + ] + }, + { + "id": "/wikipedia/en_title/E_$0028film$0029", + "initial_release_date": "2006-10-21", + "name": "E", + "directed_by": [ + "S. P. Jananathan" + ], + "genre": [ + "Action Film", + "Thriller", + "Drama" + ] + }, + { + "id": "/en/earthlings", + "name": "Earthlings", + "directed_by": [ + "Shaun Monson" + ], + "genre": [ + "Documentary film", + "Nature", + "Culture & Society", + "Animal" + ] + }, + { + "id": "/en/eastern_promises", + "initial_release_date": "2007-09-08", + "name": "Eastern Promises", + "directed_by": [ + "David Cronenberg" + ], + "genre": [ + "Thriller", + "Crime Fiction", + "Mystery", + "Drama" + ] + }, + { + "id": "/en/eating_out", + "name": "Eating Out", + "directed_by": [ + "Q. Allan Brocka" + ], + "genre": [ + "Romantic comedy", + "LGBT", + "Gay Themed", + "Romance Film", + "Gay", + "Gay Interest", + "Comedy" + ] + }, + { + "id": "/en/echoes_of_innocence", + "initial_release_date": "2005-09-09", + "name": "Echoes of Innocence", + "directed_by": [ + "Nathan Todd Sims" + ], + "genre": [ + "Thriller", + "Romance Film", + "Christian film", + "Mystery", + "Supernatural", + "Drama" + ] + }, + { + "id": "/en/eddies_million_dollar_cook_off", + "initial_release_date": "2003-07-18", + "name": "Eddie's Million Dollar Cook-Off", + "directed_by": [ + "Paul Hoen" + ], + "genre": [ + "Teen film" + ] + }, + { + "id": "/en/edison_2006", + "initial_release_date": "2005-03-05", + "name": "Edison", + "directed_by": [ + "David J. Burke" + ], + "genre": [ + "Thriller", + "Crime Fiction", + "Mystery", + "Crime Thriller", + "Drama" + ] + }, + { + "id": "/en/edmond_2006", + "initial_release_date": "2005-09-02", + "name": "Edmond", + "directed_by": [ + "Stuart Gordon" + ], + "genre": [ + "Thriller", + "Psychological thriller", + "Indie film", + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/eight_below", + "initial_release_date": "2006-02-17", + "name": "Eight Below", + "directed_by": [ + "Frank Marshall" + ], + "genre": [ + "Adventure Film", + "Family", + "Drama" + ] + }, + { + "id": "/en/eight_crazy_nights", + "directed_by": [ + "Seth Kearsley" + ], + "initial_release_date": "2002-11-27", + "genre": [ + "Christmas movie", + "Musical", + "Animation", + "Musical comedy", + "Comedy" + ], + "name": "Eight Crazy Nights" + }, + { + "id": "/en/eight_legged_freaks", + "directed_by": [ + "Ellory Elkayem" + ], + "initial_release_date": "2002-05-30", + "genre": [ + "Horror", + "Natural horror film", + "Science Fiction", + "Monster", + "B movie", + "Comedy", + "Action Film", + "Thriller", + "Horror comedy" + ], + "name": "Eight Legged Freaks" + }, + { + "id": "/en/ek_ajnabee", + "directed_by": [ + "Apoorva Lakhia" + ], + "initial_release_date": "2005-12-09", + "genre": [ + "Action Film", + "Thriller", + "Crime Fiction", + "Action Thriller", + "Drama", + "Bollywood" + ], + "name": "Ek Ajnabee" + }, + { + "id": "/en/eklavya_the_royal_guard", + "directed_by": [ + "Vidhu Vinod Chopra" + ], + "initial_release_date": "2007-02-16", + "genre": [ + "Historical drama", + "Romance Film", + "Musical", + "Epic film", + "Thriller", + "Bollywood", + "World cinema" + ], + "name": "Eklavya: The Royal Guard" + }, + { + "id": "/en/el_abrazo_partido", + "directed_by": [ + "Daniel Burman" + ], + "initial_release_date": "2004-02-09", + "genre": [ + "Indie film", + "Comedy", + "Comedy-drama", + "Drama" + ], + "name": "Lost Embrace" + }, + { + "id": "/en/el_aura", + "directed_by": [ + "Fabi\u00e1n Bielinsky" + ], + "initial_release_date": "2005-09-15", + "genre": [ + "Thriller", + "Crime Fiction", + "Drama" + ], + "name": "El Aura" + }, + { + "id": "/en/el_crimen_del_padre_amaro", + "directed_by": [ + "Carlos Carrera" + ], + "initial_release_date": "2002-08-16", + "genre": [ + "Romance Film", + "Drama" + ], + "name": "The Crime of Father Amaro" + }, + { + "id": "/en/el_juego_de_arcibel", + "directed_by": [ + "Alberto Lecchi" + ], + "initial_release_date": "2003-05-29", + "genre": [ + "Indie film", + "Political drama", + "World cinema", + "Drama" + ], + "name": "El juego de Arcibel" + }, + { + "id": "/wikipedia/en_title/El_Muerto_$0028film$0029", + "directed_by": [ + "Brian Cox" + ], + "genre": [ + "Indie film", + "Supernatural", + "Thriller", + "Superhero movie", + "Action/Adventure" + ], + "name": "El Muerto" + }, + { + "id": "/en/el_principio_de_arquimedes", + "directed_by": [ + "Gerardo Herrero" + ], + "initial_release_date": "2004-03-26", + "genre": [ + "Drama" + ], + "name": "The Archimedes Principle" + }, + { + "id": "/en/el_raton_perez", + "directed_by": [ + "Juan Pablo Buscarini" + ], + "initial_release_date": "2006-07-13", + "genre": [ + "Fantasy", + "Animation", + "Comedy", + "Family" + ], + "name": "The Hairy Tooth Fairy" + }, + { + "id": "/en/election_2005", + "directed_by": [ + "Johnnie To" + ], + "initial_release_date": "2005-05-14", + "genre": [ + "Crime Fiction", + "Thriller", + "Drama" + ], + "name": "Election" + }, + { + "id": "/en/election_2", + "directed_by": [ + "Johnnie To" + ], + "initial_release_date": "2006-04-04", + "genre": [ + "Thriller", + "Crime Fiction", + "Drama" + ], + "name": "Election 2" + }, + { + "id": "/en/daft_punks_electroma", + "directed_by": [ + "Thomas Bangalter", + "Guy-Manuel de Homem-Christo" + ], + "initial_release_date": "2006-05-21", + "genre": [ + "Indie film", + "Silent film", + "Science Fiction", + "World cinema", + "Avant-garde", + "Experimental film", + "Road movie", + "Drama" + ], + "name": "Daft Punk's Electroma" + }, + { + "id": "/en/elektra_2005", + "directed_by": [ + "Rob Bowman" + ], + "initial_release_date": "2005-01-08", + "genre": [ + "Action Film", + "Action/Adventure", + "Martial Arts Film", + "Superhero movie", + "Thriller", + "Fantasy", + "Crime Fiction" + ], + "name": "Elektra" + }, + { + "id": "/en/elephant_2003", + "directed_by": [ + "Gus Van Sant" + ], + "initial_release_date": "2003-05-18", + "genre": [ + "Teen film", + "Indie film", + "Crime Fiction", + "Thriller", + "Drama" + ], + "name": "Elephant" + }, + { + "id": "/en/elephants_dream", + "directed_by": [ + "Bassam Kurdali" + ], + "initial_release_date": "2006-03-24", + "genre": [ + "Short Film", + "Computer Animation" + ], + "name": "Elephants Dream" + }, + { + "id": "/en/elf_2003", + "directed_by": [ + "Jon Favreau" + ], + "initial_release_date": "2003-10-09", + "genre": [ + "Family", + "Romance Film", + "Comedy", + "Fantasy" + ], + "name": "Elf" + }, + { + "id": "/en/elizabethtown_2005", + "directed_by": [ + "Cameron Crowe" + ], + "initial_release_date": "2005-09-04", + "genre": [ + "Romantic comedy", + "Romance Film", + "Family Drama", + "Comedy-drama", + "Comedy", + "Drama" + ], + "name": "Elizabethtown" + }, + { + "id": "/en/elviras_haunted_hills", + "directed_by": [ + "Sam Irvin" + ], + "initial_release_date": "2001-06-23", + "genre": [ + "Parody", + "Horror", + "Cult film", + "Haunted House Film", + "Horror comedy", + "Comedy" + ], + "name": "Elvira's Haunted Hills" + }, + { + "id": "/en/elvis_has_left_the_building_2004", + "directed_by": [ + "Joel Zwick" + ], + "genre": [ + "Action Film", + "Action/Adventure", + "Road movie", + "Crime Comedy", + "Crime Fiction", + "Comedy" + ], + "name": "Elvis Has Left the Building" + }, + { + "id": "/en/empire_2002", + "directed_by": [ + "Franc. Reyes" + ], + "genre": [ + "Thriller", + "Crime Fiction", + "Indie film", + "Action", + "Drama", + "Action Thriller" + ], + "name": "Empire" + }, + { + "id": "/en/employee_of_the_month_2004", + "directed_by": [ + "Mitch Rouse" + ], + "initial_release_date": "2004-01-17", + "genre": [ + "Black comedy", + "Indie film", + "Heist film", + "Comedy" + ], + "name": "Employee of the Month" + }, + { + "id": "/en/employee_of_the_month", + "directed_by": [ + "Greg Coolidge" + ], + "initial_release_date": "2006-10-06", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ], + "name": "Employee of the Month" + }, + { + "id": "/en/empress_chung", + "directed_by": [ + "Nelson Shin" + ], + "initial_release_date": "2005-08-12", + "genre": [ + "Animation", + "Children's/Family", + "East Asian cinema", + "World cinema" + ], + "name": "Empress Chung" + }, + { + "id": "/en/emr", + "directed_by": [ + "Danny McCullough", + "James Erskine" + ], + "initial_release_date": "2004-03-08", + "genre": [ + "Thriller", + "Mystery", + "Psychological thriller" + ], + "name": "EMR" + }, + { + "id": "/en/en_route", + "directed_by": [ + "Jan Kr\u00fcger" + ], + "initial_release_date": "2004-06-17", + "genre": [ + "Drama" + ], + "name": "En Route" + }, + { + "id": "/en/enakku_20_unakku_18", + "directed_by": [ + "Jyothi Krishna" + ], + "initial_release_date": "2003-12-19", + "genre": [ + "Musical", + "Romance Film", + "Drama", + "Musical Drama" + ], + "name": "Enakku 20 Unakku 18" + }, + { + "id": "/en/enchanted_2007", + "directed_by": [ + "Kevin Lima" + ], + "initial_release_date": "2007-10-20", + "genre": [ + "Musical", + "Fantasy", + "Romance Film", + "Family", + "Comedy", + "Animation", + "Adventure Film", + "Drama", + "Musical comedy", + "Musical Drama" + ], + "name": "Enchanted" + }, + { + "id": "/en/end_of_the_spear", + "directed_by": [ + "Jim Hanon" + ], + "genre": [ + "Docudrama", + "Christian film", + "Indie film", + "Adventure Film", + "Historical period drama", + "Action/Adventure", + "Inspirational Drama", + "Drama" + ], + "name": "End of the Spear" + }, + { + "id": "/en/enduring_love", + "directed_by": [ + "Roger Michell" + ], + "initial_release_date": "2004-09-04", + "genre": [ + "Thriller", + "Mystery", + "Film adaptation", + "Indie film", + "Romance Film", + "Psychological thriller", + "Drama" + ], + "name": "Enduring Love" + }, + { + "id": "/en/enemy_at_the_gates", + "directed_by": [ + "Jean-Jacques Annaud" + ], + "initial_release_date": "2001-02-07", + "genre": [ + "War film", + "Romance Film", + "Action Film", + "Historical fiction", + "Thriller", + "Drama" + ], + "name": "Enemy at the Gates" + }, + { + "id": "/en/enigma_2001", + "directed_by": [ + "Michael Apted" + ], + "initial_release_date": "2001-01-22", + "genre": [ + "Thriller", + "War film", + "Spy film", + "Romance Film", + "Mystery", + "Drama" + ], + "name": "Enigma" + }, + { + "id": "/en/enigma_the_best_of_jeff_hardy", + "directed_by": [ + "Craig Leathers" + ], + "initial_release_date": "2005-10-04", + "genre": [ + "Sports", + "Action Film" + ], + "name": "Enigma: The Best of Jeff Hardy" + }, + { + "id": "/en/enron_the_smartest_guys_in_the_room", + "directed_by": [ + "Alex Gibney" + ], + "initial_release_date": "2005-04-22", + "genre": [ + "Documentary film", + "Indie film", + "Crime Fiction", + "Business", + "Culture & Society", + "Finance & Investing", + "Law & Crime", + "Biographical film" + ], + "name": "Enron: The Smartest Guys in the Room" + }, + { + "id": "/en/envy_2004", + "directed_by": [ + "Barry Levinson" + ], + "initial_release_date": "2004-04-30", + "genre": [ + "Black comedy", + "Cult film", + "Comedy" + ], + "name": "Envy" + }, + { + "id": "/en/equilibrium_2002", + "directed_by": [ + "Kurt Wimmer" + ], + "initial_release_date": "2002-12-06", + "genre": [ + "Science Fiction", + "Dystopia", + "Future noir", + "Thriller", + "Action Film", + "Drama" + ], + "name": "Equilibrium" + }, + { + "id": "/en/eragon_2006", + "directed_by": [ + "Stefen Fangmeier" + ], + "initial_release_date": "2006-12-13", + "genre": [ + "Family", + "Adventure Film", + "Fantasy", + "Sword and sorcery", + "Action Film", + "Drama" + ], + "name": "Eragon" + }, + { + "id": "/en/erin_brockovich_2000", + "directed_by": [ + "Steven Soderbergh" + ], + "initial_release_date": "2000-03-14", + "genre": [ + "Biographical film", + "Legal drama", + "Trial drama", + "Romance Film", + "Docudrama", + "Comedy-drama", + "Feminist Film", + "Drama", + "Drama film" + ], + "name": "Erin Brockovich" + }, + { + "id": "/en/eros_2004", + "directed_by": [ + "Michelangelo Antonioni", + "Steven Soderbergh", + "Wong Kar-wai" + ], + "initial_release_date": "2004-09-10", + "genre": [ + "Romance Film", + "Erotica", + "Drama" + ], + "name": "Eros" + }, + { + "id": "/en/escaflowne", + "directed_by": [ + "Kazuki Akane" + ], + "initial_release_date": "2000-06-24", + "genre": [ + "Adventure Film", + "Science Fiction", + "Fantasy", + "Animation", + "Romance Film", + "Action Film", + "Thriller", + "Drama" + ], + "name": "Escaflowne" + }, + { + "id": "/en/escape_2006", + "directed_by": [ + "Niki Karimi" + ], + "genre": [ + "Drama" + ], + "name": "A Few Days Later" + }, + { + "id": "/en/eternal_sunshine_of_the_spotless_mind", + "directed_by": [ + "Michel Gondry" + ], + "initial_release_date": "2004-03-19", + "genre": [ + "Romance Film", + "Science Fiction", + "Drama" + ], + "name": "Eternal Sunshine of the Spotless Mind" + }, + { + "id": "/en/eulogy_2004", + "directed_by": [ + "Michael Clancy" + ], + "initial_release_date": "2004-10-15", + "genre": [ + "LGBT", + "Black comedy", + "Indie film", + "Comedy" + ], + "name": "Eulogy" + }, + { + "id": "/en/eurotrip", + "directed_by": [ + "Jeff Schaffer", + "Alec Berg", + "David Mandel" + ], + "initial_release_date": "2004-02-20", + "genre": [ + "Sex comedy", + "Adventure Film", + "Teen film", + "Comedy" + ], + "name": "EuroTrip" + }, + { + "id": "/en/evan_almighty", + "directed_by": [ + "Tom Shadyac" + ], + "initial_release_date": "2007-06-21", + "genre": [ + "Religious Film", + "Parody", + "Family", + "Fantasy", + "Fantasy Comedy", + "Heavenly Comedy", + "Comedy" + ], + "name": "Evan Almighty" + }, + { + "id": "/en/everlasting_regret", + "directed_by": [ + "Stanley Kwan" + ], + "initial_release_date": "2005-09-08", + "genre": [ + "Romance Film", + "Chinese Movies", + "Drama" + ], + "name": "Everlasting Regret" + }, + { + "id": "/en/everybody_famous", + "directed_by": [ + "Dominique Deruddere" + ], + "initial_release_date": "2000-04-12", + "genre": [ + "World cinema", + "Comedy", + "Drama" + ], + "name": "Everybody's Famous!" + }, + { + "id": "/en/everymans_feast", + "directed_by": [ + "Fritz Lehner" + ], + "initial_release_date": "2002-01-25", + "genre": [ + "Drama" + ], + "name": "Everyman's Feast" + }, + { + "id": "/en/everyones_hero", + "directed_by": [ + "Christopher Reeve", + "Daniel St. Pierre", + "Colin Brady" + ], + "initial_release_date": "2006-09-15", + "genre": [ + "Computer Animation", + "Family", + "Animation", + "Adventure Film", + "Sports", + "Children's/Family", + "Family-Oriented Adventure" + ], + "name": "Everyone's Hero" + }, + { + "id": "/en/everything_2005", + "directed_by": [], + "initial_release_date": "2005-11-22", + "genre": [ + "Music video" + ], + "name": "Everything" + }, + { + "id": "/en/everything_goes", + "directed_by": [ + "Andrew Kotatko" + ], + "initial_release_date": "2004-06-14", + "genre": [ + "Short Film", + "Drama" + ], + "name": "Everything Goes" + }, + { + "id": "/en/everything_is_illuminated_2005", + "directed_by": [ + "Liev Schreiber" + ], + "initial_release_date": "2005-09-16", + "genre": [ + "Adventure Film", + "Film adaptation", + "Family Drama", + "Comedy-drama", + "Road movie", + "Comedy", + "Drama" + ], + "name": "Everything Is Illuminated" + }, + { + "id": "/en/evilenko", + "directed_by": [ + "David Grieco" + ], + "initial_release_date": "2004-04-16", + "genre": [ + "Thriller", + "Horror", + "Crime Fiction" + ], + "name": "Evilenko" + }, + { + "id": "/en/evolution_2001", + "directed_by": [ + "Ivan Reitman" + ], + "initial_release_date": "2001-06-08", + "genre": [ + "Science Fiction", + "Parody", + "Action Film", + "Action/Adventure", + "Comedy" + ], + "name": "Evolution" + }, + { + "id": "/en/exit_wounds", + "directed_by": [ + "Andrzej Bartkowiak" + ], + "initial_release_date": "2001-03-16", + "genre": [ + "Action Film", + "Mystery", + "Martial Arts Film", + "Action/Adventure", + "Thriller", + "Crime Fiction" + ], + "name": "Exit Wounds" + }, + { + "id": "/en/exorcist_the_beginning", + "directed_by": [ + "Renny Harlin" + ], + "initial_release_date": "2004-08-18", + "genre": [ + "Horror", + "Supernatural", + "Psychological thriller", + "Cult film", + "Historical period drama" + ], + "name": "Exorcist: The Beginning" + }, + { + "id": "/en/extreme_days", + "directed_by": [ + "Eric Hannah" + ], + "initial_release_date": "2001-09-28", + "genre": [ + "Comedy-drama", + "Action Film", + "Christian film", + "Action/Adventure", + "Road movie", + "Teen film", + "Sports" + ], + "name": "Extreme Days" + }, + { + "id": "/en/extreme_ops", + "directed_by": [ + "Christian Duguay" + ], + "initial_release_date": "2002-11-27", + "genre": [ + "Action Film", + "Thriller", + "Action/Adventure", + "Sports", + "Adventure Film", + "Action Thriller", + "Chase Movie" + ], + "name": "Extreme Ops" + }, + { + "id": "/en/face_2004", + "directed_by": [ + "Yoo Sang-gon" + ], + "initial_release_date": "2004-06-11", + "genre": [ + "Horror", + "Thriller", + "Drama", + "East Asian cinema", + "World cinema" + ], + "name": "Face" + }, + { + "id": "/en/la_finestra_di_fronte", + "directed_by": [ + "Ferzan \u00d6zpetek" + ], + "initial_release_date": "2003-02-28", + "genre": [ + "Romance Film", + "Drama" + ], + "name": "Facing Windows" + }, + { + "id": "/en/factory_girl", + "directed_by": [ + "George Hickenlooper" + ], + "initial_release_date": "2006-12-29", + "genre": [ + "Biographical film", + "Indie film", + "Historical period drama", + "Drama" + ], + "name": "Factory Girl" + }, + { + "id": "/en/fahrenheit_9_11", + "directed_by": [ + "Michael Moore" + ], + "initial_release_date": "2004-05-17", + "genre": [ + "Indie film", + "Documentary film", + "War film", + "Culture & Society", + "Crime Fiction", + "Drama" + ], + "name": "Fahrenheit 9/11" + }, + { + "id": "/en/fahrenheit_9_111_2", + "directed_by": [ + "Michael Moore" + ], + "genre": [ + "Documentary film" + ], + "name": "Fahrenheit 9/11\u00bd" + }, + { + "id": "/en/fail_safe_2000", + "directed_by": [ + "Stephen Frears" + ], + "initial_release_date": "2000-04-09", + "genre": [ + "Thriller", + "Science Fiction", + "Black-and-white", + "Film adaptation", + "Suspense", + "Psychological thriller", + "Political drama", + "Drama" + ], + "name": "Fail Safe" + }, + { + "id": "/en/failan", + "directed_by": [ + "Song Hae-sung" + ], + "initial_release_date": "2001-04-28", + "genre": [ + "Romance Film", + "World cinema", + "Drama" + ], + "name": "Failan" + }, + { + "id": "/en/failure_to_launch", + "directed_by": [ + "Tom Dey" + ], + "initial_release_date": "2006-03-10", + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ], + "name": "Failure to Launch" + }, + { + "id": "/en/fake_2003", + "directed_by": [ + "Thanakorn Pongsuwan" + ], + "initial_release_date": "2003-04-28", + "genre": [ + "Romance Film" + ], + "name": "Fake" + }, + { + "id": "/en/falcons_2002", + "directed_by": [ + "Fri\u00f0rik \u00de\u00f3r Fri\u00f0riksson" + ], + "genre": [ + "Drama" + ], + "name": "Falcons" + }, + { + "id": "/en/fallen_2006", + "directed_by": [ + "Mikael Salomon", + "Kevin Kerslake" + ], + "genre": [ + "Science Fiction", + "Fantasy", + "Action/Adventure", + "Drama" + ], + "name": "Fallen" + }, + { + "id": "/en/family_-_ties_of_blood", + "directed_by": [ + "Rajkumar Santoshi" + ], + "initial_release_date": "2006-01-11", + "genre": [ + "Musical", + "Crime Fiction", + "Action Film", + "Romance Film", + "Thriller", + "Drama", + "Musical Drama" + ], + "name": "Family" + }, + { + "id": "/en/familywala", + "directed_by": [ + "Neeraj Vora" + ], + "genre": [ + "Comedy", + "Drama", + "Bollywood", + "World cinema" + ], + "name": "Familywala" + }, + { + "id": "/en/fan_chan", + "directed_by": [ + "Vitcha Gojiew", + "Witthaya Thongyooyong", + "Komgrit Triwimol", + "Nithiwat Tharathorn", + "Songyos Sugmakanan", + "Adisorn Tresirikasem" + ], + "initial_release_date": "2003-10-03", + "genre": [ + "Comedy", + "Romance Film" + ], + "name": "Fan Chan" + }, + { + "id": "/en/fanaa", + "directed_by": [ + "Kunal Kohli" + ], + "initial_release_date": "2006-05-26", + "genre": [ + "Thriller", + "Romance Film", + "Musical", + "Bollywood", + "Musical Drama", + "Drama" + ], + "name": "Fanaa" + }, + { + "id": "/en/fantastic_four_2005", + "directed_by": [ + "Tim Story" + ], + "initial_release_date": "2005-06-29", + "genre": [ + "Fantasy", + "Science Fiction", + "Adventure Film", + "Action Film" + ], + "name": "Fantastic Four" + }, + { + "id": "/en/fantastic_four_and_the_silver_surfer", + "directed_by": [ + "Tim Story" + ], + "initial_release_date": "2007-06-12", + "genre": [ + "Fantasy", + "Science Fiction", + "Action Film", + "Thriller" + ], + "name": "Fantastic Four: Rise of the Silver Surfer" + }, + { + "id": "/en/fantastic_mr_fox_2007", + "directed_by": [ + "Wes Anderson" + ], + "initial_release_date": "2009-10-14", + "genre": [ + "Animation", + "Adventure Film", + "Comedy", + "Family" + ], + "name": "Fantastic Mr. Fox" + }, + { + "id": "/en/faq_frequently_asked_questions", + "directed_by": [ + "Carlos Atanes" + ], + "initial_release_date": "2004-10-12", + "genre": [ + "Science Fiction" + ], + "name": "FAQ: Frequently Asked Questions" + }, + { + "id": "/en/far_cry_2008", + "directed_by": [ + "Uwe Boll" + ], + "initial_release_date": "2008-10-02", + "genre": [ + "Action Film", + "Science Fiction", + "Thriller", + "Adventure Film" + ], + "name": "Far Cry" + }, + { + "id": "/en/far_from_heaven", + "directed_by": [ + "Todd Haynes" + ], + "initial_release_date": "2002-09-01", + "genre": [ + "Romance Film", + "Melodrama", + "Drama" + ], + "name": "Far from Heaven" + }, + { + "id": "/en/farce_of_the_penguins", + "directed_by": [ + "Bob Saget" + ], + "genre": [ + "Parody", + "Mockumentary", + "Adventure Comedy", + "Comedy" + ], + "name": "Farce of the Penguins" + }, + { + "id": "/en/eagles_farewell_1_tour_live_from_melbourne", + "directed_by": [ + "Carol Dodds" + ], + "initial_release_date": "2005-06-14", + "genre": [ + "Music video" + ], + "name": "Eagles: Farewell 1 Tour-Live from Melbourne" + }, + { + "id": "/en/fat_albert", + "directed_by": [ + "Joel Zwick" + ], + "initial_release_date": "2004-12-12", + "genre": [ + "Family", + "Fantasy", + "Romance Film", + "Comedy" + ], + "name": "Fat Albert" + }, + { + "id": "/en/fat_pizza_the_movie", + "directed_by": [ + "Paul Fenech" + ], + "genre": [ + "Comedy" + ], + "name": "Fat Pizza" + }, + { + "id": "/en/fatwa_2006", + "directed_by": [ + "John Carter" + ], + "initial_release_date": "2006-03-24", + "genre": [ + "Thriller", + "Political thriller", + "Drama" + ], + "name": "Fatwa" + }, + { + "id": "/en/faust_love_of_the_damned", + "directed_by": [ + "Brian Yuzna" + ], + "initial_release_date": "2000-10-12", + "genre": [ + "Horror", + "Supernatural" + ], + "name": "Faust: Love of the Damned" + }, + { + "id": "/en/fay_grim", + "directed_by": [ + "Hal Hartley" + ], + "initial_release_date": "2006-09-11", + "genre": [ + "Thriller", + "Action Film", + "Political thriller", + "Indie film", + "Comedy Thriller", + "Comedy", + "Crime Fiction", + "Drama" + ], + "name": "Fay Grim" + }, + { + "id": "/en/fear_and_trembling_2003", + "directed_by": [ + "Alain Corneau" + ], + "genre": [ + "World cinema", + "Japanese Movies", + "Comedy", + "Drama" + ], + "name": "Fear and Trembling" + }, + { + "id": "/en/fear_of_the_dark_2006", + "directed_by": [ + "Glen Baisley" + ], + "initial_release_date": "2001-10-06", + "genre": [ + "Horror", + "Mystery", + "Psychological thriller", + "Thriller", + "Drama" + ], + "name": "Fear of the Dark" + }, + { + "id": "/en/fear_x", + "directed_by": [ + "Nicolas Winding Refn" + ], + "initial_release_date": "2003-01-19", + "genre": [ + "Psychological thriller", + "Thriller" + ], + "name": "Fear X" + }, + { + "id": "/en/feardotcom", + "directed_by": [ + "William Malone" + ], + "initial_release_date": "2002-08-09", + "genre": [ + "Horror", + "Crime Fiction", + "Thriller", + "Mystery" + ], + "name": "FeardotCom" + }, + { + "id": "/en/fearless", + "directed_by": [ + "Ronny Yu" + ], + "initial_release_date": "2006-01-26", + "genre": [ + "Biographical film", + "Action Film", + "Sports", + "Drama" + ], + "name": "Fearless" + }, + { + "id": "/en/feast", + "directed_by": [ + "John Gulager" + ], + "initial_release_date": "2006-09-22", + "genre": [ + "Horror", + "Cult film", + "Monster movie", + "Horror comedy", + "Comedy" + ], + "name": "Feast" + }, + { + "id": "/en/femme_fatale_2002", + "directed_by": [ + "Brian De Palma" + ], + "initial_release_date": "2002-04-30", + "genre": [ + "Thriller", + "Mystery", + "Crime Fiction", + "Erotic thriller" + ], + "name": "Femme Fatale" + }, + { + "id": "/en/festival_2005", + "directed_by": [ + "Annie Griffin" + ], + "initial_release_date": "2005-07-15", + "genre": [ + "Black comedy", + "Parody", + "Comedy" + ], + "name": "Festival" + }, + { + "id": "/en/festival_express", + "directed_by": [ + "Bob Smeaton" + ], + "genre": [ + "Documentary film", + "Concert film", + "History", + "Musical", + "Indie film", + "Rockumentary", + "Music" + ], + "name": "Festival Express" + }, + { + "id": "/en/festival_in_cannes", + "directed_by": [ + "Henry Jaglom" + ], + "initial_release_date": "2001-11-03", + "genre": [ + "Mockumentary", + "Comedy-drama", + "Comedy of manners", + "Ensemble Film", + "Comedy", + "Drama" + ], + "name": "Festival in Cannes" + }, + { + "id": "/en/fever_pitch_2005", + "directed_by": [ + "Bobby Farrelly", + "Peter Farrelly" + ], + "initial_release_date": "2005-04-06", + "genre": [ + "Romance Film", + "Sports", + "Comedy", + "Drama" + ], + "name": "Fever Pitch" + }, + { + "id": "/en/fida", + "directed_by": [ + "Ken Ghosh" + ], + "initial_release_date": "2004-08-20", + "genre": [ + "Romance Film", + "Adventure Film", + "Thriller", + "Drama" + ], + "name": "Fida" + }, + { + "id": "/en/fido_2006", + "directed_by": [ + "Andrew Currie" + ], + "initial_release_date": "2006-09-07", + "genre": [ + "Horror", + "Parody", + "Romance Film", + "Horror comedy", + "Comedy", + "Drama" + ], + "name": "Fido" + }, + { + "id": "/en/fighter_in_the_wind", + "initial_release_date": "2004-08-06", + "name": "Fighter in the Wind", + "directed_by": [ + "Yang Yun-ho", + "Yang Yun-ho" + ], + "genre": [ + "Action/Adventure", + "Action Film", + "War film", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/filantropica", + "initial_release_date": "2002-03-15", + "name": "Filantropica", + "directed_by": [ + "Nae Caranfil" + ], + "genre": [ + "Comedy", + "Black comedy", + "Drama" + ] + }, + { + "id": "/en/film_geek", + "initial_release_date": "2006-02-10", + "name": "Film Geek", + "directed_by": [ + "James Westby" + ], + "genre": [ + "Indie film", + "Workplace Comedy", + "Comedy" + ] + }, + { + "id": "/en/final_destination", + "initial_release_date": "2000-03-16", + "name": "Final Destination", + "directed_by": [ + "James Wong" + ], + "genre": [ + "Slasher", + "Teen film", + "Supernatural", + "Horror", + "Cult film", + "Thriller" + ] + }, + { + "id": "/en/final_destination_3", + "initial_release_date": "2006-02-09", + "name": "Final Destination 3", + "directed_by": [ + "James Wong" + ], + "genre": [ + "Slasher", + "Teen film", + "Horror", + "Thriller" + ] + }, + { + "id": "/en/final_destination_2", + "initial_release_date": "2003-01-30", + "name": "Final Destination 2", + "directed_by": [ + "David R. Ellis" + ], + "genre": [ + "Slasher", + "Teen film", + "Supernatural", + "Horror", + "Cult film", + "Thriller" + ] + }, + { + "id": "/en/final_fantasy_vii_advent_children", + "initial_release_date": "2005-08-31", + "name": "Final Fantasy VII: Advent Children", + "directed_by": [ + "Tetsuya Nomura", + "Takeshi Nozue" + ], + "genre": [ + "Anime", + "Science Fiction", + "Animation", + "Action Film", + "Thriller" + ] + }, + { + "id": "/en/final_fantasy_the_spirits_within", + "initial_release_date": "2001-07-02", + "name": "Final Fantasy: The Spirits Within", + "directed_by": [ + "Hironobu Sakaguchi", + "Motonori Sakakibara" + ], + "genre": [ + "Science Fiction", + "Anime", + "Animation", + "Fantasy", + "Action Film", + "Adventure Film" + ] + }, + { + "id": "/en/final_stab", + "name": "Final Stab", + "directed_by": [ + "David DeCoteau" + ], + "genre": [ + "Horror", + "Slasher", + "Teen film" + ] + }, + { + "id": "/en/find_me_guilty", + "initial_release_date": "2006-02-16", + "name": "Find Me Guilty", + "directed_by": [ + "Sidney Lumet" + ], + "genre": [ + "Crime Fiction", + "Trial drama", + "Docudrama", + "Comedy-drama", + "Courtroom Comedy", + "Crime Comedy", + "Gangster Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/finders_fee", + "initial_release_date": "2001-06-16", + "name": "Finder's Fee", + "directed_by": [ + "Jeff Probst" + ], + "genre": [ + "Thriller", + "Psychological thriller", + "Indie film", + "Suspense", + "Drama" + ] + }, + { + "id": "/en/finding_nemo", + "initial_release_date": "2003-05-30", + "name": "Finding Nemo", + "directed_by": [ + "Andrew Stanton", + "Lee Unkrich" + ], + "genre": [ + "Animation", + "Adventure Film", + "Comedy", + "Family" + ] + }, + { + "id": "/en/finding_neverland", + "initial_release_date": "2004-09-04", + "name": "Finding Neverland", + "directed_by": [ + "Marc Forster" + ], + "genre": [ + "Costume drama", + "Historical period drama", + "Family", + "Biographical film", + "Drama" + ] + }, + { + "id": "/en/fingerprints", + "name": "Fingerprints", + "directed_by": [ + "Harry Basil" + ], + "genre": [ + "Thriller", + "Horror", + "Mystery" + ] + }, + { + "id": "/en/firewall_2006", + "initial_release_date": "2006-02-02", + "name": "Firewall", + "directed_by": [ + "Richard Loncraine" + ], + "genre": [ + "Thriller", + "Action Film", + "Psychological thriller", + "Action/Adventure", + "Crime Thriller", + "Action Thriller" + ] + }, + { + "id": "/en/first_daughter", + "initial_release_date": "2004-09-24", + "name": "First Daughter", + "directed_by": [ + "Forest Whitaker" + ], + "genre": [ + "Romantic comedy", + "Teen film", + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/first_descent", + "initial_release_date": "2005-12-02", + "name": "First Descent", + "directed_by": [ + "Kemp Curly", + "Kevin Harrison" + ], + "genre": [ + "Documentary film", + "Sports", + "Extreme Sports", + "Biographical film" + ] + }, + { + "id": "/en/fiza", + "initial_release_date": "2000-09-08", + "name": "Fiza", + "directed_by": [ + "Khalid Mohamed" + ], + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/flags_of_our_fathers_2006", + "initial_release_date": "2006-10-20", + "name": "Flags of Our Fathers", + "directed_by": [ + "Clint Eastwood" + ], + "genre": [ + "War film", + "History", + "Action Film", + "Film adaptation", + "Historical drama", + "Drama" + ] + }, + { + "id": "/en/flight_from_death", + "initial_release_date": "2006-09-06", + "name": "Flight from Death", + "directed_by": [ + "Patrick Shen" + ], + "genre": [ + "Documentary film" + ] + }, + { + "id": "/en/flight_of_the_phoenix", + "initial_release_date": "2004-12-17", + "name": "Flight of the Phoenix", + "directed_by": [ + "John Moore" + ], + "genre": [ + "Airplanes and airports", + "Disaster Film", + "Action Film", + "Adventure Film", + "Action/Adventure", + "Film adaptation", + "Drama" + ] + }, + { + "id": "/en/flightplan", + "initial_release_date": "2005-09-22", + "name": "Flightplan", + "directed_by": [ + "Robert Schwentke" + ], + "genre": [ + "Thriller", + "Mystery", + "Drama" + ] + }, + { + "id": "/en/flock_of_dodos", + "name": "Flock of Dodos", + "directed_by": [ + "Randy Olson" + ], + "genre": [ + "Documentary film", + "History" + ] + }, + { + "id": "/en/fluffy_the_english_vampire_slayer", + "name": "Fluffy the English Vampire Slayer", + "directed_by": [ + "Henry Burrows" + ], + "genre": [ + "Horror comedy", + "Short Film", + "Fan film", + "Parody" + ] + }, + { + "id": "/en/flushed_away", + "initial_release_date": "2006-10-22", + "name": "Flushed Away", + "directed_by": [ + "David Bowers", + "Sam Fell" + ], + "genre": [ + "Animation", + "Family", + "Adventure Film", + "Children's/Family", + "Family-Oriented Adventure", + "Comedy" + ] + }, + { + "id": "/en/fool_and_final", + "initial_release_date": "2007-06-01", + "name": "Fool & Final", + "directed_by": [ + "Ahmed Khan" + ], + "genre": [ + "Comedy", + "Action Film", + "Romance Film", + "Bollywood", + "World cinema" + ] + }, + { + "id": "/en/foolproof", + "initial_release_date": "2003-10-03", + "name": "Foolproof", + "directed_by": [ + "William Phillips" + ], + "genre": [ + "Action Film", + "Thriller", + "Crime Thriller", + "Action Thriller", + "Caper story", + "Crime Fiction", + "Comedy" + ] + }, + { + "id": "/en/for_the_birds", + "initial_release_date": "2000-06-05", + "name": "For the Birds", + "directed_by": [ + "Ralph Eggleston" + ], + "genre": [ + "Short Film", + "Animation", + "Comedy", + "Family" + ] + }, + { + "id": "/en/for_your_consideration_2006", + "initial_release_date": "2006-11-17", + "name": "For Your Consideration", + "directed_by": [ + "Christopher Guest" + ], + "genre": [ + "Mockumentary", + "Parody", + "Comedy" + ] + }, + { + "id": "/en/diev_mi_kas", + "initial_release_date": "2005-09-23", + "name": "Forest of the Gods", + "directed_by": [ + "Algimantas Puipa" + ], + "genre": [ + "War film", + "Drama" + ] + }, + { + "id": "/en/formula_17", + "initial_release_date": "2004-04-02", + "name": "Formula 17", + "directed_by": [ + "Chen Yin-jung" + ], + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy" + ] + }, + { + "id": "/en/forty_shades_of_blue", + "name": "Forty Shades of Blue", + "directed_by": [ + "Ira Sachs" + ], + "genre": [ + "Indie film", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/four_brothers_2005", + "initial_release_date": "2005-08-12", + "name": "Four Brothers", + "directed_by": [ + "John Singleton" + ], + "genre": [ + "Action Film", + "Crime Fiction", + "Thriller", + "Action/Adventure", + "Family Drama", + "Crime Drama", + "Drama" + ] + }, + { + "id": "/en/frailty", + "initial_release_date": "2001-11-17", + "name": "Frailty", + "directed_by": [ + "Bill Paxton" + ], + "genre": [ + "Psychological thriller", + "Thriller", + "Crime Fiction", + "Drama" + ] + }, + { + "id": "/en/frankenfish", + "initial_release_date": "2004-10-09", + "name": "Frankenfish", + "directed_by": [ + "Mark A.Z. Dipp\u00e9" + ], + "genre": [ + "Action Film", + "Horror", + "Natural horror film", + "Monster", + "Science Fiction" + ] + }, + { + "id": "/en/franklin_and_grannys_secret", + "initial_release_date": "2006-12-20", + "name": "Franklin and the Turtle Lake Treasure", + "directed_by": [ + "Dominique Monf\u00e9ry" + ], + "genre": [ + "Family", + "Animation" + ] + }, + { + "id": "/en/franklin_and_the_green_knight", + "initial_release_date": "2000-10-17", + "name": "Franklin and the Green Knight", + "directed_by": [ + "John van Bruggen" + ], + "genre": [ + "Family", + "Animation" + ] + }, + { + "id": "/en/franklins_magic_christmas", + "initial_release_date": "2001-11-06", + "name": "Franklin's Magic Christmas", + "directed_by": [ + "John van Bruggen" + ], + "genre": [ + "Family", + "Animation" + ] + }, + { + "id": "/en/freaky_friday_2003", + "initial_release_date": "2003-08-04", + "name": "Freaky Friday", + "directed_by": [ + "Mark Waters" + ], + "genre": [ + "Family", + "Fantasy", + "Comedy" + ] + }, + { + "id": "/en/freddy_vs_jason", + "initial_release_date": "2003-08-13", + "name": "Freddy vs. Jason", + "directed_by": [ + "Ronny Yu" + ], + "genre": [ + "Horror", + "Thriller", + "Slasher", + "Action Film", + "Crime Fiction" + ] + }, + { + "id": "/en/free_jimmy", + "initial_release_date": "2006-04-21", + "name": "Free Jimmy", + "directed_by": [ + "Christopher Nielsen" + ], + "genre": [ + "Anime", + "Animation", + "Black comedy", + "Satire", + "Stoner film", + "Comedy" + ] + }, + { + "id": "/en/free_zone", + "initial_release_date": "2005-05-19", + "name": "Free Zone", + "directed_by": [ + "Amos Gitai" + ], + "genre": [ + "Comedy", + "Drama" + ] + }, + { + "id": "/en/freedomland", + "initial_release_date": "2006-02-17", + "name": "Freedomland", + "directed_by": [ + "Joe Roth" + ], + "genre": [ + "Mystery", + "Thriller", + "Crime Fiction", + "Film adaptation", + "Crime Thriller", + "Crime Drama", + "Drama" + ] + }, + { + "id": "/en/french_bean", + "initial_release_date": "2007-03-22", + "name": "Mr. Bean's Holiday", + "directed_by": [ + "Steve Bendelack" + ], + "genre": [ + "Family", + "Comedy", + "Road movie" + ] + }, + { + "id": "/en/frequency_2000", + "initial_release_date": "2000-04-28", + "name": "Frequency", + "directed_by": [ + "Gregory Hoblit" + ], + "genre": [ + "Thriller", + "Time travel", + "Science Fiction", + "Suspense", + "Fantasy", + "Crime Fiction", + "Family Drama", + "Drama" + ] + }, + { + "id": "/en/frida", + "initial_release_date": "2002-08-29", + "name": "Frida", + "directed_by": [ + "Julie Taymor" + ], + "genre": [ + "Biographical film", + "Romance Film", + "Political drama", + "Drama" + ] + }, + { + "id": "/en/friday_after_next", + "initial_release_date": "2002-11-22", + "name": "Friday After Next", + "directed_by": [ + "Marcus Raboy" + ], + "genre": [ + "Buddy film", + "Comedy" + ] + }, + { + "id": "/en/friday_night_lights", + "initial_release_date": "2004-10-06", + "name": "Friday Night Lights", + "directed_by": [ + "Peter Berg" + ], + "genre": [ + "Action Film", + "Sports", + "Drama" + ] + }, + { + "id": "/en/friends_2001", + "initial_release_date": "2001-01-14", + "name": "Friends", + "directed_by": [ + "Siddique" + ], + "genre": [ + "Romance Film", + "Comedy", + "Drama", + "Tamil cinema", + "World cinema" + ] + }, + { + "id": "/en/friends_with_money", + "initial_release_date": "2006-04-07", + "name": "Friends with Money", + "directed_by": [ + "Nicole Holofcener" + ], + "genre": [ + "Romance Film", + "Indie film", + "Comedy-drama", + "Comedy of manners", + "Ensemble Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/fro_the_movie", + "name": "FRO - The Movie", + "directed_by": [ + "Brad Gashler", + "Michael J. Brooks" + ], + "genre": [ + "Comedy-drama" + ] + }, + { + "id": "/en/from_hell_2001", + "initial_release_date": "2001-09-08", + "name": "From Hell", + "directed_by": [ + "Allen Hughes", + "Albert Hughes" + ], + "genre": [ + "Thriller", + "Mystery", + "Biographical film", + "Crime Fiction", + "Slasher", + "Film adaptation", + "Horror", + "Drama" + ] + }, + { + "id": "/en/from_janet_to_damita_jo_the_videos", + "initial_release_date": "2004-09-07", + "name": "From Janet to Damita Jo: The Videos", + "directed_by": [ + "Jonathan Dayton", + "Mark Romanek", + "Paul Hunter" + ], + "genre": [ + "Music video" + ] + }, + { + "id": "/en/from_justin_to_kelly", + "initial_release_date": "2003-06-20", + "name": "From Justin to Kelly", + "directed_by": [ + "Robert Iscove" + ], + "genre": [ + "Musical", + "Romantic comedy", + "Teen film", + "Romance Film", + "Beach Film", + "Musical comedy", + "Comedy" + ] + }, + { + "id": "/en/frostbite_2005", + "name": "Frostbite", + "directed_by": [ + "Jonathan Schwartz" + ], + "genre": [ + "Sports", + "Comedy" + ] + }, + { + "id": "/en/fubar_2002", + "initial_release_date": "2002-01-01", + "name": "FUBAR", + "directed_by": [ + "Michael Dowse" + ], + "genre": [ + "Mockumentary", + "Indie film", + "Buddy film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/fuck_2005", + "initial_release_date": "2005-11-07", + "name": "Fuck", + "directed_by": [ + "Steve Anderson" + ], + "genre": [ + "Documentary film", + "Indie film", + "Political cinema" + ] + }, + { + "id": "/en/fuckland", + "initial_release_date": "2000-09-21", + "name": "Fuckland", + "directed_by": [ + "Jos\u00e9 Luis M\u00e1rques" + ], + "genre": [ + "Indie film", + "Dogme 95", + "Comedy-drama", + "Satire", + "Comedy of manners", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/full_court_miracle", + "initial_release_date": "2003-11-21", + "name": "Full-Court Miracle", + "directed_by": [ + "Stuart Gillard" + ], + "genre": [ + "Family", + "Drama" + ] + }, + { + "id": "/en/full_disclosure_2001", + "initial_release_date": "2001-05-15", + "name": "Full Disclosure", + "directed_by": [ + "John Bradshaw" + ], + "genre": [ + "Thriller", + "Action/Adventure", + "Action Film", + "Political thriller" + ] + }, + { + "id": "/en/full_frontal", + "initial_release_date": "2002-08-02", + "name": "Full Frontal", + "directed_by": [ + "Steven Soderbergh" + ], + "genre": [ + "Romantic comedy", + "Indie film", + "Romance Film", + "Comedy-drama", + "Ensemble Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/wikipedia/ja/$5287$5834$7248_$92FC$306E$932C$91D1$8853$5E2B_$30B7$30E3$30F3$30D0$30E9$3092$5F81$304F$8005", + "initial_release_date": "2005-07-23", + "name": "Fullmetal Alchemist the Movie: Conqueror of Shamballa", + "directed_by": [ + "Seiji Mizushima" + ], + "genre": [ + "Anime", + "Fantasy", + "Action Film", + "Animation", + "Adventure Film", + "Drama" + ] + }, + { + "id": "/en/fulltime_killer", + "initial_release_date": "2001-08-03", + "name": "Fulltime Killer", + "directed_by": [ + "Johnnie To", + "Wai Ka-fai" + ], + "genre": [ + "Action Film", + "Thriller", + "Crime Fiction", + "Martial Arts Film", + "Action Thriller", + "Drama" + ] + }, + { + "id": "/en/fun_with_dick_and_jane_2005", + "initial_release_date": "2005-12-21", + "name": "Fun with Dick and Jane", + "directed_by": [ + "Dean Parisot" + ], + "genre": [ + "Crime Fiction", + "Comedy" + ] + }, + { + "id": "/en/funny_ha_ha", + "name": "Funny Ha Ha", + "directed_by": [ + "Andrew Bujalski" + ], + "genre": [ + "Indie film", + "Romantic comedy", + "Romance Film", + "Mumblecore", + "Comedy-drama", + "Comedy of manners", + "Comedy" + ] + }, + { + "id": "/en/g-sale", + "initial_release_date": "2005-11-15", + "name": "G-Sale", + "directed_by": [ + "Randy Nargi" + ], + "genre": [ + "Mockumentary", + "Comedy of manners", + "Comedy" + ] + }, + { + "id": "/en/gabrielle_2006", + "initial_release_date": "2005-09-05", + "name": "Gabrielle", + "directed_by": [ + "Patrice Ch\u00e9reau" + ], + "genre": [ + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/gagamboy", + "initial_release_date": "2004-01-01", + "name": "Gagamboy", + "directed_by": [ + "Erik Matti" + ], + "genre": [ + "Action Film", + "Science Fiction", + "Comedy", + "Fantasy" + ] + }, + { + "id": "/en/gallipoli_2005", + "initial_release_date": "2005-03-18", + "name": "Gallipoli", + "directed_by": [ + "Tolga \u00d6rnek" + ], + "genre": [ + "Documentary film", + "War film" + ] + }, + { + "id": "/en/game_6_2006", + "initial_release_date": "2006-03-10", + "name": "Game 6", + "directed_by": [ + "Michael Hoffman" + ], + "genre": [ + "Indie film", + "Sports", + "Comedy-drama", + "Drama" + ] + }, + { + "id": "/en/game_over_2003", + "initial_release_date": "2003-06-23", + "name": "Maximum Surge", + "directed_by": [ + "Jason Bourque" + ], + "genre": [ + "Science Fiction" + ] + }, + { + "id": "/en/gamma_squad", + "initial_release_date": "2004-06-14", + "name": "Expendable", + "directed_by": [ + "Nathaniel Barker", + "Eliot Lash" + ], + "genre": [ + "Indie film", + "Short Film", + "War film" + ] + }, + { + "id": "/en/gangotri_2003", + "initial_release_date": "2003-03-28", + "name": "Gangotri", + "directed_by": [ + "Kovelamudi Raghavendra Rao" + ], + "genre": [ + "Romance Film", + "Drama", + "Tollywood", + "World cinema" + ] + }, + { + "id": "/en/gangs_of_new_york", + "initial_release_date": "2002-12-09", + "name": "Gangs of New York", + "directed_by": [ + "Martin Scorsese" + ], + "genre": [ + "Crime Fiction", + "Historical drama", + "Drama" + ] + }, + { + "id": "/en/gangster_2006", + "initial_release_date": "2006-04-28", + "name": "Gangster", + "directed_by": [ + "Anurag Basu" + ], + "genre": [ + "Thriller", + "Romance Film", + "Mystery", + "World cinema", + "Crime Fiction", + "Bollywood", + "Drama" + ] + }, + { + "id": "/en/gangster_no_1", + "initial_release_date": "2000-06-09", + "name": "Gangster No. 1", + "directed_by": [ + "Paul McGuigan" + ], + "genre": [ + "Thriller", + "Crime Fiction", + "Historical period drama", + "Action Film", + "Crime Thriller", + "Action/Adventure", + "Gangster Film", + "Drama" + ] + }, + { + "id": "/en/garam_masala_2005", + "initial_release_date": "2005-11-02", + "name": "Garam Masala", + "directed_by": [ + "Priyadarshan" + ], + "genre": [ + "Comedy" + ] + }, + { + "id": "/en/garcon_stupide", + "initial_release_date": "2004-03-10", + "name": "Gar\u00e7on stupide", + "directed_by": [ + "Lionel Baier" + ], + "genre": [ + "LGBT", + "World cinema", + "Gay", + "Gay Interest", + "Gay Themed", + "Coming of age", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/garden_state", + "initial_release_date": "2004-01-16", + "name": "Garden State", + "directed_by": [ + "Zach Braff" + ], + "genre": [ + "Romantic comedy", + "Coming of age", + "Romance Film", + "Comedy-drama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/garfield_2004", + "initial_release_date": "2004-06-06", + "name": "Garfield: The Movie", + "directed_by": [ + "Peter Hewitt" + ], + "genre": [ + "Slapstick", + "Animation", + "Family", + "Comedy" + ] + }, + { + "id": "/en/garfield_a_tail_of_two_kitties", + "initial_release_date": "2006-06-15", + "name": "Garfield: A Tail of Two Kitties", + "directed_by": [ + "Tim Hill" + ], + "genre": [ + "Family", + "Animal Picture", + "Children's/Family", + "Family-Oriented Adventure", + "Comedy" + ] + }, + { + "id": "/en/gene-x", + "name": "Gene-X", + "directed_by": [ + "Martin Simpson" + ], + "genre": [ + "Thriller", + "Romance Film" + ] + }, + { + "id": "/en/george_of_the_jungle_2", + "initial_release_date": "2003-08-18", + "name": "George of the Jungle 2", + "directed_by": [ + "David Grossman" + ], + "genre": [ + "Parody", + "Slapstick", + "Family", + "Jungle Film", + "Comedy" + ] + }, + { + "id": "/en/george_washington_2000", + "initial_release_date": "2000-09-29", + "name": "George Washington", + "directed_by": [ + "David Gordon Green" + ], + "genre": [ + "Coming of age", + "Indie film", + "Drama" + ] + }, + { + "id": "/en/georgia_rule", + "initial_release_date": "2007-05-10", + "name": "Georgia Rule", + "directed_by": [ + "Garry Marshall" + ], + "genre": [ + "Comedy-drama", + "Romance Film", + "Melodrama", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/gerry", + "initial_release_date": "2003-02-14", + "name": "Gerry", + "directed_by": [ + "Gus Van Sant" + ], + "genre": [ + "Indie film", + "Adventure Film", + "Mystery", + "Avant-garde", + "Experimental film", + "Buddy film", + "Drama" + ] + }, + { + "id": "/en/get_a_clue", + "initial_release_date": "2002-06-28", + "name": "Get a Clue", + "directed_by": [ + "Maggie Greenwald Mansfield" + ], + "genre": [ + "Mystery", + "Comedy" + ] + }, + { + "id": "/en/get_over_it", + "initial_release_date": "2001-03-09", + "name": "Get Over It", + "directed_by": [ + "Tommy O'Haver" + ], + "genre": [ + "Musical", + "Romantic comedy", + "Teen film", + "Romance Film", + "School story", + "Farce", + "Gay", + "Gay Interest", + "Gay Themed", + "Sex comedy", + "Musical comedy", + "Comedy" + ] + }, + { + "id": "/en/get_rich_or_die_tryin", + "initial_release_date": "2005-11-09", + "name": "Get Rich or Die Tryin'", + "directed_by": [ + "Jim Sheridan" + ], + "genre": [ + "Coming of age", + "Crime Fiction", + "Hip hop film", + "Action Film", + "Biographical film", + "Musical Drama", + "Drama" + ] + }, + { + "id": "/en/get_up", + "name": "Get Up!", + "directed_by": [ + "Kazuyuki Izutsu" + ], + "genre": [ + "Musical", + "Action Film", + "Japanese Movies", + "Musical Drama", + "Musical comedy", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/getting_my_brother_laid", + "name": "Getting My Brother Laid", + "directed_by": [ + "Sven Taddicken" + ], + "genre": [ + "Romantic comedy", + "Romance Film", + "Comedy", + "Drama" + ] + }, + { + "id": "/en/getting_there", + "initial_release_date": "2002-06-11", + "name": "Getting There: Sweet 16 and Licensed to Drive", + "directed_by": [ + "Steve Purcell" + ], + "genre": [ + "Family", + "Teen film", + "Comedy" + ] + }, + { + "id": "/en/ghajini", + "initial_release_date": "2005-09-29", + "name": "Ghajini", + "directed_by": [ + "A.R. Murugadoss" + ], + "genre": [ + "Thriller", + "Action Film", + "Mystery", + "Romance Film", + "Drama" + ] + }, + { + "id": "/en/gharshana", + "initial_release_date": "2004-07-30", + "name": "Gharshana", + "directed_by": [ + "Gautham Menon" + ], + "genre": [ + "Mystery", + "Crime Fiction", + "Romance Film", + "Action Film", + "Tollywood", + "World cinema", + "Drama" + ] + }, + { + "id": "/en/ghilli", + "initial_release_date": "2004-04-17", + "name": "Ghilli", + "directed_by": [ + "Dharani" + ], + "genre": [ + "Sports", + "Action Film", + "Romance Film", + "Comedy" + ] + }, + { + "id": "/en/ghost_game_2006", + "initial_release_date": "2005-09-01", + "name": "Ghost Game", + "directed_by": [ + "Joe Knee" + ], + "genre": [ + "Horror comedy" + ] + }, + { + "id": "/en/ghost_house", + "initial_release_date": "2004-09-17", + "name": "Ghost House", + "directed_by": [ + "Kim Sang-jin" + ], + "genre": [ + "Horror", + "Horror comedy", + "Comedy", + "East Asian cinema", + "World cinema" + ] + }, + { + "id": "/en/ghost_in_the_shell_2_innocence", + "initial_release_date": "2004-03-06", + "name": "Ghost in the Shell 2: Innocence", + "directed_by": [ + "Mamoru Oshii" + ], + "genre": [ + "Science Fiction", + "Anime", + "Action Film", + "Animation", + "Thriller", + "Drama" + ] + }, + { + "id": "/en/s_a_c_solid_state_society", + "initial_release_date": "2006-09-01", + "name": "Ghost in the Shell: Solid State Society", + "directed_by": [ + "Kenji Kamiyama" + ], + "genre": [ + "Anime", + "Science Fiction", + "Action Film", + "Animation", + "Thriller", + "Adventure Film", + "Fantasy" + ] + }, + { + "id": "/en/ghost_lake", + "initial_release_date": "2005-05-17", + "name": "Ghost Lake", + "directed_by": [ + "Jay Woelfel" + ], + "genre": [ + "Horror", + "Zombie Film" + ] + }, + { + "id": "/en/ghost_rider_2007", + "initial_release_date": "2007-01-15", + "name": "Ghost Rider", + "genre": [ + "Adventure Film", + "Thriller", + "Fantasy", + "Superhero movie", + "Horror", + "Drama" + ], + "directed_by": [ + "Mark Steven Johnson" + ] + }, + { + "id": "/en/ghost_ship_2002", + "initial_release_date": "2002-10-22", + "name": "Ghost Ship", + "genre": [ + "Horror", + "Supernatural", + "Slasher" + ], + "directed_by": [ + "Steve Beck" + ] + }, + { + "id": "/en/ghost_world_2001", + "initial_release_date": "2001-06-16", + "name": "Ghost World", + "genre": [ + "Indie film", + "Comedy-drama" + ], + "directed_by": [ + "Terry Zwigoff" + ] + }, + { + "id": "/en/ghosts_of_mars", + "initial_release_date": "2001-08-24", + "name": "Ghosts of Mars", + "genre": [ + "Adventure Film", + "Science Fiction", + "Horror", + "Supernatural", + "Action Film", + "Thriller", + "Space Western" + ], + "directed_by": [ + "John Carpenter" + ] + }, + { + "id": "/m/06ry42", + "initial_release_date": "2004-10-28", + "name": "The International Playboys' First Movie: Ghouls Gone Wild!", + "genre": [ + "Short Film", + "Musical" + ], + "directed_by": [ + "Ted Geoghegan" + ] + }, + { + "id": "/en/gie", + "initial_release_date": "2005-07-14", + "name": "Gie", + "genre": [ + "Biographical film", + "Political drama", + "Drama" + ], + "directed_by": [ + "Riri Riza" + ] + }, + { + "id": "/en/gigantic_2003", + "initial_release_date": "2003-03-10", + "name": "Gigantic (A Tale of Two Johns)", + "genre": [ + "Indie film", + "Documentary film" + ], + "directed_by": [ + "A. J. Schnack" + ] + }, + { + "id": "/en/gigli", + "initial_release_date": "2003-07-27", + "name": "Gigli", + "genre": [ + "Crime Thriller", + "Romance Film", + "Romantic comedy", + "Crime Fiction", + "Comedy" + ], + "directed_by": [ + "Martin Brest" + ] + }, + { + "id": "/en/ginger_snaps", + "initial_release_date": "2000-09-10", + "name": "Ginger Snaps", + "genre": [ + "Teen film", + "Horror", + "Cult film" + ], + "directed_by": [ + "John Fawcett" + ] + }, + { + "id": "/en/ginger_snaps_2_unleashed", + "initial_release_date": "2004-01-30", + "name": "Ginger Snaps 2: Unleashed", + "genre": [ + "Thriller", + "Horror", + "Teen film", + "Creature Film", + "Feminist Film", + "Horror comedy", + "Comedy" + ], + "directed_by": [ + "Brett Sullivan" + ] + }, + { + "id": "/en/girlfight", + "initial_release_date": "2000-01-22", + "name": "Girlfight", + "genre": [ + "Teen film", + "Sports", + "Coming-of-age story", + "Drama" + ], + "directed_by": [ + "Karyn Kusama" + ] + }, + { + "id": "/en/gladiator_2000", + "initial_release_date": "2000-05-01", + "name": "Gladiator", + "genre": [ + "Historical drama", + "Epic film", + "Action Film", + "Adventure Film", + "Drama" + ], + "directed_by": [ + "Ridley Scott" + ] + }, + { + "id": "/en/glastonbury_2006", + "initial_release_date": "2006-04-14", + "name": "Glastonbury", + "genre": [ + "Documentary film", + "Music", + "Concert film", + "Biographical film" + ], + "directed_by": [ + "Julien Temple" + ] + }, + { + "id": "/en/glastonbury_anthems", + "name": "Glastonbury Anthems", + "genre": [ + "Documentary film", + "Music", + "Concert film" + ], + "directed_by": [ + "Gavin Taylor", + "Declan Lowney", + "Janet Fraser-Crook", + "Phil Heyes" + ] + }, + { + "id": "/en/glitter_2001", + "initial_release_date": "2001-09-21", + "name": "Glitter", + "genre": [ + "Musical", + "Romance Film", + "Musical Drama", + "Drama" + ], + "directed_by": [ + "Vondie Curtis-Hall" + ] + }, + { + "id": "/en/global_heresy", + "initial_release_date": "2002-09-03", + "name": "Global Heresy", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Sidney J. Furie" + ] + }, + { + "id": "/en/glory_road_2006", + "initial_release_date": "2006-01-13", + "name": "Glory Road", + "genre": [ + "Sports", + "Historical period drama", + "Docudrama", + "Drama" + ], + "directed_by": [ + "James Gartner" + ] + }, + { + "id": "/en/go_figure_2005", + "initial_release_date": "2005-06-10", + "name": "Go Figure", + "genre": [ + "Family", + "Comedy", + "Drama" + ], + "directed_by": [ + "Francine McDougall" + ] + }, + { + "id": "/en/goal__2005", + "initial_release_date": "2005-09-08", + "name": "Goal!", + "genre": [ + "Sports", + "Romance Film", + "Drama" + ], + "directed_by": [ + "Danny Cannon" + ] + }, + { + "id": "/en/goal_2_living_the_dream", + "initial_release_date": "2007-02-09", + "name": "Goal II: Living the Dream", + "genre": [ + "Sports", + "Drama" + ], + "directed_by": [ + "Jaume Collet-Serra" + ] + }, + { + "id": "/en/god_grew_tired_of_us", + "initial_release_date": "2006-09-04", + "name": "God Grew Tired of Us", + "genre": [ + "Documentary film", + "Indie film", + "Historical fiction" + ], + "directed_by": [ + "Christopher Dillon Quinn", + "Tommy Walker" + ] + }, + { + "id": "/en/god_on_my_side", + "initial_release_date": "2006-11-02", + "name": "God on My Side", + "genre": [ + "Documentary film", + "Christian film" + ], + "directed_by": [ + "Andrew Denton" + ] + }, + { + "id": "/en/godavari", + "initial_release_date": "2006-05-19", + "name": "Godavari", + "genre": [ + "Romance Film", + "Drama", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Sekhar Kammula" + ] + }, + { + "id": "/en/godfather", + "initial_release_date": "2006-02-24", + "name": "Varalaru", + "genre": [ + "Action Film", + "Musical", + "Romance Film", + "Tamil cinema", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "K. S. Ravikumar" + ] + }, + { + "id": "/en/godsend", + "initial_release_date": "2004-04-30", + "name": "Godsend", + "genre": [ + "Thriller", + "Science Fiction", + "Horror", + "Psychological thriller", + "Sci-Fi Horror", + "Drama" + ], + "directed_by": [ + "Nick Hamm" + ] + }, + { + "id": "/en/godzilla_3d_to_the_max", + "initial_release_date": "2007-09-12", + "name": "Godzilla 3D to the MAX", + "genre": [ + "Horror", + "Action Film", + "Science Fiction", + "Short Film" + ], + "directed_by": [ + "Keith Melton", + "Yoshimitsu Banno" + ] + }, + { + "id": "/en/godzilla_against_mechagodzilla", + "initial_release_date": "2002-12-15", + "name": "Godzilla Against Mechagodzilla", + "genre": [ + "Monster", + "Science Fiction", + "Cult film", + "World cinema", + "Action Film", + "Creature Film", + "Japanese Movies" + ], + "directed_by": [ + "Masaaki Tezuka" + ] + }, + { + "id": "/en/godzilla_vs_megaguirus", + "initial_release_date": "2000-11-03", + "name": "Godzilla vs. Megaguirus", + "genre": [ + "Monster", + "World cinema", + "Science Fiction", + "Cult film", + "Action Film", + "Creature Film", + "Japanese Movies" + ], + "directed_by": [ + "Masaaki Tezuka" + ] + }, + { + "id": "/en/godzilla_tokyo_sos", + "initial_release_date": "2003-11-03", + "name": "Godzilla: Tokyo SOS", + "genre": [ + "Monster", + "Fantasy", + "World cinema", + "Action/Adventure", + "Science Fiction", + "Cult film", + "Japanese Movies" + ], + "directed_by": [ + "Masaaki Tezuka" + ] + }, + { + "id": "/wikipedia/fr/Godzilla$002C_Mothra_and_King_Ghidorah$003A_Giant_Monsters_All-Out_Attack", + "initial_release_date": "2001-11-03", + "name": "Godzilla, Mothra and King Ghidorah: Giant Monsters All-Out Attack", + "genre": [ + "Science Fiction", + "Action Film", + "Adventure Film", + "Drama" + ], + "directed_by": [ + "Shusuke Kaneko" + ] + }, + { + "id": "/en/godzilla_final_wars", + "initial_release_date": "2004-11-29", + "name": "Godzilla: Final Wars", + "genre": [ + "Fantasy", + "Science Fiction", + "Monster movie" + ], + "directed_by": [ + "Ryuhei Kitamura" + ] + }, + { + "id": "/en/going_the_distance", + "initial_release_date": "2004-08-20", + "name": "Going the Distance", + "genre": [ + "Comedy" + ], + "directed_by": [ + "Mark Griffiths" + ] + }, + { + "id": "/en/going_to_the_mat", + "initial_release_date": "2004-03-19", + "name": "Going to the Mat", + "genre": [ + "Family", + "Sports", + "Drama" + ], + "directed_by": [ + "Stuart Gillard" + ] + }, + { + "id": "/en/going_upriver", + "initial_release_date": "2004-09-14", + "name": "Going Upriver", + "genre": [ + "Documentary film", + "War film", + "Political cinema" + ], + "directed_by": [ + "George Butler" + ] + }, + { + "id": "/en/golmaal", + "initial_release_date": "2006-07-14", + "name": "Golmaal: Fun Unlimited", + "genre": [ + "Musical", + "Musical comedy", + "Comedy" + ], + "directed_by": [ + "Rohit Shetty" + ] + }, + { + "id": "/en/gone_in_sixty_seconds", + "initial_release_date": "2000-06-05", + "name": "Gone in 60 Seconds", + "genre": [ + "Thriller", + "Action Film", + "Crime Fiction", + "Crime Thriller", + "Heist film", + "Action/Adventure" + ], + "directed_by": [ + "Dominic Sena" + ] + }, + { + "id": "/en/good_bye_lenin", + "initial_release_date": "2003-02-09", + "name": "Good bye, Lenin!", + "genre": [ + "Romance Film", + "Comedy", + "Drama", + "Tragicomedy" + ], + "directed_by": [ + "Wolfgang Becker" + ] + }, + { + "id": "/en/good_luck_chuck", + "initial_release_date": "2007-06-13", + "name": "Good Luck Chuck", + "genre": [ + "Romance Film", + "Fantasy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Mark Helfrich" + ] + }, + { + "id": "/en/good_night_and_good_luck", + "initial_release_date": "2005-09-01", + "name": "Good Night, and Good Luck", + "genre": [ + "Political drama", + "Historical drama", + "Docudrama", + "Biographical film", + "Historical fiction", + "Drama" + ], + "directed_by": [ + "George Clooney" + ] + }, + { + "id": "/en/goodbye_dragon_inn", + "initial_release_date": "2003-12-12", + "name": "Goodbye, Dragon Inn", + "genre": [ + "Comedy-drama", + "Comedy of manners", + "Comedy", + "Drama" + ], + "directed_by": [ + "Tsai Ming-liang" + ] + }, + { + "id": "/en/gosford_park", + "initial_release_date": "2001-11-07", + "name": "Gosford Park", + "genre": [ + "Mystery", + "Drama" + ], + "directed_by": [ + "Robert Altman" + ] + }, + { + "id": "/en/gothika", + "initial_release_date": "2003-11-13", + "name": "Gothika", + "genre": [ + "Thriller", + "Horror", + "Psychological thriller", + "Supernatural", + "Crime Thriller", + "Mystery" + ], + "directed_by": [ + "Mathieu Kassovitz" + ] + }, + { + "id": "/en/gotta_kick_it_up", + "name": "Gotta Kick It Up!", + "genre": [ + "Teen film", + "Television film", + "Children's/Family", + "Family" + ], + "directed_by": [ + "Ram\u00f3n Men\u00e9ndez" + ] + }, + { + "id": "/en/goyas_ghosts", + "initial_release_date": "2006-11-08", + "name": "Goya's Ghosts", + "genre": [ + "Biographical film", + "War film", + "Drama" + ], + "directed_by": [ + "Milo\u0161 Forman" + ] + }, + { + "id": "/en/gozu", + "initial_release_date": "2003-07-12", + "name": "Gozu", + "genre": [ + "Horror", + "Surrealism", + "World cinema", + "Japanese Movies", + "Horror comedy", + "Comedy" + ], + "directed_by": [ + "Takashi Miike" + ] + }, + { + "id": "/en/grande_ecole", + "initial_release_date": "2004-02-04", + "name": "Grande \u00c9cole", + "genre": [ + "World cinema", + "LGBT", + "Romance Film", + "Gay", + "Gay Interest", + "Gay Themed", + "Ensemble Film", + "Erotic Drama", + "Drama" + ], + "directed_by": [ + "Robert Salis" + ] + }, + { + "id": "/en/grandmas_boy", + "initial_release_date": "2006-01-06", + "name": "Grandma's Boy", + "genre": [ + "Stoner film", + "Comedy" + ], + "directed_by": [ + "Nicholaus Goossen" + ] + }, + { + "id": "/en/grayson_2004", + "initial_release_date": "2004-07-20", + "name": "Grayson", + "genre": [ + "Indie film", + "Fan film", + "Short Film" + ], + "directed_by": [ + "John Fiorella" + ] + }, + { + "id": "/en/grbavica_2006", + "initial_release_date": "2006-02-12", + "name": "Grbavica: The Land of My Dreams", + "genre": [ + "War film", + "Art film", + "Drama" + ], + "directed_by": [ + "Jasmila \u017dbani\u0107" + ] + }, + { + "id": "/en/green_street", + "initial_release_date": "2005-03-12", + "name": "Green Street", + "genre": [ + "Sports", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "Lexi Alexander" + ] + }, + { + "id": "/en/green_tea_2003", + "initial_release_date": "2003-08-18", + "name": "Green Tea", + "genre": [ + "Romance Film", + "Drama" + ], + "directed_by": [ + "Zhang Yuan" + ] + }, + { + "id": "/en/greenfingers", + "initial_release_date": "2001-09-14", + "name": "Greenfingers", + "genre": [ + "Comedy-drama", + "Prison film", + "Comedy", + "Drama" + ], + "directed_by": [ + "Joel Hershman" + ] + }, + { + "id": "/en/gridiron_gang", + "initial_release_date": "2006-09-15", + "name": "Gridiron Gang", + "genre": [ + "Sports", + "Crime Fiction", + "Drama" + ], + "directed_by": [ + "Phil Joanou" + ] + }, + { + "id": "/en/grill_point", + "initial_release_date": "2002-02-12", + "name": "Grill Point", + "genre": [ + "Drama", + "Comedy", + "Tragicomedy", + "Comedy-drama" + ], + "directed_by": [ + "Andreas Dresen" + ] + }, + { + "id": "/en/grilled", + "initial_release_date": "2006-07-11", + "name": "Grilled", + "genre": [ + "Black comedy", + "Buddy film", + "Workplace Comedy", + "Comedy" + ], + "directed_by": [ + "Jason Ensler" + ] + }, + { + "id": "/en/grind_house", + "initial_release_date": "2007-04-06", + "name": "Grindhouse", + "genre": [ + "Slasher", + "Thriller", + "Action Film", + "Horror", + "Zombie Film" + ], + "directed_by": [ + "Robert Rodriguez", + "Quentin Tarantino", + "Eli Roth", + "Edgar Wright", + "Rob Zombie", + "Jason Eisener" + ] + }, + { + "id": "/en/grizzly_falls", + "initial_release_date": "2004-06-28", + "name": "Grizzly Falls", + "genre": [ + "Adventure Film", + "Animal Picture", + "Family-Oriented Adventure", + "Family", + "Drama" + ], + "directed_by": [ + "Stewart Raffill" + ] + }, + { + "id": "/en/grizzly_man", + "initial_release_date": "2005-01-24", + "name": "Grizzly Man", + "genre": [ + "Documentary film", + "Biographical film" + ], + "directed_by": [ + "Werner Herzog" + ] + }, + { + "id": "/en/grodmin", + "name": "GRODMIN", + "genre": [ + "Avant-garde", + "Experimental film", + "Drama" + ], + "directed_by": [ + "Jim Horwitz" + ] + }, + { + "id": "/en/gudumba_shankar", + "initial_release_date": "2004-09-09", + "name": "Gudumba Shankar", + "genre": [ + "Action Film", + "Drama", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "Veera Shankar" + ] + }, + { + "id": "/en/che_part_two", + "initial_release_date": "2008-05-21", + "name": "Che: Part Two", + "genre": [ + "Biographical film", + "War film", + "Historical drama", + "Drama" + ], + "directed_by": [ + "Steven Soderbergh" + ] + }, + { + "id": "/en/guess_who_2005", + "initial_release_date": "2005-03-25", + "name": "Guess Who", + "genre": [ + "Romance Film", + "Romantic comedy", + "Comedy of manners", + "Domestic Comedy", + "Comedy" + ], + "directed_by": [ + "Kevin Rodney Sullivan" + ] + }, + { + "id": "/en/gunner_palace", + "initial_release_date": "2005-03-04", + "name": "Gunner Palace", + "genre": [ + "Documentary film", + "Indie film", + "War film" + ], + "directed_by": [ + "Michael Tucker", + "Petra Epperlein" + ] + }, + { + "id": "/en/guru_2007", + "initial_release_date": "2007-01-12", + "name": "Guru", + "genre": [ + "Biographical film", + "Musical", + "Romance Film", + "Drama", + "Musical Drama" + ], + "directed_by": [ + "Mani Ratnam" + ] + }, + { + "id": "/en/primeval_2007", + "initial_release_date": "2007-01-12", + "name": "Primeval", + "genre": [ + "Thriller", + "Horror", + "Natural horror film", + "Action/Adventure", + "Action Film" + ], + "directed_by": [ + "Michael Katleman" + ] + }, + { + "id": "/en/gypsy_83", + "name": "Gypsy 83", + "genre": [ + "Coming of age", + "LGBT", + "Black comedy", + "Indie film", + "Comedy-drama", + "Road movie", + "Comedy", + "Drama" + ], + "directed_by": [ + "Todd Stephens" + ] + }, + { + "id": "/en/h_2002", + "initial_release_date": "2002-12-27", + "name": "H", + "genre": [ + "Thriller", + "Horror", + "Drama", + "Mystery", + "Crime Fiction", + "East Asian cinema", + "World cinema" + ], + "directed_by": [ + "Jong-hyuk Lee" + ] + }, + { + "id": "/en/h_g_wells_the_war_of_the_worlds", + "initial_release_date": "2005-06-14", + "name": "H. G. Wells' The War of the Worlds", + "genre": [ + "Indie film", + "Steampunk", + "Science Fiction", + "Thriller" + ], + "directed_by": [ + "Timothy Hines" + ] + }, + { + "id": "/en/h_g_wells_war_of_the_worlds", + "initial_release_date": "2005-06-28", + "name": "H. G. Wells' War of the Worlds", + "genre": [ + "Indie film", + "Science Fiction", + "Thriller", + "Film adaptation", + "Action Film", + "Alien Film", + "Horror", + "Mockbuster", + "Drama" + ], + "directed_by": [ + "David Michael Latt" + ] + }, + { + "id": "/en/hadh_kar_di_aapne", + "initial_release_date": "2000-04-14", + "name": "Hadh Kar Di Aapne", + "genre": [ + "Romantic comedy", + "Bollywood" + ], + "directed_by": [ + "Manoj Agrawal" + ] + }, + { + "id": "/en/haggard_the_movie", + "initial_release_date": "2003-06-24", + "name": "Haggard: The Movie", + "genre": [ + "Indie film", + "Comedy" + ], + "directed_by": [ + "Bam Margera" + ] + }, + { + "id": "/en/haiku_tunnel", + "name": "Haiku Tunnel", + "genre": [ + "Black comedy", + "Indie film", + "Satire", + "Workplace Comedy", + "Comedy" + ], + "directed_by": [ + "Jacob Kornbluth", + "Josh Kornbluth" + ] + }, + { + "id": "/en/hairspray", + "initial_release_date": "2007-07-13", + "name": "Hairspray", + "genre": [ + "Musical", + "Romance Film", + "Comedy", + "Musical comedy" + ], + "directed_by": [ + "Adam Shankman" + ] + }, + { + "id": "/en/half_nelson", + "initial_release_date": "2006-01-23", + "name": "Half Nelson", + "genre": [ + "Social problem film", + "Drama" + ], + "directed_by": [ + "Ryan Fleck" + ] + }, + { + "id": "/en/half_life_2006", + "name": "Half-Life", + "genre": [ + "Fantasy", + "Indie film", + "Science Fiction", + "Fantasy Drama", + "Drama" + ], + "directed_by": [ + "Jennifer Phang" + ] + }, + { + "id": "/en/halloween_resurrection", + "initial_release_date": "2002-07-12", + "name": "Halloween Resurrection", + "genre": [ + "Slasher", + "Horror", + "Cult film", + "Teen film" + ], + "directed_by": [ + "Rick Rosenthal" + ] + }, + { + "id": "/en/halloweentown_high", + "initial_release_date": "2004-10-08", + "name": "Halloweentown High", + "genre": [ + "Fantasy", + "Teen film", + "Fantasy Comedy", + "Comedy", + "Family" + ], + "directed_by": [ + "Mark A.Z. Dipp\u00e9" + ] + }, + { + "id": "/en/halloweentown_ii_kalabars_revenge", + "initial_release_date": "2001-10-12", + "name": "Halloweentown II: Kalabar's Revenge", + "genre": [ + "Fantasy", + "Children's Fantasy", + "Children's/Family", + "Family" + ], + "directed_by": [ + "Mary Lambert" + ] + }, + { + "id": "/en/halloweentown_witch_u", + "initial_release_date": "2006-10-20", + "name": "Return to Halloweentown", + "genre": [ + "Family", + "Children's/Family", + "Fantasy Comedy", + "Comedy" + ], + "directed_by": [ + "David Jackson" + ] + }, + { + "id": "/en/hamlet_2000", + "initial_release_date": "2000-05-12", + "name": "Hamlet", + "genre": [ + "Thriller", + "Romance Film", + "Drama" + ], + "directed_by": [ + "Michael Almereyda" + ] + }, + { + "id": "/en/hana_alice", + "initial_release_date": "2004-03-13", + "name": "Hana and Alice", + "genre": [ + "Romance Film", + "Romantic comedy", + "Comedy", + "Drama" + ], + "directed_by": [ + "Shunji Iwai" + ] + }, + { + "id": "/en/hannibal", + "initial_release_date": "2001-02-09", + "name": "Hannibal", + "genre": [ + "Thriller", + "Psychological thriller", + "Horror", + "Action Film", + "Mystery", + "Crime Thriller", + "Drama" + ], + "directed_by": [ + "Ridley Scott" + ] + }, + { + "id": "/en/hans_och_hennes", + "initial_release_date": "2001-01-29", + "name": "Making Babies", + "genre": [ + "Drama" + ], + "directed_by": [ + "Daniel Lind Lagerl\u00f6f" + ] + }, + { + "id": "/en/hanuman_2005", + "initial_release_date": "2005-10-21", + "name": "Hanuman", + "genre": [ + "Animation", + "Bollywood", + "World cinema" + ], + "directed_by": [ + "V.G. Samant", + "Milind Ukey" + ] + }, + { + "id": "/en/hanuman_junction", + "initial_release_date": "2001-12-21", + "name": "Hanuman Junction", + "genre": [ + "Action Film", + "Comedy", + "Drama", + "Tollywood", + "World cinema" + ], + "directed_by": [ + "M.Raja" + ] + }, + { + "id": "/en/happily_never_after", + "initial_release_date": "2006-12-16", + "name": "Happily N'Ever After", + "genre": [ + "Fantasy", + "Animation", + "Family", + "Comedy", + "Adventure Film" + ], + "directed_by": [ + "Paul J. Bolger", + "Yvette Kaplan" + ] + }, + { + "id": "/en/happy_2006", + "initial_release_date": "2006-01-27", + "name": "Happy", + "genre": [ + "Romance Film", + "Musical", + "Comedy", + "Drama", + "Musical comedy", + "Musical Drama" + ], + "directed_by": [ + "A. Karunakaran" + ] + }, + { + "id": "/en/happy_endings", + "initial_release_date": "2005-01-20", + "name": "Happy Endings", + "genre": [ + "LGBT", + "Music", + "Thriller", + "Romantic comedy", + "Indie film", + "Romance Film", + "Comedy", + "Drama" + ], + "directed_by": [ + "Don Roos" + ] + }, + { + "id": "/en/happy_ero_christmas", + "initial_release_date": "2003-12-17", + "name": "Happy Ero Christmas", + "genre": [ + "Romance Film", + "Comedy", + "East Asian cinema", + "World cinema" + ], + "directed_by": [ + "Lee Geon-dong" + ] + }, + { + "id": "/en/happy_feet", + "initial_release_date": "2006-11-16", + "name": "Happy Feet", + "genre": [ + "Family", + "Animation", + "Comedy", + "Music", + "Musical", + "Musical comedy" + ], + "directed_by": [ + "George Miller", + "Warren Coleman", + "Judy Morris" + ] + }, + { + "id": "/wikipedia/en_title/I_Love_New_Year", + "initial_release_date": "2013-12-30", + "name": "I Love New Year", + "genre": [ + "Caper story", + "Crime Fiction", + "Romantic comedy", + "Romance Film", + "Bollywood", + "World cinema" + ], + "directed_by": [ + "Radhika Rao", + "Vinay Sapru" + ] + }, + { + "id": "/en/har_dil_jo_pyar_karega", + "initial_release_date": "2000-07-24", + "name": "Har Dil Jo Pyar Karega", + "genre": [ + "Musical", + "Romance Film", + "World cinema", + "Musical Drama", + "Drama" + ], + "directed_by": [ + "Raj Kanwar" + ] + }, + { + "id": "/en/hard_candy", + "name": "Hard Candy", + "genre": [ + "Psychological thriller", + "Thriller", + "Suspense", + "Indie film", + "Erotic thriller", + "Drama" + ], + "directed_by": [ + "David Slade" + ] + }, + { + "id": "/en/hard_luck", + "initial_release_date": "2006-10-17", + "name": "Hard Luck", + "genre": [ + "Thriller", + "Crime Fiction", + "Action/Adventure", + "Action Film", + "Drama" + ], + "directed_by": [ + "Mario Van Peebles" + ] + }, + { + "id": "/en/hardball", + "initial_release_date": "2001-09-14", + "name": "Hardball", + "genre": [ + "Sports", + "Drama" + ], + "directed_by": [ + "Brian Robbins" + ] + }, + { + "id": "/en/harold_kumar_go_to_white_castle", + "initial_release_date": "2004-05-20", + "name": "Harold & Kumar Go to White Castle", + "genre": [ + "Stoner film", + "Buddy film", + "Adventure Film", + "Comedy" + ], + "directed_by": [ + "Danny Leiner" + ] + }, + { + "id": "/en/harry_potter_and_the_chamber_of_secrets_2002", + "initial_release_date": "2002-11-03", + "name": "Harry Potter and the Chamber of Secrets", + "genre": [ + "Adventure Film", + "Family", + "Fantasy", + "Mystery" + ], + "directed_by": [ + "Chris Columbus" + ] + }, + { + "id": "/en/harry_potter_and_the_goblet_of_fire_2005", + "initial_release_date": "2005-11-06", + "name": "Harry Potter and the Goblet of Fire", + "genre": [ + "Family", + "Fantasy", + "Adventure Film", + "Thriller", + "Science Fiction", + "Supernatural", + "Mystery", + "Children's Fantasy", + "Children's/Family", + "Fantasy Adventure", + "Fiction" + ], + "directed_by": [ + "Mike Newell" + ] + }, + { + "id": "/en/harry_potter_and_the_half_blood_prince_2008", + "initial_release_date": "2009-07-06", + "name": "Harry Potter and the Half-Blood Prince", + "genre": [ + "Adventure Film", + "Fantasy", + "Mystery", + "Action Film", + "Family", + "Romance Film", + "Children's Fantasy", + "Children's/Family", + "Fantasy Adventure", + "Fiction" + ], + "directed_by": [ + "David Yates" + ] + }, + { + "id": "/en/harry_potter_and_the_order_of_the_phoenix_2007", + "initial_release_date": "2007-06-28", + "name": "Harry Potter and the Order of the Phoenix", + "genre": [ + "Family", + "Mystery", + "Adventure Film", + "Fantasy", + "Fantasy Adventure", + "Fiction" + ], + "directed_by": [ + "David Yates" + ] + } +] diff --git a/solr-8.3.1/example/films/films.xml b/solr-8.3.1/example/films/films.xml new file mode 100644 index 000000000..e801ad40f --- /dev/null +++ b/solr-8.3.1/example/films/films.xml @@ -0,0 +1,11438 @@ + + + + /en/45_2006 + Gary Lennon + 2006-11-30 + Black comedy + Thriller + Psychological thriller + Indie film + Action Film + Crime Thriller + Crime Fiction + Drama + .45 + + + /en/9_2005 + Shane Acker + 2005-04-21 + Computer Animation + Animation + Apocalyptic and post-apocalyptic fiction + Science Fiction + Short Film + Thriller + Fantasy + 9 + + + /en/69_2004 + Lee Sang-il + 2004-07-10 + Japanese Movies + Drama + 69 + + + /en/300_2007 + Zack Snyder + 2006-12-09 + Epic film + Adventure Film + Fantasy + Action Film + Historical fiction + War film + Superhero movie + Historical Epic + 300 + + + /en/2046_2004 + Wong Kar-wai + 2004-05-20 + Romance Film + Fantasy + Science Fiction + Drama + 2046 + + + /en/quien_es_el_senor_lopez + Luis Mandoki + Documentary film + ¿Quién es el señor López? + + + /en/weird_al_yankovic_the_ultimate_video_collection + Jay Levey + "Weird Al" Yankovic + 2003-11-04 + Music video + Parody + "Weird Al" Yankovic: The Ultimate Video Collection + + + /en/15_park_avenue + Aparna Sen + 2005-10-27 + Art film + Romance Film + Musical + Drama + Musical Drama + 15 Park Avenue + + + /en/2_fast_2_furious + John Singleton + 2003-06-03 + Thriller + Action Film + Crime Fiction + 2 Fast 2 Furious + + + /en/7g_rainbow_colony + Selvaraghavan + 2004-10-15 + Drama + 7G Rainbow Colony + + + /en/3-iron + Kim Ki-duk + 2004-09-07 + Crime Fiction + Romance Film + East Asian cinema + World cinema + Drama + 3-Iron + + + /en/10_5_apocalypse + John Lafia + 2006-03-18 + Disaster Film + Thriller + Television film + Action/Adventure + Action Film + 10.5: Apocalypse + + + /en/8_mile + Curtis Hanson + 2002-09-08 + Musical + Hip hop film + Drama + Musical Drama + 8 Mile + + + /en/100_girls + Michael Davis + 2001-09-25 + Romantic comedy + Romance Film + Indie film + Teen film + Comedy + 100 Girls + + + /en/40_days_and_40_nights + Michael Lehmann + 2002-03-01 + Romance Film + Romantic comedy + Sex comedy + Comedy + Drama + 40 Days and 40 Nights + + + /en/50_cent_the_new_breed + Don Robinson + Damon Johnson + Philip Atwell + Ian Inaba + Stephen Marshall + John Quigley + Jessy Terrero + Noa Shaw + 2003-04-15 + Documentary film + Music + Concert film + Biographical film + 50 Cent: The New Breed + + + /en/3_the_dale_earnhardt_story + Russell Mulcahy + 2004-12-11 + Sports + Auto racing + Biographical film + Drama + 3: The Dale Earnhardt Story + + + /en/61__2001 + Billy Crystal + 2001-04-28 + Sports + History + Historical period drama + Television film + Drama + 61* + + + /en/24_hour_party_people + Michael Winterbottom + 2002-02-13 + Biographical film + Comedy-drama + Comedy + Music + Drama + 24 Hour Party People + + + /en/10th_wolf + Robert Moresco + 2006-08-18 + Mystery + Thriller + Crime Fiction + Crime Thriller + Gangster Film + Drama + 10th &amp; Wolf + + + /en/25th_hour + Spike Lee + 2002-12-16 + Crime Fiction + Drama + 25th Hour + + + /en/7_seconds_2005 + Simon Fellows + 2005-06-28 + Thriller + Action Film + Crime Fiction + 7 Seconds + + + /en/28_days_later + Danny Boyle + 2002-11-01 + Science Fiction + Horror + Thriller + 28 Days Later + + + /en/21_grams + Alejandro González Iñárritu + 2003-09-05 + Thriller + Ensemble Film + Crime Fiction + Drama + 21 Grams + + + /en/9th_company + Fedor Bondarchuk + 2005-09-29 + War film + Action Film + Historical fiction + Drama + The 9th Company + + + /en/102_dalmatians + Kevin Lima + 2000-11-22 + Family + Adventure Film + Comedy + 102 Dalmatians + + + /en/16_years_of_alcohol + Richard Jobson + 2003-08-14 + Indie film + Drama + 16 Years of Alcohol + + + /en/12b + Jeeva + 2001-09-28 + Romance Film + Comedy + Tamil cinema + World cinema + Drama + 12B + + + /en/2009_lost_memories + Lee Si-myung + 2002-02-01 + Thriller + Action Film + Science Fiction + Mystery + Drama + 2009 Lost Memories + + + /en/16_blocks + Richard Donner + 2006-03-01 + Thriller + Crime Fiction + Action Film + Drama + 16 Blocks + + + /en/15_minutes + John Herzfeld + 2001-03-01 + Thriller + Action Film + Crime Fiction + Crime Thriller + Drama + 15 Minutes + + + /en/50_first_dates + Peter Segal + 2004-02-13 + Romantic comedy + Romance Film + Comedy + 50 First Dates + + + /en/9_songs + Michael Winterbottom + 2004-05-16 + Erotica + Musical + Romance Film + Erotic Drama + Musical Drama + Drama + 9 Songs + + + /en/20_fingers_2004 + Mania Akbari + 2004-09-01 + World cinema + Drama + 20 Fingers + + + /en/3_needles + Thom Fitzgerald + 2006-12-01 + Indie film + Social problem film + Chinese Movies + Drama + 3 Needles + + + /en/28_days_2000 + Betty Thomas + 2000-02-08 + Comedy-drama + Romantic comedy + Comedy + Drama + 28 Days + + + /en/36_china_town + Abbas Burmawalla + Mustan Burmawalla + 2006-04-21 + Thriller + Musical + Comedy + Mystery + Crime Fiction + Bollywood + Musical comedy + 36 China Town + + + /en/7_mujeres_1_homosexual_y_carlos + Rene Bueno + 2004-06-01 + Romantic comedy + LGBT + Romance Film + World cinema + Sex comedy + Comedy + Drama + 7 mujeres, 1 homosexual y Carlos + + + /en/88_minutes + Jon Avnet + 2007-02-14 + Thriller + Psychological thriller + Mystery + Drama + 88 Minutes + + + /en/500_years_later + Owen 'Alik Shahadah + 2005-10-11 + Indie film + Documentary film + History + 500 Years Later + + + /en/50_ways_of_saying_fabulous + Stewart Main + LGBT + Indie film + Historical period drama + Gay Themed + World cinema + Coming of age + Drama + 50 Ways of Saying Fabulous + + + /en/5x2 + François Ozon + 2004-09-01 + Romance Film + World cinema + Marriage Drama + Fiction + Drama + 5x2 + + + /en/28_weeks_later + Juan Carlos Fresnadillo + 2007-04-26 + Science Fiction + Horror + Thriller + 28 Weeks Later + + + /en/10_5 + John Lafia + 2004-05-02 + Disaster Film + Thriller + Action/Adventure + Drama + 10.5 + + + /en/13_going_on_30 + Gary Winick + 2004-04-14 + Romantic comedy + Coming of age + Fantasy + Romance Film + Fantasy Comedy + Comedy + 13 Going on 30 + + + /en/2ldk + Yukihiko Tsutsumi + 2004-05-13 + LGBT + Thriller + Psychological thriller + World cinema + Japanese Movies + Comedy + Drama + 2LDK + + + /en/7_phere + Ishaan Trivedi + 2005-07-29 + Bollywood + Comedy + Drama + 7½ Phere + + + /en/a_beautiful_mind + Ron Howard + 2001-12-13 + Biographical film + Psychological thriller + Historical period drama + Romance Film + Marriage Drama + Documentary film + Drama + A Beautiful Mind + + + /en/a_cinderella_story + Mark Rosman + 2004-07-10 + Teen film + Romantic comedy + Romance Film + Family + Comedy + A Cinderella Story + + + /en/a_cock_and_bull_story + Michael Winterbottom + 2005-07-17 + Mockumentary + Indie film + Comedy + Drama + A Cock and Bull Story + + + /en/a_common_thread + Éléonore Faucher + 2004-05-14 + Romance Film + Drama + A Common Thread + + + /en/a_dirty_shame + John Waters + 2004-09-12 + Sex comedy + Cult film + Parody + Black comedy + Gross out + Gross-out film + Comedy + A Dirty Shame + + + /en/a_duo_occasion + Pierre Lamoureux + 2005-11-22 + Music video + A Duo Occasion + + + /en/a_good_year + Ridley Scott + 2006-09-09 + Romantic comedy + Film adaptation + Romance Film + Comedy-drama + Slice of life + Comedy of manners + Comedy + Drama + A Good Year + + + /en/a_history_of_violence_2005 + David Cronenberg + 2005-05-16 + Thriller + Psychological thriller + Crime Fiction + Drama + A History of Violence + + + /en/ett_hal_i_mitt_hjarta + Lukas Moodysson + 2004-09-10 + Horror + Experimental film + Social problem film + Drama + A Hole in My Heart + + + /en/a_knights_tale + Brian Helgeland + 2001-03-08 + Romantic comedy + Adventure Film + Action Film + Action/Adventure + Historical period drama + Costume Adventure + Comedy + Drama + A Knight's Tale + + + /en/a_league_of_ordinary_gentlemen + Christopher Browne + Alexander H. Browne + 2006-03-21 + Documentary film + Sports + Culture &amp; Society + Biographical film + A League of Ordinary Gentlemen + + + /en/a_little_trip_to_heaven + Baltasar Kormákur + 2005-12-26 + Thriller + Crime Fiction + Black comedy + Indie film + Comedy-drama + Detective fiction + Ensemble Film + Drama + A Little Trip to Heaven + + + /en/a_lot_like_love + Nigel Cole + 2005-04-21 + Romantic comedy + Romance Film + Comedy-drama + Comedy + Drama + A Lot like Love + + + /en/a_love_song_for_bobby_long + Shainee Gabel + 2004-09-02 + Film adaptation + Melodrama + Drama + A Love Song for Bobby Long + + + /en/a_man_a_real_one + Arnaud Larrieu + Jean-Marie Larrieu + 2003-05-28 + Comedy + Drama + A Man, a Real One + + + /en/a_midsummer_nights_rave + Gil Cates Jr. + Romance Film + Romantic comedy + Teen film + Comedy + Drama + A Midsummer Night's Rave + + + /en/a_mighty_wind + Christopher Guest + 2003-03-12 + Mockumentary + Parody + Musical + Musical comedy + Comedy + A Mighty Wind + + + /en/a_perfect_day + Khalil Joreige + Joana Hadjithomas + World cinema + Drama + A Perfect Day + + + /en/a_prairie_home_companion_2006 + Robert Altman + 2006-02-12 + Musical comedy + Drama + A Prairie Home Companion + + + /en/a_ring_of_endless_light_2002 + Greg Beeman + 2002-08-23 + Drama + A Ring of Endless Light + + + /en/a_scanner_darkly_2006 + Richard Linklater + 2006-07-07 + Science Fiction + Dystopia + Animation + Future noir + Film adaptation + Thriller + Drama + A Scanner Darkly + + + /en/a_short_film_about_john_bolton + Neil Gaiman + Documentary film + Short Film + Black comedy + Indie film + Mockumentary + Graphic &amp; Applied Arts + Comedy + Biographical film + A Short Film About John Bolton + + + /en/a_shot_in_the_west + Bob Kelly + 2006-07-16 + Western + Short Film + A Shot in the West + + + /en/a_sound_of_thunder_2005 + Peter Hyams + 2005-05-15 + Science Fiction + Adventure Film + Thriller + Action Film + Apocalyptic and post-apocalyptic fiction + Time travel + A Sound of Thunder + + + /en/a_state_of_mind + Daniel Gordon + 2005-08-10 + Documentary film + Political cinema + Sports + A State of Mind + + + /en/a_time_for_drunken_horses + Bahman Ghobadi + World cinema + War film + Drama + A Time for Drunken Horses + + + /en/a_ton_image + Aruna Villiers + 2004-05-26 + Thriller + Science Fiction + À ton image + + + /en/a_very_long_engagement + Jean-Pierre Jeunet + 2004-10-27 + War film + Romance Film + World cinema + Drama + A Very Long Engagement + + + /en/a_view_from_the_eiffel_tower + Nikola Vukčević + Drama + A View from Eiffel Tower + + + /en/a_walk_to_remember + Adam Shankman + 2002-01-23 + Coming of age + Romance Film + Drama + A Walk to Remember + + + /en/a_i + Steven Spielberg + 2001-06-26 + Science Fiction + Future noir + Adventure Film + Drama + A.I. Artificial Intelligence + + + /en/a_k_a_tommy_chong + Josh Gilbert + 2006-06-14 + Documentary film + Culture &amp; Society + Law &amp; Crime + Biographical film + a/k/a Tommy Chong + + + /en/aalvar + Chella + 2007-01-12 + Action Film + Tamil cinema + World cinema + Aalvar + + + /en/aap_ki_khatir + Dharmesh Darshan + 2006-08-25 + Romance Film + Romantic comedy + Bollywood + Drama + Aap Ki Khatir + + + /en/aaru_2005 + Hari + 2005-12-09 + Thriller + Action Film + Drama + Tamil cinema + World cinema + Aaru + + + /en/aata + V.N. Aditya + 2007-05-09 + Romance Film + Tollywood + World cinema + Aata + + + /en/aathi + Ramana + 2006-01-14 + Thriller + Romance Film + Musical + Action Film + Tamil cinema + World cinema + Drama + Musical Drama + Aadhi + + + /en/aayitha_ezhuthu + Mani Ratnam + 2004-05-21 + Thriller + Political thriller + Tamil cinema + World cinema + Drama + Aaytha Ezhuthu + + + /en/abandon_2002 + Stephen Gaghan + 2002-10-18 + Mystery + Thriller + Psychological thriller + Suspense + Drama + Abandon + + + /en/abduction_the_megumi_yokota_story + Patty Kim + Chris Sheridan + Documentary film + Political cinema + Culture &amp; Society + Law &amp; Crime + Abduction: The Megumi Yokota Story + + + /en/about_a_boy_2002 + Chris Weitz + Paul Weitz + 2002-04-26 + Romance Film + Comedy + Drama + About a Boy + + + /en/about_schmidt + Alexander Payne + 2002-05-22 + Black comedy + Indie film + Comedy-drama + Tragicomedy + Comedy of manners + Comedy + Drama + About Schmidt + + + /en/accepted + Steve Pink + 2006-08-18 + Teen film + Comedy + Accepted + + + /en/across_the_hall + Alex Merkin + Alex Merkin + Short Film + Thriller + Drama + Across the Hall + + + /en/adam_steve + Craig Chester + 2005-04-24 + Romance Film + Romantic comedy + LGBT + Gay Themed + Indie film + Gay + Gay Interest + Comedy + Adam &amp; Steve + + + /en/adam_resurrected + Paul Schrader + 2008-08-30 + Historical period drama + Film adaptation + War film + Drama + Adam Resurrected + + + /en/adaptation_2002 + Spike Jonze + 2002-12-06 + Crime Fiction + Comedy + Drama + Adaptation + + + /en/address_unknown + Kim Ki-duk + 2001-06-02 + War film + Drama + Address Unknown + + + /en/adrenaline_rush_2002 + Marc Fafard + 2002-10-18 + Documentary film + Short Film + Adrenaline Rush + + + /en/essential_keys_to_better_bowling_2006 + Documentary film + Sports + Essential Keys To Better Bowling + + + /en/adventures_into_digital_comics + Sébastien Dumesnil + Documentary film + Adventures Into Digital Comics + + + /en/ae_fond_kiss + Ken Loach + 2004-02-13 + Romance Film + Drama + Ae Fond Kiss... + + + /en/aetbaar + Vikram Bhatt + 2004-01-23 + Thriller + Romance Film + Mystery + Horror + Musical + Bollywood + World cinema + Drama + Musical Drama + Aetbaar + + + /en/aethiree + 2004-04-23 + Comedy + Tamil cinema + World cinema + K. S. Ravikumar + Aethirree + + + /en/after_innocence + Documentary film + Crime Fiction + Political cinema + Culture &amp; Society + Law &amp; Crime + Biographical film + Jessica Sanders + After Innocence + + + /en/after_the_sunset + 2004-11-10 + Crime Fiction + Action/Adventure + Action Film + Crime Thriller + Heist film + Caper story + Crime Comedy + Comedy + Brett Ratner + After the Sunset + + + /en/aftermath_2007 + 2013-03-01 + Crime Fiction + Thriller + Thomas Farone + Aftermath + + + /en/against_the_ropes + 2004-02-20 + Biographical film + Sports + Drama + Charles S. Dutton + Against the Ropes + + + /en/agent_cody_banks_2_destination_london + 2004-03-12 + Adventure Film + Action Film + Family + Action/Adventure + Spy film + Children's/Family + Family-Oriented Adventure + Comedy + Kevin Allen + Agent Cody Banks 2: Destination London + + + /en/agent_one-half + Comedy + Brian Bero + Agent One-Half + + + /en/agnes_and_his_brothers + 2004-09-05 + Drama + Comedy + Oskar Roehler + Agnes and His Brothers + + + /en/aideista_parhain + 2005-08-25 + War film + Drama + Klaus Härö + Mother of Mine + + + /en/aileen_life_and_death_of_a_serial_killer + 2003-05-10 + Documentary film + Crime Fiction + Political drama + Nick Broomfield + Joan Churchill + Aileen: Life and Death of a Serial Killer + + + /en/air_2005 + 2005-02-05 + Fantasy + Anime + Animation + Japanese Movies + Drama + Osamu Dezaki + Air + + + /en/air_bud_seventh_inning_fetch + 2002-02-21 + Family + Sports + Comedy + Drama + Robert Vince + Air Bud: Seventh Inning Fetch + + + /en/air_bud_spikes_back + 2003-06-24 + Family + Sports + Comedy + Mike Southon + Air Bud: Spikes Back + + + /en/air_buddies + 2006-12-10 + Family + Animal Picture + Children's/Family + Family-Oriented Adventure + Comedy + Robert Vince + Air Buddies + + + /en/aitraaz + 2004-11-12 + Trial drama + Thriller + Bollywood + World cinema + Drama + Abbas Burmawalla + Mustan Burmawalla + Aitraaz + + + /en/aka_2002 + 2002-01-19 + LGBT + Indie film + Historical period drama + Drama + Duncan Roy + AKA + + + /en/aakasha_gopuram + 2008-08-22 + Romance Film + Drama + Malayalam Cinema + World cinema + K.P.Kumaran + Aakasha Gopuram + + + /en/akbar-jodha + 2008-02-13 + Biographical film + Romance Film + Musical + World cinema + Adventure Film + Action Film + Historical fiction + Musical Drama + Drama + Ashutosh Gowariker + Jodhaa Akbar + + + /en/akeelah_and_the_bee + 2006-03-16 + Drama + Doug Atchison + Akeelah and the Bee + + + /en/aks + 2001-07-13 + Horror + Thriller + Mystery + Bollywood + World cinema + Rakeysh Omprakash Mehra + The Reflection + + + /en/aksar + 2006-02-03 + Romance Film + World cinema + Thriller + Drama + Anant Mahadevan + Aksar + + + /en/al_franken_god_spoke + 2006-09-13 + Mockumentary + Documentary film + Political cinema + Culture &amp; Society + Biographical film + Nick Doob + Chris Hegedus + Al Franken: God Spoke + + + /en/alag + 2006-06-16 + Thriller + Science Fiction + Bollywood + World cinema + Ashu Trikha + Different + + + /en/alai + 2003-09-10 + Romance Film + Drama + Comedy + Tamil cinema + World cinema + Vikram Kumar + Wave + + + /en/alaipayuthey + 2000-04-14 + Musical + Romance Film + Musical Drama + Drama + Mani Ratnam + Waves + + + /en/alatriste + 2006-09-01 + Thriller + War film + Adventure Film + Action Film + Drama + Historical fiction + Agustín Díaz Yanes + Alatriste + + + /en/alex_emma + 2003-06-20 + Romantic comedy + Romance Film + Comedy + Rob Reiner + Alex &amp; Emma + + + /en/alexander_2004 + 2004-11-16 + War film + Action Film + Adventure Film + Romance Film + Biographical film + Historical fiction + Drama + Oliver Stone + Wilhelm Sasnal + Anka Sasnal + Alexander + + + /en/alexandras_project + Thriller + Suspense + Psychological thriller + Indie film + World cinema + Drama + Rolf de Heer + Alexandra's Project + + + /en/alfie_2004 + 2004-10-22 + Sex comedy + Remake + Comedy-drama + Romance Film + Romantic comedy + Comedy + Drama + Charles Shyer + Alfie + + + /en/ali_2001 + 2001-12-11 + Biographical film + Sports + Historical period drama + Sports films + Drama + Michael Mann + Ali + + + /en/ali_g_indahouse + 2002-03-22 + Stoner film + Parody + Gross out + Gross-out film + Comedy + Mark Mylod + Ali G Indahouse + + + /en/alien_autopsy_2006 + 2006-04-07 + Science Fiction + Mockumentary + Comedy + Jonny Campbell + Alien Autopsy + + + /en/avp_alien_vs_predator + 2004-08-12 + Science Fiction + Horror + Action Film + Monster movie + Thriller + Adventure Film + Paul W. S. Anderson + Alien vs. Predator + + + /en/avpr_aliens_vs_predator_requiem + 2007-12-25 + Science Fiction + Action Film + Action/Adventure + Horror + Monster movie + Thriller + Colin Strause + Greg Strause + AVPR: Aliens vs Predator - Requiem + + + /en/aliens_of_the_deep + 2005-01-28 + Documentary film + Travel + Education + Biological Sciences + James Cameron + Steven Quale + Steven Quale + Aliens of the Deep + + + /en/alive_2002 + 2002-09-12 + Science Fiction + Action Film + Horror + Thriller + World cinema + Action/Adventure + Japanese Movies + Ryuhei Kitamura + Alive + + + /en/all_about_lily_chou-chou + 2001-09-07 + Crime Fiction + Musical + Thriller + Art film + Romance Film + Drama + Musical Drama + Shunji Iwai + All About Lily Chou-Chou + + + /en/all_about_the_benjamins + 2002-03-08 + Action Film + Crime Fiction + Comedy + Thriller + Kevin Bray + All About the Benjamins + + + /en/all_i_want_2002 + 2002-09-10 + Romantic comedy + Coming of age + Romance Film + Comedy + Jeffrey Porter + All I Want + + + /en/all_over_the_guy + Indie film + LGBT + Romantic comedy + Romance Film + Gay + Gay Interest + Gay Themed + Comedy + Julie Davis + All Over the Guy + + + /en/all_souls_day_2005 + 2005-01-25 + Horror + Supernatural + Zombie Film + Jeremy Kasten + Mark A. Altman + All Souls Day + + + /en/all_the_kings_men_2006 + 2006-09-10 + Political drama + Thriller + Steven Zaillian + All the King's Men + + + /en/all_the_real_girls + 2003-01-19 + Romance Film + Indie film + Coming of age + Drama + David Gordon Green + All the Real Girls + + + /en/allari_bullodu + Comedy + Romance Film + Tollywood + World cinema + Kovelamudi Raghavendra Rao + Allari Bullodu + + + /en/allari_pidugu + 2005-10-05 + Drama + Tollywood + World cinema + Jayant Paranji + Allari Pidugu + + + /en/alles_auf_zucker + 2004-12-31 + Comedy + Dani Levy + Alles auf Zucker! + + + /en/alley_cats_strike + 2000-03-18 + Family + Sports + Rod Daniel + Alley Cats Strike! + + + /en/almost_famous + 2000-09-08 + Musical + Comedy-drama + Musical Drama + Road movie + Musical comedy + Comedy + Music + Drama + Cameron Crowe + Almost Famous + + + /en/almost_round_three + 2004-11-10 + Sports + Matt Hill + Matt Hill + Almost: Round Three + + + /en/alone_and_restless + Drama + Michael Thomas Dunn + Alone and Restless + + + /en/alone_in_the_dark + 2005-01-28 + Science Fiction + Horror + Action Film + Thriller + B movie + Action/Adventure + Uwe Boll + Alone in the Dark + + + /en/along_came_polly + 2004-01-12 + Romantic comedy + Romance Film + Gross out + Gross-out film + Comedy + John Hamburg + Along Came Polly + + + /en/alpha_dog + 2006-01-27 + Crime Fiction + Biographical film + Drama + Nick Cassavetes + Alpha Dog + + + /en/amelie + 2001-04-25 + Romance Film + Comedy + Jean-Pierre Jeunet + Amélie + + + /en/america_freedom_to_fascism + 2006-07-28 + Documentary film + Political cinema + Culture &amp; Society + Aaron Russo + America: Freedom to Fascism + + + /en/americas_sweethearts + 2001-07-17 + Romantic comedy + Romance Film + Comedy + Joe Roth + America's Sweethearts + + + /en/american_cowslip + 2009-07-24 + Black comedy + Indie film + Comedy + Mark David + American Cowslip + + + /en/american_desi + Indie film + Romance Film + Romantic comedy + Musical comedy + Teen film + Comedy + Piyush Dinker Pandya + American Desi + + + /en/american_dog + 2008-11-17 + Family + Adventure Film + Animation + Comedy + Chris Williams + Byron Howard + Bolt + + + /en/american_dreamz + 2006-04-21 + Political cinema + Parody + Political satire + Media Satire + Comedy + Paul Weitz + American Dreamz + + + /en/american_gangster + 2007-10-19 + Crime Fiction + War film + Crime Thriller + Historical period drama + Biographical film + Crime Drama + Gangster Film + True crime + Drama + Ridley Scott + American Gangster + + + /en/american_gun + 2005-09-15 + Indie film + Drama + Aric Avelino + American Gun + + + /en/american_hardcore_2006 + 2006-03-11 + Music + Documentary film + Rockumentary + Punk rock + Biographical film + Paul Rachman + American Hardcore + + + /en/american_outlaws + 2001-08-17 + Western + Costume drama + Action/Adventure + Action Film + Revisionist Western + Comedy Western + Comedy + Les Mayfield + American Outlaws + + + /en/american_pie_the_naked_mile + 2006-12-07 + Comedy + Joe Nussbaum + American Pie Presents: The Naked Mile + + + /en/american_pie_2 + 2001-08-06 + Romance Film + Comedy + James B. Rogers + American Pie 2 + + + /en/american_pie_presents_band_camp + 2005-10-31 + Comedy + Steve Rash + American Pie Presents: Band Camp + + + /en/american_psycho_2000 + 2000-01-21 + Black comedy + Slasher + Thriller + Horror + Psychological thriller + Crime Fiction + Horror comedy + Comedy + Drama + Mary Harron + American Psycho + + + /en/american_splendor_2003 + 2003-01-20 + Indie film + Biographical film + Comedy-drama + Marriage Drama + Comedy + Drama + Shari Springer Berman + Robert Pulcini + American Splendor + + + /en/american_wedding + 2003-07-24 + Romance Film + Comedy + Jesse Dylan + American Wedding + + + /en/americano_2005 + 2005-01-07 + Romance Film + Comedy + Drama + Kevin Noland + Americano + + + /en/amma_nanna_o_tamila_ammayi + 2003-04-19 + Sports + Tollywood + World cinema + Drama + Puri Jagannadh + Amma Nanna O Tamila Ammayi + + + /en/amores_perros + 2000-05-14 + Thriller + Drama + Alejandro González Iñárritu + Amores perros + + + /en/amrutham + 2004-12-24 + Drama + Malayalam Cinema + World cinema + Sibi Malayil + Amrutham + + + /en/an_american_crime + 2007-01-19 + Crime Fiction + Biographical film + Indie film + Drama + Tommy O'Haver + An American Crime + + + /en/an_american_haunting + 2005-11-05 + Horror + Mystery + Thriller + Courtney Solomon + An American Haunting + + + /en/an_american_tail_the_mystery_of_the_night_monster + 2000-07-25 + Fantasy + Animated cartoon + Animation + Music + Family + Adventure Film + Children's Fantasy + Children's/Family + Family-Oriented Adventure + Larry Latham + An American Tail: The Mystery of the Night Monster + + + /en/an_evening_with_kevin_smith + Documentary film + Stand-up comedy + Indie film + Film &amp; Television History + Comedy + Biographical film + Media studies + J.M. Kenny + An Evening with Kevin Smith + + + /en/an_evening_with_kevin_smith_2006 + Documentary film + J.M. Kenny + An Evening with Kevin Smith 2: Evening Harder + + + /en/an_everlasting_piece + 2000-12-25 + Comedy + Barry Levinson + An Everlasting Piece + + + /en/an_extremely_goofy_movie + 2000-02-29 + Animation + Coming of age + Animated Musical + Children's/Family + Comedy + Ian Harrowell + Douglas McCarthy + An Extremely Goofy Movie + + + /en/an_inconvenient_truth + 2006-01-24 + Documentary film + Davis Guggenheim + An Inconvenient Truth + + + /en/an_unfinished_life + 2005-08-19 + Melodrama + Drama + Lasse Hallström + An Unfinished Life + + + /en/anacondas_the_hunt_for_the_blood_orchid + 2004-08-25 + Thriller + Adventure Film + Horror + Action Film + Action/Adventure + Natural horror film + Jungle Film + Dwight H. Little + Anacondas: The Hunt for the Blood Orchid + + + /en/anal_pick-up + Pornographic film + Gay pornography + Decklin + Anal Pick-Up + + + /en/analyze_that + 2002-12-06 + Buddy film + Crime Comedy + Gangster Film + Comedy + Harold Ramis + Analyze That + + + /en/anamorph + Psychological thriller + Crime Fiction + Thriller + Mystery + Crime Thriller + Suspense + H.S. Miller + Anamorph + + + /en/anand_2004 + 2004-10-15 + Musical + Comedy + Drama + Musical comedy + Musical Drama + Tollywood + World cinema + Sekhar Kammula + Anand + + + /en/anbe_aaruyire + 2005-08-15 + Romance Film + Tamil cinema + World cinema + Drama + S. J. Surya + Anbe Aaruyire + + + /en/anbe_sivam + 2003-01-14 + Musical + Musical comedy + Comedy + Adventure Film + Tamil cinema + World cinema + Drama + Musical Drama + Sundar C. + Love is God + + + /en/ancanar + Fantasy + Adventure Film + Action/Adventure + Sam R. Balcomb + Raiya Corsiglia + Ancanar + + + /en/anchorman_the_legend_of_ron_burgundy + 2004-06-28 + Comedy + Adam McKay + Anchorman: The Legend of Ron Burgundy + + + /en/andaaz + 2003-05-23 + Musical + Romance Film + Drama + Musical Drama + Raj Kanwar + Andaaz + + + /en/andarivaadu + 2005-06-03 + Comedy + Srinu Vaitla + Andarivaadu + + + /en/andhrawala + 2004-01-01 + Adventure Film + Action Film + Tollywood + Drama + Puri Jagannadh + V.V.S. Ram + Andhrawala + + + /en/ang_tanging_ina + 2003-05-28 + Comedy + Drama + Wenn V. Deramas + Ang Tanging Ina + + + /en/angel_eyes + 2001-05-18 + Romance Film + Crime Fiction + Drama + Luis Mandoki + Angel Eyes + + + /en/angel-a + 2005-12-21 + Romance Film + Fantasy + Comedy + Romantic comedy + Drama + Luc Besson + Angel-A + + + /en/angels_and_demons_2008 + 2009-05-04 + Thriller + Mystery + Crime Fiction + Ron Howard + Angels &amp; Demons + + + /en/angels_and_virgins + 2007-12-17 + Romance Film + Comedy + Adventure Film + Drama + David Leland + Virgin Territory + + + /en/angels_in_the_infield + 2000-04-09 + Fantasy + Sports + Family + Children's/Family + Heavenly Comedy + Comedy + Robert King + Angels in the Infield + + + /en/anger_management_2003 + 2003-03-05 + Black comedy + Slapstick + Comedy + Peter Segal + Anger Management + + + /en/angli_the_movie + 2005-05-28 + Thriller + Action Film + Crime Fiction + Mario Busietta + Angli: The Movie + + + /en/animal_factory + 2000-10-22 + Crime Fiction + Prison film + Drama + Steve Buscemi + Animal Factory + + + /en/anjaneya + 2003-10-24 + Romance Film + Crime Fiction + Drama + World cinema + Tamil cinema + Maharajan + N.Maharajan + Anjaneya + + + /en/ankahee + 2006-05-19 + Romance Film + Thriller + Drama + Vikram Bhatt + Ankahee + + + /en/annapolis_2006 + Romance Film + Sports + Drama + Justin Lin + Annapolis + + + /en/annavaram_2007 + 2006-12-29 + Thriller + Musical + Action Film + Romance Film + Tollywood + World cinema + Gridhar + Bhimaneni Srinivasa Rao + Sippy + Annavaram + + + /en/anniyan + 2005-06-10 + Horror + Short Film + Psychological thriller + Thriller + Musical Drama + Action Film + Drama + S. Shankar + Anniyan + + + /en/another_gay_movie + 2006-04-28 + Parody + Coming of age + LGBT + Gay Themed + Romantic comedy + Romance Film + Gay + Gay Interest + Sex comedy + Comedy + Pornographic film + Todd Stephens + Another Gay Movie + + + /en/ant_man + 2015-07-17 + Thriller + Science Fiction + Action/Adventure + Superhero movie + Comedy + Peyton Reed + Ant-Man + + + /en/anthony_zimmer + 2005-04-27 + Thriller + Romance Film + World cinema + Crime Thriller + Jérôme Salle + Anthony Zimmer + + + /en/antwone_fisher_2003 + 2002-09-12 + Romance Film + Biographical film + Drama + Denzel Washington + Antwone Fisher + + + /en/anukokunda_oka_roju + 2005-06-30 + Thriller + Horror + Tollywood + World cinema + Chandra Sekhar Yeleti + Anukokunda Oka Roju + + + /en/anus_magillicutty + 2003-04-15 + B movie + Romance Film + Comedy + Morey Fineburgh + Anus Magillicutty + + + /en/any_way_the_wind_blows + 2003-05-17 + Comedy-drama + Tom Barman + Any Way the Wind Blows + + + /en/anything_else + 2003-08-27 + Romantic comedy + Romance Film + Comedy + Woody Allen + Anything Else + + + /en/apasionados + 2002-06-06 + Romantic comedy + Romance Film + World cinema + Comedy + Drama + Juan José Jusid + Apasionados + + + /en/apocalypto + 2006-12-08 + Action Film + Adventure Film + Epic film + Thriller + Drama + Mel Gibson + Apocalypto + + + /en/aprils_shower + 2006-01-13 + Romantic comedy + Indie film + Romance Film + LGBT + Gay + Gay Interest + Gay Themed + Sex comedy + Comedy + Drama + Trish Doolan + April's Shower + + + /en/aquamarine_2006 + 2006-02-26 + Coming of age + Teen film + Romance Film + Family + Fantasy + Fantasy Comedy + Comedy + Elizabeth Allen Rosenbaum + Aquamarine + + + /en/arabian_nights + 2000-04-30 + Family + Fantasy + Adventure Film + Steve Barron + Arabian Nights + + + /en/aragami + 2003-03-27 + Thriller + Action/Adventure + World cinema + Japanese Movies + Action Film + Drama + Ryuhei Kitamura + Aragami + + + /en/arahan + 2004-04-30 + Action Film + Comedy + Korean drama + East Asian cinema + World cinema + Ryoo Seung-wan + Arahan + + + /en/ararat + 2002-05-20 + LGBT + Political drama + War film + Drama + Atom Egoyan + Ararat + + + /en/are_we_there_yet + 2005-01-21 + Family + Adventure Film + Romance Film + Comedy + Drama + Brian Levant + Are We There Yet + + + /en/arinthum_ariyamalum + 2005-05-20 + Crime Fiction + Family + Romance Film + Comedy + Tamil cinema + World cinema + Drama + Vishnuvardhan + Arinthum Ariyamalum + + + /en/arisan + 2003-12-10 + Comedy + Drama + Nia Dinata + Arisan! + + + /en/arjun_2004 + 2004-08-18 + Action Film + Tollywood + World cinema + Gunasekhar + J. Hemambar + Arjun + + + /en/armaan + 2003-05-16 + Romance Film + Family + Drama + Honey Irani + Armaan + + + /en/around_the_bend + 2004-10-08 + Family Drama + Comedy-drama + Road movie + Drama + Jordan Roberts + Around the Bend + + + /en/around_the_world_in_80_days_2004 + 2004-06-13 + Adventure Film + Action Film + Family + Western + Romance Film + Comedy + Frank Coraci + Around the World in 80 Days + + + /en/art_of_the_devil_2 + 2005-12-01 + Horror + Slasher + Fantasy + Mystery + Pasith Buranajan + Seree Phongnithi + Yosapong Polsap + Putipong Saisikaew + Art Thamthrakul + Kongkiat Khomsiri + Isara Nadee + Art of the Devil 2 + + + /en/art_school_confidential + Comedy-drama + Terry Zwigoff + Art School Confidential + + + /en/arul + 2004-05-01 + Musical + Action Film + Tamil cinema + World cinema + Drama + Musical Drama + Hari + Arul + + + /en/arya_2007 + 2007-08-10 + Romance Film + Drama + Tamil cinema + World cinema + Balasekaran + Aarya + + + /en/arya_2004 + 2004-05-07 + Musical + Romance Film + Romantic comedy + Musical comedy + Comedy + Drama + Musical Drama + World cinema + Tollywood + Sukumar + Arya + + + /en/aryan_2006 + 2006-12-05 + Action Film + Drama + Abhishek Kapoor + Aryan: Unbreakable + + + /en/as_it_is_in_heaven + 2004-08-20 + Musical + Comedy + Romance Film + Drama + Musical comedy + Musical Drama + World cinema + Kay Pollak + As It Is in Heaven + + + /en/ashok + 2006-07-13 + Action Film + Romance Film + Drama + Tollywood + World cinema + Surender Reddy + Ashok + + + /en/ask_the_dust_2006 + 2006-02-02 + Historical period drama + Film adaptation + Romance Film + Drama + Robert Towne + Ask the Dust + + + /en/asoka + 2001-09-13 + Action Film + Romance Film + War film + Epic film + Musical + Bollywood + World cinema + Drama + Musical Drama + Santosh Sivan + Ashoka the Great + + + /en/assault_on_precinct_13_2005 + 2005-01-19 + Thriller + Action Film + Remake + Crime Fiction + Drama + Jean-François Richet + Assault on Precinct 13 + + + /en/astitva + 2000-10-06 + Art film + Bollywood + World cinema + Drama + Mahesh Manjrekar + Astitva + + + /en/asylum_2005 + 2005-08-12 + Film adaptation + Romance Film + Thriller + Drama + David Mackenzie + Asylum + + + /en/atanarjuat + 2001-05-13 + Fantasy + Drama + Zacharias Kunuk + Atanarjuat: The Fast Runner + + + /en/athadu + 2005-08-10 + Action Film + Thriller + Musical + Romance Film + Tollywood + World cinema + Trivikram Srinivas + Athadu + + + /en/atl_2006 + 2006-03-28 + Coming of age + Comedy + Drama + Chris Robinson + ATL + + + /en/atlantis_the_lost_empire + 2001-06-03 + Adventure Film + Science Fiction + Family + Animation + Gary Trousdale + Kirk Wise + Atlantis: The Lost Empire + + + /en/atonement_2007 + 2007-08-28 + Romance Film + War film + Mystery + Drama + Music + Joe Wright + Atonement + + + /en/attagasam + 2004-11-12 + Action Film + Thriller + Tamil cinema + World cinema + Drama + Saran + Attahasam + + + /en/attila_2001 + Adventure Film + History + Action Film + War film + Historical fiction + Biographical film + Dick Lowry + Attila + + + /en/austin_powers_goldmember + 2002-07-22 + Action Film + Crime Fiction + Comedy + Jay Roach + Austin Powers: Goldmember + + + /en/australian_rules + Drama + Paul Goldman + Australian Rules + + + /en/auto + 2007-02-16 + Action Film + Comedy + Tamil cinema + World cinema + Drama + Pushkar + Gayatri + Oram Po + + + /en/auto_focus + 2002-09-08 + Biographical film + Indie film + Crime Fiction + Drama + Paul Schrader + Larry Karaszewski + Auto Focus + + + /en/autograph_2004 + 2004-02-14 + Musical + Romance Film + Drama + Musical Drama + Tamil cinema + World cinema + Cheran + Autograph + + + /en/avalon_2001 + 2001-01-20 + Science Fiction + Thriller + Action Film + Adventure Film + Fantasy + Drama + Mamoru Oshii + Avalon + + + /en/avatar_2009 + 2009-12-10 + Science Fiction + Adventure Film + Fantasy + Action Film + James Cameron + Avatar + + + /en/avenging_angelo + 2002-08-30 + Action Film + Romance Film + Crime Fiction + Action/Adventure + Thriller + Romantic comedy + Crime Comedy + Gangster Film + Comedy + Martyn Burke + Avenging Angelo + + + /en/awake_2007 + 2007-11-30 + Thriller + Crime Fiction + Mystery + Joby Harold + Awake + + + /en/awara_paagal_deewana + 2002-06-20 + Action Film + World cinema + Musical + Crime Fiction + Musical comedy + Comedy + Bollywood + Drama + Musical Drama + Vikram Bhatt + Awara Paagal Deewana + + + /en/awesome_i_fuckin_shot_that + 2006-01-06 + Concert film + Rockumentary + Hip hop film + Documentary film + Indie film + Adam Yauch + Awesome; I Fuckin' Shot That! + + + /en/azumi + 2003-05-10 + Action Film + Epic film + Adventure Film + Fantasy + Thriller + Ryuhei Kitamura + Azumi + + + /wikipedia/en_title/$00C6on_Flux_$0028film$0029 + 2005-12-01 + Science Fiction + Dystopia + Action Film + Thriller + Adventure Film + Karyn Kusama + Æon Flux + + + /en/baabul + 2006-12-08 + Musical + Family + Romance Film + Bollywood + World cinema + Drama + Musical Drama + Ravi Chopra + Baabul + + + /en/baadasssss_cinema + 2002-08-14 + Indie film + Documentary film + Blaxploitation film + Action/Adventure + Film &amp; Television History + Biographical film + Isaac Julien + BaadAsssss Cinema + + + /en/baadasssss + 2003-09-07 + Indie film + Biographical film + Docudrama + Historical period drama + Drama + Mario Van Peebles + Baadasssss! + + + /en/babel_2006 + 2006-05-23 + Indie film + Political drama + Drama + Alejandro González Iñárritu + Babel + + + /en/baby_boy + 2001-06-21 + Coming of age + Crime Fiction + Drama + John Singleton + Baby Boy + + + /en/back_by_midnight + 2005-01-25 + Prison film + Comedy + Harry Basil + Back by Midnight + + + /en/back_to_school_with_franklin + 2003-08-19 + Family + Animation + Educational film + Arna Selznick + Back to School with Franklin + + + /en/bad_boys_ii + 2003-07-09 + Action Film + Crime Fiction + Thriller + Comedy + Michael Bay + Bad Boys II + + + /wikipedia/ru_id/1598664 + 2002-04-26 + Spy film + Action/Adventure + Action Film + Thriller + Comedy + Joel Schumacher + Bad Company + + + /en/bad_education + 2004-03-19 + Mystery + Drama + Pedro Almodóvar + Bad Education + + + /en/bad_eggs + Comedy + Tony Martin + Bad Eggs + + + /en/bad_news_bears + 2005-07-22 + Family + Sports + Comedy + Richard Linklater + Bad News Bears + + + /en/bad_santa + 2003-11-26 + Black comedy + Crime Fiction + Comedy + Terry Zwigoff + Bad Santa + + + /en/badal + 2000-02-11 + Musical + Romance Film + Crime Fiction + Drama + Musical Drama + Raj Kanwar + Badal + + + /en/baghdad_er + 2006-08-29 + Documentary film + Culture &amp; Society + War film + Biographical film + Jon Alpert + Matthew O'Neill + Baghdad ER + + + /en/baise_moi + 2000-06-28 + Erotica + Thriller + Erotic thriller + Art film + Romance Film + Drama + Road movie + Virginie Despentes + Coralie Trinh Thi + Baise Moi + + + /en/bait_2000 + 2000-09-15 + Thriller + Crime Fiction + Adventure Film + Action Film + Action/Adventure + Crime Thriller + Comedy + Drama + Antoine Fuqua + Bait + + + /en/bala_2002 + 2002-12-13 + Drama + Tamil cinema + World cinema + Deepak + Bala + + + /en/ballistic_ecks_vs_sever + 2002-09-20 + Spy film + Thriller + Action Film + Suspense + Action/Adventure + Action Thriller + Glamorized Spy Film + Wych Kaosayananda + Ballistic: Ecks vs. Sever + + + /en/balu_abcdefg + 2005-01-06 + Romance Film + Tollywood + World cinema + Drama + A. Karunakaran + Balu ABCDEFG + + + /en/balzac_and_the_little_chinese_seamstress_2002 + 2002-05-16 + Romance Film + Comedy-drama + Biographical film + Drama + Dai Sijie + The Little Chinese Seamstress + + + /en/bambi_ii + 2006-01-26 + Animation + Family + Adventure Film + Coming of age + Children's/Family + Family-Oriented Adventure + Brian Pimental + Bambi II + + + /en/bamboozled + 2000-10-06 + Satire + Indie film + Music + Black comedy + Comedy-drama + Media Satire + Comedy + Drama + Spike Lee + Bamboozled + + + /en/bandidas + 2006-01-18 + Western + Action Film + Crime Fiction + Buddy film + Comedy + Adventure Film + Espen Sandberg + Joachim Rønning + Bandidas + + + /en/bandits + 2001-10-12 + Romantic comedy + Crime Fiction + Buddy film + Romance Film + Heist film + Comedy + Drama + Barry Levinson + Bandits + + + /en/bangaram + 2006-05-03 + Action Film + Crime Fiction + Drama + Dharani + Bangaram + + + /en/bangkok_loco + 2004-10-07 + Musical + Musical comedy + Comedy + Pornchai Hongrattanaporn + Bangkok Loco + + + /en/baran + 2001-01-31 + Romance Film + Adventure Film + World cinema + Drama + Majid Majidi + Baran + + + /en/barbershop + 2002-08-07 + Ensemble Film + Workplace Comedy + Comedy + Tim Story + Barbershop + + + /en/bareback_mountain + Pornographic film + Gay pornography + Afton Nills + Bareback Mountain + + + /wikipedia/pt/Barnyard + 2006-08-04 + Family + Animation + Comedy + Steve Oedekerk + Barnyard + + + /en/barricade_2007 + Slasher + Horror + Timo Rose + Barricade + + + /en/bas_itna_sa_khwaab_hai + 2001-07-06 + Romance Film + Bollywood + World cinema + Goldie Behl + Bas Itna Sa Khwaab Hai + + + /en/basic_2003 + 2003-03-28 + Thriller + Action Film + Mystery + John McTiernan + Basic + + + /en/basic_emotions + Thomas Moon + Julie Pham + Georgia Lee + 2004-09-09 + Basic emotions + Drama + + + /en/basic_instinct_2 + Michael Caton-Jones + 2006-03-31 + Basic Instinct 2 + Thriller + Erotic thriller + Psychological thriller + Mystery + Crime Fiction + Horror + + + /en/batalla_en_el_cielo + Carlos Reygadas + 2005-05-15 + Battle In Heaven + Drama + + + /en/batman_begins + Christopher Nolan + 2005-06-10 + Batman Begins + Action Film + Crime Fiction + Adventure Film + Film noir + Drama + + + /en/batman_beyond_return_of_the_joker + Curt Geda + 2000-12-12 + Batman Beyond: Return of the Joker + Science Fiction + Animation + Superhero movie + Action Film + + + /en/batman_dead_end + Sandy Collora + 2003-07-19 + Batman: Dead End + Indie film + Short Film + Fan film + + + /en/batman_mystery_of_the_batwoman + Curt Geda + Tim Maltby + 2003-10-21 + Batman: Mystery of the Batwoman + Animated cartoon + Animation + Family + Superhero movie + Action/Adventure + Fantasy + Short Film + Fantasy Adventure + + + /en/batoru_rowaiaru_ii_chinkonka + Kenta Fukasaku + Kinji Fukasaku + 2003-07-05 + Battle Royale II: Requiem + Thriller + Action Film + Science Fiction + Drama + + + /en/battlefield_baseball + Yūdai Yamaguchi + 2003-07-19 + Battlefield Baseball + Martial Arts Film + Horror + World cinema + Sports + Musical comedy + Japanese Movies + Horror comedy + Comedy + + + /en/bbs_the_documentary + Jason Scott Sadofsky + BBS: The Documentary + Documentary film + + + /en/be_cool + F. Gary Gray + 2005-03-04 + Be Cool + Crime Fiction + Crime Comedy + Comedy + + + /en/be_kind_rewind + Michel Gondry + 2008-01-20 + Be Kind Rewind + Farce + Comedy of Errors + Comedy + Drama + + + /en/be_with_me + Eric Khoo + 2005-05-12 + Be with Me + Indie film + LGBT + World cinema + Art film + Romance Film + Drama + + + /en/beah_a_black_woman_speaks + Lisa Gay Hamilton + 2003-08-22 + Beah: A Black Woman Speaks + Documentary film + History + Biographical film + + + /en/beastly_boyz + David DeCoteau + Beastly Boyz + LGBT + Horror + B movie + Teen film + + + /en/beauty_shop + Bille Woodruff + 2005-03-24 + Beauty Shop + Comedy + + + /en/bedazzled_2000 + Harold Ramis + 2000-10-19 + Bedazzled + Romantic comedy + Fantasy + Black comedy + Romance Film + Comedy + + + /en/bee_movie + Steve Hickner + Simon J. Smith + 2007-10-28 + Bee Movie + Family + Adventure Film + Animation + Comedy + + + /en/bee_season_2005 + David Siegel + Scott McGehee + 2005-11-11 + Bee Season + Film adaptation + Coming of age + Family Drama + Drama + + + /en/beer_league + Frank Sebastiano + 2006-09-15 + Artie Lange's Beer League + Sports + Indie film + Comedy + + + /en/beer_the_movie + Peter Hoare + 2006-05-16 + Beer: The Movie + Indie film + Cult film + Parody + Bloopers &amp; Candid Camera + Comedy + + + /en/beerfest + Jay Chandrasekhar + 2006-08-25 + Beerfest + Absurdism + Comedy + + + /en/before_night_falls_2001 + Julian Schnabel + 2000-09-03 + Before Night Falls + LGBT + Gay Themed + Political drama + Gay + Gay Interest + Biographical film + Drama + + + /en/before_sunset + Richard Linklater + 2004-02-10 + Before Sunset + Romance Film + Indie film + Comedy + Drama + + + /en/behind_enemy_lines + John Moore + 2001-11-17 + Behind Enemy Lines + Thriller + Action Film + War film + Action/Adventure + Drama + + + /en/behind_the_mask_2006 + Shannon Keith + 2006-03-21 + Behind the Mask + Documentary film + Indie film + Political cinema + Crime Fiction + + + /en/behind_the_sun_2001 + Walter Salles + 2001-09-06 + Behind the Sun + Drama + + + /en/being_cyrus + Homi Adajania + 2005-11-08 + Being Cyrus + Thriller + Black comedy + Mystery + Psychological thriller + Crime Fiction + Drama + + + /en/being_julia + István Szabó + 2004-09-03 + Being Julia + Romance Film + Romantic comedy + Comedy-drama + Comedy + Drama + + + /en/bekhals_tears + Lauand Omar + Bekhal's Tears + Drama + + + /en/believe_in_me + Robert Collector + Believe in Me + Sports + Family Drama + Family + Drama + + + /en/belly_of_the_beast + Ching Siu-tung + 2003-12-30 + Belly of the Beast + Action Film + Thriller + Political thriller + Martial Arts Film + Action/Adventure + Crime Thriller + Action Thriller + Chinese Movies + + + /en/bellyful + Melvin Van Peebles + 2000-06-28 + Bellyful + Indie film + Satire + Comedy + + + /en/bend_it_like_beckham + Gurinder Chadha + 2002-04-11 + Bend It Like Beckham + Coming of age + Indie film + Teen film + Sports + Romance Film + Comedy-drama + Comedy + Drama + + + /en/bendito_infierno + Agustín Díaz Yanes + 2001-11-28 + Don't Tempt Me + Religious Film + Fantasy + Comedy + + + /en/beneath + Dagen Merrill + 2007-08-07 + Beneath + Horror + Psychological thriller + Thriller + Supernatural + Crime Thriller + + + /en/beneath_clouds + Ivan Sen + 2002-02-08 + Beneath Clouds + Indie film + Romance Film + Road movie + Social problem film + Drama + + + /en/beowulf_2007 + Robert Zemeckis + 2007-11-05 + Beowulf + Adventure Film + Computer Animation + Fantasy + Action Film + Animation + + + /en/beowulf_grendel + Sturla Gunnarsson + 2005-09-14 + Beowulf &amp; Grendel + Adventure Film + Action Film + Fantasy + Action/Adventure + Film adaptation + World cinema + Historical period drama + Mythological Fantasy + Drama + + + /en/best_in_show + Christopher Guest + 2000-09-08 + Best in Show + Comedy + + + /en/the_best_of_the_bloodiest_brawls_vol_1 + 2006-03-14 + The Best of The Bloodiest Brawls, Vol. 1 + Sports + + + /en/better_luck_tomorrow + Justin Lin + 2003-04-11 + Better Luck Tomorrow + Coming of age + Teen film + Crime Fiction + Crime Drama + Drama + + + /en/bettie_page_dark_angel + Nico B. + 2004-02-11 + Bettie Page: Dark Angel + Biographical film + Drama + + + /en/bewitched_2005 + Nora Ephron + 2005-06-24 + Bewitched + Romantic comedy + Fantasy + Romance Film + Comedy + + + /en/beyond_borders + Martin Campbell + 2003-10-24 + Beyond Borders + Adventure Film + Historical period drama + Romance Film + War film + Drama + + + /en/beyond_re-animator + Brian Yuzna + 2003-04-04 + Beyond Re-Animator + Horror + Science Fiction + Comedy + + + /en/beyond_the_sea + Kevin Spacey + 2004-09-11 + Beyond the Sea + Musical + Music + Biographical film + Drama + Musical Drama + + + /en/bhadra_2005 + Boyapati Srinu + 2005-05-12 + Bhadra + Action Film + Tollywood + World cinema + Drama + + + /en/bhageeradha + Rasool Ellore + 2005-10-13 + Bhageeratha + Drama + Tollywood + World cinema + + + /en/bheema + N. Lingusamy + 2008-01-14 + Bheemaa + Action Film + Tamil cinema + World cinema + + + /en/bhoot + Ram Gopal Varma + 2003-05-17 + Bhoot + Horror + Thriller + Bollywood + World cinema + + + /en/bichhoo + Guddu Dhanoa + 2000-07-07 + Bichhoo + Thriller + Action Film + Crime Fiction + Bollywood + World cinema + Drama + + + /en/big_eden + Thomas Bezucha + 2000-04-18 + Big Eden + LGBT + Indie film + Romance Film + Comedy-drama + Gay + Gay Interest + Gay Themed + Romantic comedy + Drama + + + /en/big_fat_liar + Shawn Levy + 2002-02-02 + Big Fat Liar + Family + Adventure Film + Comedy + + + /en/big_fish + Tim Burton + 2003-12-10 + Big Fish + Fantasy + Adventure Film + War film + Comedy-drama + Film adaptation + Family Drama + Fantasy Comedy + Comedy + Drama + + + /en/big_girls_dont_cry_2002 + Maria von Heland + 2002-10-24 + Big Girls Don't Cry + World cinema + Melodrama + Teen film + Drama + + + /en/big_man_little_love + Handan İpekçi + 2001-10-19 + Big Man, Little Love + Drama + + + /en/big_mommas_house + Raja Gosnell + 2000-05-31 + Big Momma's House + Action Film + Crime Fiction + Comedy + + + /en/big_mommas_house_2 + John Whitesell + 2006-01-26 + Big Momma's House 2 + Crime Fiction + Slapstick + Action Film + Action/Adventure + Thriller + Farce + Comedy + + + /en/big_toys_no_boys_2 + Tristán + Big Toys, No Boys 2 + Pornographic film + + + /en/big_trouble_2002 + Barry Sonnenfeld + 2002-04-05 + Big Trouble + Crime Fiction + Black comedy + Action Film + Action/Adventure + Gangster Film + Comedy + + + /en/bigger_than_the_sky + Al Corley + 2005-02-18 + Bigger Than the Sky + Romantic comedy + Romance Film + Comedy-drama + Comedy + Drama + + + /en/biggie_tupac + Nick Broomfield + 2002-01-11 + Biggie &amp; Tupac + Documentary film + Hip hop film + Rockumentary + Indie film + Crime Fiction + True crime + Biographical film + + + /en/bill_2007 + Bernie Goldmann + Melisa Wallick + 2007-09-08 + Meet Bill + Romantic comedy + Romance Film + Comedy + Drama + + + /en/billy_elliot + Stephen Daldry + 2000-05-19 + Billy Elliot + Comedy + Music + Drama + + + /en/bionicle_3_web_of_shadows + David Molina + Terry Shakespeare + 2005-10-11 + Bionicle 3: Web of Shadows + Fantasy + Adventure Film + Animation + Family + Computer Animation + Science Fiction + + + /en/bionicle_2_legends_of_metru_nui + David Molina + Terry Shakespeare + 2004-10-19 + Bionicle 2: Legends of Metru Nui + Fantasy + Adventure Film + Animation + Family + Computer Animation + Science Fiction + Children's Fantasy + Children's/Family + Fantasy Adventure + + + /en/bionicle_mask_of_light + David Molina + Terry Shakespeare + 2003-09-16 + Bionicle: Mask of Light: The Movie + Family + Fantasy + Animation + Adventure Film + Computer Animation + Science Fiction + Children's Fantasy + Children's/Family + Fantasy Adventure + + + /en/birth_2004 + Jonathan Glazer + 2004-09-08 + Birth + Mystery + Indie film + Romance Film + Thriller + Drama + + + /en/birthday_girl + Jez Butterworth + 2002-02-01 + Birthday Girl + Black comedy + Thriller + Indie film + Erotic thriller + Crime Fiction + Romance Film + Comedy + Drama + + + /en/bite_me_fanboy + Mat Nastos + 2005-06-01 + Bite Me, Fanboy + Comedy + + + /en/bitter_jester + Maija DiGiorgio + 2003-02-26 + Bitter Jester + Indie film + Documentary film + Stand-up comedy + Culture &amp; Society + Comedy + Biographical film + + + /en/black_2005 + Sanjay Leela Bhansali + 2005-02-04 + Black + Family + Drama + + + /en/black_and_white_2002 + Craig Lahiff + 2002-10-31 + Black and White + Trial drama + Crime Fiction + World cinema + Drama + + + /en/black_book_2006 + Paul Verhoeven + 2006-09-01 + Black Book + Thriller + War film + Drama + + + /wikipedia/fr/Black_Christmas_$0028film$002C_2006$0029 + Glen Morgan + 2006-12-15 + Black Christmas + Slasher + Teen film + Horror + Thriller + + + /en/black_cloud + Ricky Schroder + 2004-04-30 + Black Cloud + Indie film + Sports + Drama + + + /en/black_friday_1993 + Anurag Kashyap + 2004-05-20 + Black Friday + Crime Fiction + Historical drama + Drama + + + /en/black_hawk_down + Ridley Scott + 2001-12-18 + Black Hawk Down + War film + Action/Adventure + Action Film + History + Combat Films + Drama + + + /en/black_hole_2006 + Tibor Takács + 2006-06-10 + The Black Hole + Science Fiction + Thriller + Television film + + + /en/black_knight_2001 + Gil Junger + 2001-11-15 + Black Knight + Time travel + Adventure Film + Costume drama + Science Fiction + Fantasy + Adventure Comedy + Fantasy Comedy + Comedy + + + /en/blackball_2005 + Mel Smith + 2005-02-11 + Blackball + Sports + Family Drama + Comedy + Drama + + + /en/blackwoods + Uwe Boll + Blackwoods + Thriller + Crime Thriller + Psychological thriller + Drama + + + /en/blade_ii + Guillermo del Toro + 2002-03-21 + Blade II + Thriller + Horror + Science Fiction + Action Film + + + /en/blade_trinity + David S. Goyer + 2004-12-07 + Blade: Trinity + Thriller + Action Film + Horror + Action/Adventure + Superhero movie + Fantasy + Adventure Film + Action Thriller + + + /en/bleach_memories_of_nobody + Noriyuki Abe + 2006-12-16 + Bleach: Memories of Nobody + Anime + Fantasy + Animation + Action Film + Adventure Film + + + /en/bless_the_child + Chuck Russell + 2000-08-11 + Bless the Child + Horror + Crime Fiction + Drama + Thriller + + + /en/blind_shaft + Li Yang + 2003-02-12 + Blind Shaft + Crime Fiction + Drama + + + /en/blissfully_yours + Apichatpong Weerasethakul + 2002-05-17 + Blissfully Yours + Erotica + Romance Film + World cinema + Drama + + + /en/blood_of_a_champion + Lawrence Page + 2006-03-07 + Blood of a Champion + Crime Fiction + Sports + Drama + + + /en/blood_rain + Kim Dae-seung + 2005-05-04 + Blood Rain + Thriller + Mystery + East Asian cinema + World cinema + + + /en/blood_work + Clint Eastwood + 2002-08-09 + Blood Work + Mystery + Crime Thriller + Thriller + Suspense + Crime Fiction + Detective fiction + Drama + + + /en/bloodrayne_2006 + Uwe Boll + 2005-10-23 + BloodRayne + Horror + Action Film + Fantasy + Adventure Film + Costume drama + + + /en/bloodsport_ecws_most_violent_matches + 2006-02-07 + Bloodsport - ECW's Most Violent Matches + Documentary film + Sports + + + /en/bloody_sunday + Paul Greengrass + 2002-01-16 + Bloody Sunday + Political drama + Docudrama + Historical fiction + War film + Drama + + + /en/blow + Ted Demme + 2001-03-29 + Blow + Biographical film + Crime Fiction + Film adaptation + Historical period drama + Drama + + + /en/blue_car + Karen Moncrieff + 2003-05-02 + Blue Car + Indie film + Family Drama + Coming of age + Drama + + + /en/blue_collar_comedy_tour_rides_again + C. B. Harding + 2004-12-05 + Blue Collar Comedy Tour Rides Again + Documentary film + Stand-up comedy + Comedy + + + /en/blue_collar_comedy_tour_one_for_the_road + C. B. Harding + 2006-06-27 + Blue Collar Comedy Tour: One for the Road + Stand-up comedy + Concert film + Comedy + + + /en/blue_collar_comedy_tour_the_movie + C. B. Harding + 2003-03-28 + Blue Collar Comedy Tour: The Movie + Stand-up comedy + Documentary film + Comedy + + + /en/blue_crush + John Stockwell + 2002-08-08 + Blue Crush + Teen film + Romance Film + Sports + Drama + + + /en/blue_gate_crossing + Yee Chin-yen + 2002-09-08 + Blue Gate Crossing + Romance Film + Drama + + + /en/blue_milk + William Grammer + 2006-06-20 + Blue Milk + Indie film + Short Film + Fan film + + + /en/blue_state + Marshall Lewy + Blue State + Indie film + Romance Film + Political cinema + Romantic comedy + Political satire + Road movie + Comedy + + + /en/blueberry_2004 + Jan Kounen + 2004-02-11 + Blueberry + Western + Thriller + Action Film + Adventure Film + + + /en/blueprint_2003 + Rolf Schübel + 2003-12-08 + Blueprint + Science Fiction + Drama + + + /en/bluffmaster + Rohan Sippy + 2005-12-16 + Bluffmaster! + Romance Film + Musical + Crime Fiction + Romantic comedy + Musical comedy + Comedy + Bollywood + World cinema + Drama + Musical Drama + + + /en/boa_vs_python + David Flores + 2004-05-24 + Boa vs. Python + Horror + Natural horror film + Monster + Science Fiction + Creature Film + + + /en/bobby + Emilio Estevez + 2006-09-05 + Bobby + Political drama + Historical period drama + History + Drama + + + /en/boiler_room + Ben Younger + 2000-01-30 + Boiler Room + Crime Fiction + Drama + + + /en/bolletjes_blues + Brigit Hillenius + Karin Junger + 2006-03-23 + Bolletjes Blues + Musical + + + /en/bollywood_hollywood + Deepa Mehta + 2002-10-25 + Bollywood/Hollywood + Bollywood + Musical + Romance Film + Romantic comedy + Musical comedy + Comedy + + + /en/bomb_the_system + Adam Bhala Lough + Bomb the System + Crime Fiction + Indie film + Coming of age + Drama + + + /en/bommarillu + Bhaskar + 2006-08-09 + Bommarillu + Musical + Romance Film + Drama + Musical Drama + Tollywood + World cinema + + + /en/bon_cop_bad_cop + Eric Canuel + Bon Cop, Bad Cop + Crime Fiction + Buddy film + Action Film + Action/Adventure + Thriller + Comedy + + + /en/bones_2001 + Ernest R. Dickerson + 2001-10-26 + Bones + Horror + Blaxploitation film + Action Film + + + /en/bonjour_monsieur_shlomi + Shemi Zarhin + 2003-04-03 + Bonjour Monsieur Shlomi + World cinema + Family Drama + Comedy-drama + Coming of age + Family + Comedy + Drama + + + /en/boogeyman + Stephen T. Kay + 2005-02-04 + Boogeyman + Horror + Supernatural + Teen film + Thriller + Mystery + Drama + + + /en/boogiepop_and_others_2000 + Ryu Kaneda + 2000-03-11 + Boogiepop and Others + Animation + Fantasy + Anime + Thriller + Japanese Movies + + + /en/book_of_love_2004 + Alan Brown + 2004-01-18 + Book of Love + Indie film + Romance Film + Comedy + Drama + + + /en/book_of_shadows_blair_witch_2 + Joe Berlinger + 2000-10-27 + Book of Shadows: Blair Witch 2 + Horror + Supernatural + Mystery + Psychological thriller + Slasher + Thriller + Ensemble Film + Crime Fiction + + + /en/boomer + Pyotr Buslov + 2003-08-02 + Bimmer + Crime Fiction + Drama + + + /wikipedia/de_id/1782985 + Larry Charles + 2006-08-04 + Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan + Comedy + + + /en/born_into_brothels_calcuttas_red_light_kids + Zana Briski + Ross Kauffman + 2004-01-17 + Born into Brothels: Calcutta's Red Light Kids + Documentary film + + + /en/free_radicals + Barbara Albert + Free Radicals + World cinema + Romance Film + Art film + Drama + + + /en/boss_2006 + V.N. Aditya + 2006-09-27 + Boss + Musical + Romance Film + Drama + Musical Drama + Tollywood + World cinema + + + /en/bossn_up + Dylan C. Brown + 2005-06-01 + Boss'n Up + Musical + Indie film + Crime Fiction + Musical Drama + Drama + + + /en/bossa_nova_2000 + Bruno Barreto + 2000-02-18 + Bossa Nova + Romance Film + Comedy + Drama + + + /en/bosta + Philippe Aractingi + Bosta + Musical + + + /en/bowling_for_columbine + Michael Moore + 2002-05-15 + Bowling for Columbine + Indie film + Documentary film + Political cinema + Historical Documentaries + + + /en/bowling_fun_and_fundamentals_for_boys_and_girls + Bowling Fun And Fundamentals For Boys And Girls + Documentary film + Sports + + + /en/boy_eats_girl + Stephen Bradley + 2005-04-06 + Boy Eats Girl + Indie film + Horror + Teen film + Creature Film + Zombie Film + Horror comedy + Comedy + + + /en/boynton_beach_club + Susan Seidelman + 2006-08-04 + Boynton Beach Club + Romantic comedy + Indie film + Romance Film + Comedy-drama + Slice of life + Ensemble Film + Comedy + + + /en/boys_2003 + S. Shankar + 2003-08-29 + Boys + Musical + Romance Film + Comedy + Tamil cinema + World cinema + Drama + Musical comedy + Musical Drama + + + /en/brain_blockers + Lincoln Kupchak + 2007-03-15 + Brain Blockers + Horror + Zombie Film + Horror comedy + Comedy + + + /en/breakin_all_the_rules + Daniel Taplitz + 2004-05-14 + Breakin' All the Rules + Romance Film + Romantic comedy + Comedy of Errors + Comedy + + + /en/breaking_and_entering + Anthony Minghella + 2006-09-13 + Breaking and Entering + Romance Film + Crime Fiction + Drama + + + /en/brick_2006 + Rian Johnson + 2006-04-07 + Brick + Film noir + Indie film + Teen film + Neo-noir + Mystery + Crime Thriller + Crime Fiction + Thriller + Detective fiction + Drama + + + /en/bride_and_prejudice + Gurinder Chadha + 2004-10-06 + Bride and Prejudice + Musical + Romantic comedy + Romance Film + Film adaptation + Comedy of manners + Musical Drama + Musical comedy + Comedy + Drama + + + /en/bridget_jones_the_edge_of_reason + Beeban Kidron + 2004-11-08 + Bridget Jones: The Edge of Reason + Romantic comedy + Romance Film + Comedy + + + /en/bridget_joness_diary_2001 + Sharon Maguire + 2001-04-04 + Bridget Jones's Diary + Romantic comedy + Film adaptation + Romance Film + Comedy of manners + Comedy + Drama + + + /en/brigham_city_2001 + Richard Dutcher + Brigham City + Mystery + Indie film + Crime Fiction + Thriller + Crime Thriller + Drama + + + /en/bright_young_things + Stephen Fry + 2003-10-03 + Bright Young Things + Indie film + War film + Comedy-drama + Historical period drama + Comedy of manners + Comedy + Drama + + + /wikipedia/en_title/Brilliant_$0028film$0029 + Roger Cardinal + 2004-02-15 + Brilliant + Thriller + + + /en/bring_it_on + Peyton Reed + 2000-08-22 + Bring It On + Comedy + Sports + + + /en/bring_it_on_again + Damon Santostefano + 2004-01-13 + Bring It On Again + Teen film + Sports + Comedy + + + /en/bring_it_on_all_or_nothing + Steve Rash + 2006-08-08 + Bring It On: All or Nothing + Teen film + Sports + Comedy + + + /en/bringing_down_the_house + Adam Shankman + 2003-03-07 + Bringing Down the House + Romantic comedy + Screwball comedy + Comedy of Errors + Crime Comedy + Comedy + + + /en/broadway_the_golden_age + Rick McKay + 2004-06-11 + Broadway: The Golden Age + Documentary film + Biographical film + + + /en/brokeback_mountain + Ang Lee + 2005-09-02 + Brokeback Mountain + Romance Film + Epic film + Drama + + + /en/broken_allegiance + Nick Hallam + Broken Allegiance + Indie film + Short Film + Fan film + + + /en/broken_flowers + Jim Jarmusch + 2005-08-05 + Broken Flowers + Mystery + Road movie + Comedy + Drama + + + /en/the_broken_hearts_club_a_romantic_comedy + Greg Berlanti + 2000-01-29 + The Broken Hearts Club: A Romantic Comedy + Romance Film + LGBT + Romantic comedy + Gay Themed + Indie film + Comedy-drama + Gay + Gay Interest + Ensemble Film + Comedy + Drama + + + /en/brooklyn_lobster + Kevin Jordan + 2005-09-09 + Brooklyn Lobster + Indie film + Family Drama + Comedy-drama + Comedy + Drama + + + /en/brother + Takeshi Kitano + Brother + Thriller + Crime Fiction + + + /en/brother_bear + Aaron Blaise + Robert A. Walker + 2003-10-20 + Brother Bear + Family + Fantasy + Animation + Adventure Film + + + /en/brother_bear_2 + Ben Gluck + 2006-08-29 + Brother Bear 2 + Family + Animated cartoon + Fantasy + Adventure Film + Animation + + + /en/brother_2 + Aleksei Balabanov + 2000-05-11 + Brother 2 + Crime Fiction + Thriller + Action Film + + + /en/brotherhood_of_blood + Michael Roesch + Peter Scheerer + Sid Haig + Brotherhood of Blood + Horror + Cult film + Creature Film + + + /en/brotherhood_of_the_wolf + Christophe Gans + 2001-01-31 + Brotherhood of the Wolf + Martial Arts Film + Adventure Film + Mystery + Science Fiction + Historical fiction + Thriller + Action Film + + + /en/brothers_of_the_head + Keith Fulton + Louis Pepe + 2005-09-10 + Brothers of the Head + Indie film + Musical + Film adaptation + Music + Mockumentary + Comedy-drama + Historical period drama + Musical Drama + Drama + + + /en/brown_sugar_2002 + Rick Famuyiwa + 2002-10-05 + Brown Sugar + Musical + Romantic comedy + Coming of age + Romance Film + Musical Drama + Musical comedy + Comedy + Drama + + + /en/bruce_almighty + Tom Shadyac + 2003-05-23 + Bruce Almighty + Comedy + Fantasy + Drama + + + /en/bubba_ho-tep + Don Coscarelli + 2002-06-09 + Bubba Ho-Tep + Horror + Parody + Comedy + Mystery + Drama + + + /en/bubble + Steven Soderbergh + 2005-09-03 + Bubble + Crime Fiction + Mystery + Indie film + Thriller + Drama + + + /en/bubble_boy + Blair Hayes + 2001-08-23 + Bubble Boy + Romance Film + Teen film + Romantic comedy + Adventure Film + Comedy + Drama + + + /en/buddy_boy + Mark Hanlon + 2000-03-24 + Buddy Boy + Psychological thriller + Thriller + Indie film + Erotic thriller + + + /en/buffalo_dreams + David Jackson + 2005-03-11 + Buffalo Dreams + Western + Teen film + Drama + + + /en/buffalo_soldiers + Gregor Jordan + 2001-09-08 + Buffalo Soldiers + War film + Crime Fiction + Comedy + Thriller + Satire + Indie film + Drama + + + /en/bug_2006 + William Friedkin + 2006-05-19 + Bug + Thriller + Horror + Indie film + Drama + + + /en/bulletproof_monk + Paul Hunter + 2003-04-16 + Bulletproof Monk + Martial Arts Film + Fantasy + Action Film + Buddy film + Thriller + Action/Adventure + Action Comedy + Comedy + + + /en/bully_2001 + Larry Clark + 2001-06-15 + Bully + Teen film + Crime Fiction + Thriller + Drama + + + /en/bunny_2005 + V. V. Vinayak + 2005-04-06 + Bunny + Musical + Romance Film + World cinema + Tollywood + Musical Drama + Drama + + + /en/bunshinsaba + Ahn Byeong-ki + 2004-05-14 + Bunshinsaba + Horror + World cinema + East Asian cinema + + + /en/bunty_aur_babli + Shaad Ali + 2005-05-27 + Bunty Aur Babli + Romance Film + Musical + World cinema + Musical comedy + Comedy + Adventure Film + Crime Fiction + + + /en/onibus_174 + José Padilha + 2002-10-22 + Bus 174 + Documentary film + True crime + + + /en/bus_conductor + V. M. Vinu + 2005-12-23 + Bus Conductor + Comedy + Action Film + Malayalam Cinema + World cinema + Drama + + + /m/0bvs38 + Michael Votto + Busted Shoes and Broken Hearts: A Film About Lowlight + Indie film + Documentary film + + + /en/butterfly_2004 + Yan Yan Mak + 2004-09-04 + Butterfly + LGBT + Chinese Movies + Drama + + + /en/butterfly_on_a_wheel + Mike Barker + 2007-02-10 + Butterfly on a Wheel + Thriller + Crime Thriller + Crime Fiction + Psychological thriller + Drama + + + /en/c_i_d_moosa + Johny Antony + 2003-07-04 + C.I.D.Moosa + Action Film + Comedy + Malayalam Cinema + World cinema + + + /en/c_r_a_z_y + Jean-Marc Vallée + 2005-05-27 + C.R.A.Z.Y. + LGBT + Indie film + Comedy-drama + Gay + Gay Interest + Gay Themed + Historical period drama + Coming of age + Drama + + + /en/c_s_a_the_confederate_states_of_america + Kevin Willmott + C.S.A.: The Confederate States of America + Mockumentary + Satire + Black comedy + Parody + Indie film + Political cinema + Comedy + Drama + + + /en/cabaret_paradis + Corinne Benizio + Gilles Benizio + 2006-04-12 + Cabaret Paradis + Comedy + + + /wikipedia/it_id/335645 + Michael Haneke + 2005-05-14 + Caché + Thriller + Mystery + Psychological thriller + Drama + + + /en/cactuses + Matt Hannon + Rick Rapoza + 2006-03-15 + Cactuses + Drama + + + /en/cadet_kelly + Larry Shaw + 2002-03-08 + Cadet Kelly + Teen film + Coming of age + Family + Comedy + + + /en/caffeine_2006 + John Cosgrove + Caffeine + Romantic comedy + Romance Film + Indie film + Ensemble Film + Workplace Comedy + Comedy + + + /wikipedia/es_id/1062610 + Nisha Ganatra + Jennifer Arzt + Cake + Romantic comedy + Short Film + Romance Film + Comedy + Drama + + + /en/calcutta_mail + Sudhir Mishra + 2003-06-30 + Calcutta Mail + Thriller + Bollywood + World cinema + + + /en/can_you_hack_it + Sam Bozzo + Hackers Wanted + Indie film + Documentary film + + + /en/candy_2006 + Neil Armfield + 2006-04-27 + Candy + Romance Film + Indie film + World cinema + Drama + + + /en/caotica_ana + Julio Medem + 2007-08-24 + Caótica Ana + Romance Film + Mystery + Drama + + + /en/capote + Bennett Miller + 2005-09-02 + Capote + Crime Fiction + Biographical film + Drama + + + /en/capturing_the_friedmans + Andrew Jarecki + 2003-01-17 + Capturing the Friedmans + Documentary film + Mystery + Biographical film + + + /en/care_bears_journey_to_joke_a_lot + Mike Fallows + 2004-10-05 + Care Bears: Journey to Joke-a-lot + Musical + Computer Animation + Animation + Children's Fantasy + Children's/Family + Musical comedy + Comedy + Family + + + /en/cargo_2006 + Clive Gordon + 2006-01-24 + Cargo + Thriller + Psychological thriller + Indie film + Adventure Film + Drama + + + /en/cars + John Lasseter + Joe Ranft + 2006-03-14 + Cars + Animation + Family + Adventure Film + Sports + Comedy + + + /en/casanova + Lasse Hallström + 2005-09-03 + Casanova + Romance Film + Romantic comedy + Costume drama + Adventure Film + Historical period drama + Swashbuckler film + Comedy + Drama + + + /en/case_of_evil + Graham Theakston + 2002-10-25 + Sherlock: Case of Evil + Mystery + Action Film + Adventure Film + Thriller + Crime Fiction + Drama + + + /en/cast_away + 2000-12-07 + Cast Away + Robert Zemeckis + Airplanes and airports + Adventure Film + Action/Adventure + Drama + + + /en/castlevania_2007 + Castlevania + Paul W. S. Anderson + Sylvain White + Action Film + Horror + + + /en/catch_me_if_you_can + 2002-12-16 + Catch Me If You Can + Steven Spielberg + Crime Fiction + Comedy + Biographical film + Drama + + + /en/catch_that_kid + 2004-02-06 + Catch That Kid + Bart Freundlich + Teen film + Adventure Film + Crime Fiction + Family + Caper story + Children's/Family + Crime Comedy + Family-Oriented Adventure + Comedy + + + /en/caterina_in_the_big_city + 2003-10-24 + Caterina in the Big City + Paolo Virzì + Comedy + Drama + + + /en/cats_dogs + 2001-07-04 + Cats &amp; Dogs + Lawrence Guterman + Adventure Film + Family + Action Film + Children's/Family + Fantasy Adventure + Fantasy Comedy + Comedy + + + /en/catwoman_2004 + 2004-07-19 + Catwoman + Pitof + Action Film + Crime Fiction + Fantasy + Action/Adventure + Thriller + Superhero movie + + + /en/caved_in_prehistoric_terror + 2006-01-07 + Caved In: Prehistoric Terror + Richard Pepin + Science Fiction + Horror + Natural horror film + Monster + Fantasy + Television film + Creature Film + Sci-Fi Horror + + + /en/cellular + 2004-09-10 + Cellular + David R. Ellis + Thriller + Action Film + Crime Thriller + Action/Adventure + + + /en/center_stage + 2000-05-12 + Center Stage + Nicholas Hytner + Teen film + Dance film + Musical + Musical Drama + Ensemble Film + Drama + + + /en/chai_lai + 2006-01-26 + Chai Lai + Poj Arnon + Action Film + Martial Arts Film + Comedy + + + /en/chain_2004 + Chain + Jem Cohen + Documentary film + + + /en/chakram_2005 + 2005-03-25 + Chakram + Krishna Vamsi + Romance Film + Drama + Tollywood + World cinema + + + /en/challenger_2007 + Challenger + Philip Kaufman + Drama + + + /en/chalo_ishq_ladaaye + 2002-12-27 + Chalo Ishq Ladaaye + Aziz Sejawal + Romance Film + Comedy + Bollywood + World cinema + + + /en/chalte_chalte + 2003-06-12 + Chalte Chalte + Aziz Mirza + Romance Film + Musical + Bollywood + Drama + Musical Drama + + + /en/chameli + 2003-12-31 + Chameli + Sudhir Mishra + Anant Balani + Romance Film + Bollywood + World cinema + Drama + + + /en/chandni_bar + 2001-09-28 + Chandni Bar + Madhur Bhandarkar + Crime Fiction + Bollywood + World cinema + Drama + + + /en/chandramukhi + 2005-04-13 + Chandramukhi + P. Vasu + Horror + World cinema + Musical + Horror comedy + Musical comedy + Comedy + Fantasy + Romance Film + + + /en/changing_lanes + 2002-04-07 + Changing Lanes + Roger Michell + Thriller + Psychological thriller + Melodrama + Drama + + + /en/chaos_2007 + 2005-12-15 + Chaos + Tony Giglio + Thriller + Action Film + Crime Fiction + Heist film + Action/Adventure + Drama + + + /en/chaos_2005 + 2005-08-10 + Chaos + David DeFalco + Horror + Teen film + B movie + Slasher + + + /en/chaos_and_creation_at_abbey_road + 2006-01-27 + Chaos and Creation at Abbey Road + Simon Hilton + Musical + + + /en/chaos_theory_2007 + Chaos Theory + Marcos Siega + Romance Film + Romantic comedy + Comedy-drama + Comedy + Drama + + + /en/chapter_27 + 2007-01-25 + Chapter 27 + Jarrett Schaefer + Indie film + Crime Fiction + Biographical film + Drama + + + /en/charlie_and_the_chocolate_factory_2005 + 2005-07-10 + Charlie and the Chocolate Factory + Tim Burton + Fantasy + Remake + Adventure Film + Family + Children's Fantasy + Children's/Family + Comedy + + + /en/charlies_angels + 2000-10-22 + Charlie's Angels + Joseph McGinty Nichol + Action Film + Crime Fiction + Comedy + Adventure Film + Thriller + + + /en/charlies_angels_full_throttle + 2003-06-18 + Charlie's Angels: Full Throttle + Joseph McGinty Nichol + Martial Arts Film + Action Film + Adventure Film + Crime Fiction + Action/Adventure + Action Comedy + Comedy + + + /en/charlotte_gray + 2001-12-17 + Charlotte Gray + Gillian Armstrong + Romance Film + War film + Political drama + Historical period drama + Film adaptation + Drama + + + /en/charlottes_web + 2006-12-07 + Charlotte's Web + Gary Winick + Animation + Family + Comedy + + + /en/chasing_liberty + 2004-01-07 + Chasing Liberty + Andy Cadiff + Romantic comedy + Teen film + Romance Film + Road movie + Comedy + + + /en/chasing_papi + 2003-04-16 + Chasing Papi + Linda Mendoza + Romance Film + Romantic comedy + Farce + Chase Movie + Comedy + + + /en/chasing_sleep + 2001-09-16 + Chasing Sleep + Michael Walker + Mystery + Psychological thriller + Surrealism + Thriller + Indie film + Suspense + Crime Thriller + + + /en/chasing_the_horizon + 2006-04-26 + Chasing the Horizon + Markus Canter + Mason Canter + Documentary film + Auto racing + + + /en/chathikkatha_chanthu + 2004-04-14 + Chathikkatha Chanthu + Meccartin + Comedy + Malayalam Cinema + World cinema + Drama + + + /en/chatrapati + 2005-09-25 + Chhatrapati + S. S. Rajamouli + Action Film + Tollywood + World cinema + Drama + + + /en/cheaper_by_the_dozen_2003 + 2003-12-25 + Cheaper by the Dozen + Shawn Levy + Family + Comedy + Drama + + + /en/cheaper_by_the_dozen_2 + 2005-12-21 + Cheaper by the Dozen 2 + Adam Shankman + Family + Adventure Film + Domestic Comedy + Comedy + + + /en/checking_out_2005 + 2005-04-10 + Checking Out + Jeff Hare + Black comedy + Comedy + + + /en/chellamae + 2004-09-10 + Chellamae + Gandhi Krishna + Romance Film + Tamil cinema + World cinema + + + /en/chemman_chaalai + Chemman Chaalai + Deepak Kumaran Menon + Tamil cinema + World cinema + Drama + + + /en/chennaiyil_oru_mazhai_kaalam + Chennaiyil Oru Mazhai Kaalam + Prabhu Deva + + + /en/cher_the_farewell_tour_live_in_miami + 2003-08-26 + The Farewell Tour + Dorina Sanchez + David Mallet + Music video + + + /en/cherry_falls + 2000-07-29 + Cherry Falls + Geoffrey Wright + Satire + Slasher + Indie film + Horror + Horror comedy + Comedy + + + /wikipedia/en_title/Chess_$00282006_film$0029 + 2006-07-07 + Chess + RajBabu + Crime Fiction + Thriller + Action Film + Comedy + Malayalam Cinema + World cinema + + + /en/chica_de_rio + 2003-04-11 + Girl from Rio + Christopher Monger + Romantic comedy + Romance Film + Comedy + + + /en/chicago_2002 + 2002-12-10 + Chicago + Rob Marshall + Musical + Crime Fiction + Comedy + Musical comedy + + + /en/chicken_little + 2005-10-30 + Chicken Little + Mark Dindal + Animation + Adventure Film + Comedy + + + /en/chicken_run + 2000-06-21 + Chicken Run + Peter Lord + Nick Park + Family + Animation + Comedy + + + /en/child_marriage_2005 + Child Marriage + Neeraj Kumar + Documentary film + + + /en/children_of_men + 2006-09-03 + Children of Men + Alfonso Cuarón + Thriller + Action Film + Science Fiction + Dystopia + Doomsday film + Future noir + Mystery + Adventure Film + Film adaptation + Action Thriller + Drama + + + /en/children_of_the_corn_revelation + 2001-10-09 + Children of the Corn: Revelation + Guy Magar + Horror + Supernatural + Cult film + + + /en/children_of_the_living_dead + Children of the Living Dead + Tor Ramsey + Indie film + Teen film + Horror + Zombie Film + Horror comedy + + + /en/chinthamani_kolacase + 2006-03-31 + Chinthamani Kolacase + Shaji Kailas + Horror + Mystery + Crime Fiction + Action Film + Thriller + Malayalam Cinema + World cinema + + + /en/chips_2008 + CHiPs + Musical + Children's/Family + + + /en/chithiram_pesuthadi + 2006-02-10 + Chithiram Pesuthadi + Mysskin + Romance Film + Tamil cinema + World cinema + Drama + + + /en/chocolat_2000 + 2000-12-15 + Chocolat + Lasse Hallström + Romance Film + Drama + + + /en/choose_your_own_adventure_the_abominable_snowman + 2006-07-25 + Choose Your Own Adventure The Abominable Snowman + Bob Doucette + Adventure Film + Family + Children's/Family + Family-Oriented Adventure + Animation + + + /en/chopin_desire_for_love + 2002-03-01 + Chopin: Desire for Love + Jerzy Antczak + Biographical film + Romance Film + Music + Drama + + + /en/chopper + 2000-08-03 + Chopper + Andrew Dominik + Biographical film + Crime Fiction + Comedy + Drama + + + /en/chori_chori_2003 + 2003-08-01 + Chori Chori + Milan Luthria + Romance Film + Musical + Romantic comedy + Musical comedy + Comedy + Bollywood + World cinema + Drama + Musical Drama + + + /en/chori_chori_chupke_chupke + 2001-03-09 + Chori Chori Chupke Chupke + Abbas Burmawalla + Mustan Burmawalla + Romance Film + Musical + Bollywood + World cinema + Drama + Musical Drama + + + /en/christinas_house + 2000-02-24 + Christina's House + Gavin Wilding + Thriller + Mystery + Horror + Teen film + Slasher + Psychological thriller + Drama + + + /en/christmas_with_the_kranks + 2004-11-24 + Christmas with the Kranks + Joe Roth + Christmas movie + Family + Film adaptation + Slapstick + Holiday Film + Comedy + + + /en/chromophobia + 2005-05-21 + Chromophobia + Martha Fiennes + Family Drama + Drama + + + /en/chubby_killer + Chubby Killer + Reuben Rox + Slasher + Indie film + Horror + + + /en/chukkallo_chandrudu + 2006-01-14 + Chukkallo Chandrudu + Siva Kumar + Comedy + Tollywood + World cinema + Drama + + + /en/chup_chup_ke + 2006-06-09 + Chup Chup Ke + Priyadarshan + Kookie Gulati + Romantic comedy + Comedy + Romance Film + Drama + + + /en/church_ball + 2006-03-17 + Church Ball + Kurt Hale + Family + Sports + Comedy + + + /en/churchill_the_hollywood_years + 2004-12-03 + Churchill: The Hollywood Years + Peter Richardson + Satire + Comedy + + + /en/cinderella_iii + 2007-02-06 + Cinderella III: A Twist in Time + Frank Nissen + Family + Animated cartoon + Fantasy + Romance Film + Animation + Children's/Family + + + /en/cinderella_man + 2005-05-23 + Cinderella Man + Ron Howard + Biographical film + Historical period drama + Romance Film + Sports + Drama + + + /en/cinemania + Cinemania + Angela Christlieb + Stephen Kijak + Documentary film + Culture &amp; Society + + + /en/city_of_ghosts + 2003-03-27 + City of Ghosts + Matt Dillon + Thriller + Crime Fiction + Crime Thriller + Drama + + + /en/city_of_god + 2002-05-18 + City of God + Fernando Meirelles + Crime Fiction + Drama + + + /en/claustrophobia_2003 + Claustrophobia + Mark Tapio Kines + Slasher + Horror + + + /en/clean + 2004-03-27 + Clean + Olivier Assayas + Music + Drama + + + /en/clear_cut_the_story_of_philomath_oregon + 2006-01-20 + Clear Cut: The Story of Philomath, Oregon + Peter Richardson + Documentary film + + + /en/clerks_ii + 2006-05-26 + Clerks II + Kevin Smith + Buddy film + Workplace Comedy + Comedy + + + /en/click + 2006-06-22 + Click + Frank Coraci + Comedy + Fantasy + Drama + + + /en/clockstoppers + 2002-03-29 + Clockstoppers + Jonathan Frakes + Science Fiction + Teen film + Family + Thriller + Adventure Film + Comedy + + + /en/closer_2004 + 2004-12-03 + Closer + Mike Nichols + Romance Film + Drama + + + /en/closing_the_ring + 2007-09-14 + Closing the Ring + Richard Attenborough + War film + Romance Film + Drama + + + /en/club_dread + 2004-02-27 + Club Dread + Jay Chandrasekhar + Parody + Horror + Slasher + Black comedy + Indie film + Horror comedy + Comedy + + + /en/coach_carter + 2005-01-13 + Coach Carter + Thomas Carter + Coming of age + Sports + Docudrama + Biographical film + Drama + + + /en/coast_guard_2002 + 2002-11-14 + The Coast Guard + Kim Ki-duk + Action Film + War film + East Asian cinema + World cinema + Drama + + + /en/code_46 + 2004-05-07 + Code 46 + Michael Winterbottom + Science Fiction + Thriller + Romance Film + Drama + + + /en/codename_kids_next_door_operation_z_e_r_o + 2006-01-13 + Codename: Kids Next Door: Operation Z.E.R.O. + Tom Warburton + Science Fiction + Animation + Adventure Film + Family + Comedy + Crime Fiction + + + /en/coffee_and_cigarettes + 2003-09-05 + Coffee and Cigarettes + Jim Jarmusch + Music + Comedy + Drama + + + /en/cold_creek_manor + 2003-09-19 + Cold Creek Manor + Mike Figgis + Thriller + Mystery + Psychological thriller + Crime Thriller + Drama + + + /en/cold_mountain + 2003-12-25 + Cold Mountain + Anthony Minghella + War film + Romance Film + Drama + + + /en/cold_showers + 2005-05-22 + Cold Showers + Antony Cordier + Coming of age + LGBT + World cinema + Gay Themed + Teen film + Erotic Drama + Drama + + + /en/collateral + 2004-08-05 + Collateral + Michael Mann + Thriller + Crime Fiction + Crime Thriller + Film noir + Drama + + + /en/collateral_damage_2002 + 2002-02-04 + Collateral Damage + Andrew Davis + Action Film + Thriller + Drama + + + /en/comedian_2002 + 2002-10-11 + Comedian + Christian Charles + Indie film + Documentary film + Stand-up comedy + Comedy + Biographical film + + + /en/coming_out_2006 + Coming Out + Joel Zwick + Comedy + Drama + + + /en/commitments + 2001-05-04 + Commitments + Carol Mayes + Romantic comedy + Romance Film + Drama + + + /en/common_ground_2000 + 2000-01-29 + Common Ground + Donna Deitch + LGBT + Drama + + + /en/company_2002 + 2002-04-15 + Company + Ram Gopal Varma + Thriller + Action Film + Crime Fiction + Bollywood + World cinema + Drama + + + /en/confessions_of_a_dangerous_mind + Confessions of a Dangerous Mind + George Clooney + Biographical film + Thriller + Crime Fiction + Comedy + Drama + + + /en/confessions_of_a_teenage_drama_queen + 2004-02-17 + Family + Teen film + Musical comedy + Romantic comedy + Sara Sugarman + Confessions of a Teenage Drama Queen + + + /en/confetti_2006 + 2006-05-05 + Mockumentary + Romantic comedy + Romance Film + Parody + Music + Comedy + Debbie Isitt + Confetti + + + /en/confidence_2004 + 2003-01-20 + Thriller + Crime Fiction + Drama + James Foley + Confidence + + + /en/connie_and_carla + 2004-04-16 + LGBT + Buddy film + Comedy of Errors + Comedy + Michael Lembeck + Connie and Carla + + + /en/conspiracy_2001 + 2001-05-19 + History + War film + Political drama + Historical period drama + Drama + Frank Pierson + Conspiracy + + + /en/constantine_2005 + 2005-02-08 + Horror + Fantasy + Action Film + Francis Lawrence + Constantine + + + /en/control_room + Documentary film + Political cinema + Culture &amp; Society + War film + Journalism + Media studies + Jehane Noujaim + Control Room + + + /en/control_the_ian_curtis_film + 2007-05-17 + Biographical film + Indie film + Musical + Japanese Movies + Drama + Musical Drama + Anton Corbijn + Control + + + /en/cope_2005 + 2007-01-23 + Horror + B movie + Ronald Jackson + Ronald Jerry + Cope + + + /en/copying_beethoven + 2006-07-30 + Biographical film + Music + Historical fiction + Drama + Agnieszka Holland + Copying Beethoven + + + /en/corporate + 2006-07-07 + Drama + Madhur Bhandarkar + Corporate + + + /en/corpse_bride + 2005-09-07 + Fantasy + Animation + Musical + Romance Film + Tim Burton + Mike Johnson + Corpse Bride + + + /en/covert_one_the_hades_factor + Thriller + Action Film + Action/Adventure + Mick Jackson + Covert One: The Hades Factor + + + /en/cow_belles + 2006-03-24 + Family + Television film + Teen film + Romantic comedy + Comedy + Francine McDougall + Cow Belles + + + /en/cowards_bend_the_knee + 2003-02-26 + Silent film + Indie film + Surrealism + Romance Film + Experimental film + Crime Fiction + Avant-garde + Drama + Guy Maddin + Cowards Bend the Knee + + + /en/cowboy_bebop_the_movie + 2001-09-01 + Anime + Science Fiction + Action Film + Animation + Comedy + Crime Fiction + Shinichirō Watanabe + Cowboy Bebop: The Movie + + + /en/coyote_ugly + 2000-07-31 + Musical + Romance Film + Comedy + Drama + Musical comedy + Musical Drama + David McNally + Coyote Ugly + + + /en/crackerjack_2002 + 2002-11-07 + Comedy + Paul Moloney + Crackerjack + + + /en/cradle_2_the_grave + 2003-02-28 + Martial Arts Film + Thriller + Action Film + Crime Fiction + Buddy film + Action Thriller + Adventure Film + Crime + Andrzej Bartkowiak + Cradle 2 the Grave + + + /en/cradle_of_fear + Horror + B movie + Slasher + Alex Chandon + Cradle of Fear + + + /en/crank + 2006-08-31 + Thriller + Action Film + Action/Adventure + Crime Thriller + Crime Fiction + Action Thriller + Neveldine/Taylor + Crank + + + /en/crash_2004 + 2004-09-10 + Crime Fiction + Indie film + Drama + Paul Haggis + Crash + + + /en/crazy_beautiful + 2001-06-28 + Teen film + Romance Film + Drama + John Stockwell + Crazy/Beautiful + + + /en/creep_2005 + 2004-08-10 + Horror + Mystery + Thriller + Christopher Smith + Creep + + + /en/criminal + 2004-09-10 + Thriller + Crime Fiction + Indie film + Crime Thriller + Heist film + Comedy + Drama + Gregory Jacobs + Criminal + + + /en/crimson_gold + World cinema + Thriller + Drama + Jafar Panahi + Crimson Gold + + + /en/crimson_rivers_ii_angels_of_the_apocalypse + 2004-02-18 + Action Film + Thriller + Crime Fiction + Olivier Dahan + Crimson Rivers II: Angels of the Apocalypse + + + /en/crocodile_2000 + 2000-12-26 + Horror + Natural horror film + Teen film + Thriller + Action Film + Action/Adventure + Tobe Hooper + Crocodile + + + /en/crocodile_2_death_swamp + 2002-08-01 + Horror + Natural horror film + B movie + Action/Adventure + Action Film + Thriller + Adventure Film + Action Thriller + Creature Film + Gary Jones + Crocodile 2: Death Swamp + + + /en/crocodile_dundee_in_los_angeles + 2001-04-12 + Action Film + Adventure Film + Action/Adventure + World cinema + Action Comedy + Comedy + Drama + Simon Wincer + Crocodile Dundee in Los Angeles + + + /en/crossing_the_bridge_the_sound_of_istanbul + 2005-06-09 + Musical + Documentary film + Music + Culture &amp; Society + Fatih Akın + Crossing the Bridge: The Sound of Istanbul + + + /en/crossover_2006 + 2006-09-01 + Action Film + Coming of age + Teen film + Sports + Short Film + Fantasy + Drama + Preston A. Whitmore II + Crossover + + + /en/crossroads_2002 + 2002-02-11 + Coming of age + Teen film + Musical + Romance Film + Romantic comedy + Adventure Film + Comedy-drama + Musical Drama + Musical comedy + Comedy + Drama + Tamra Davis + Crossroads + + + /en/crouching_tiger_hidden_dragon + 2000-05-16 + Romance Film + Action Film + Martial Arts Film + Drama + Ang Lee + Crouching Tiger, Hidden Dragon + + + /en/cruel_intentions_3 + 2004-05-25 + Erotica + Thriller + Teen film + Psychological thriller + Romance Film + Erotic thriller + Crime Fiction + Crime Thriller + Drama + Scott Ziehl + Cruel Intentions 3 + + + /en/crustaces_et_coquillages + 2005-02-12 + Musical + Romantic comedy + LGBT + Romance Film + World cinema + Musical Drama + Musical comedy + Comedy + Drama + Jacques Martineau + Olivier Ducastel + Crustacés et Coquillages + + + /en/cry_wolf + 2005-09-16 + Slasher + Horror + Mystery + Thriller + Drama + Jeff Wadlow + Cry_Wolf + + + /en/cube_2_hypercube + 2002-04-15 + Science Fiction + Horror + Psychological thriller + Thriller + Escape Film + Andrzej Sekuła + Cube 2: Hypercube + + + /en/curious_george_2006 + 2006-02-10 + Animation + Adventure Film + Family + Comedy + Matthew O'Callaghan + Curious George + + + /en/curse_of_the_golden_flower + 2006-12-21 + Romance Film + Action Film + Drama + Zhang Yimou + Curse of the Golden Flower + + + /en/cursed + 2004-11-07 + Horror + Thriller + Horror comedy + Comedy + Wes Craven + Cursed + + + /en/d-tox + 2002-01-04 + Thriller + Crime Thriller + Horror + Mystery + Jim Gillespie + D-Tox + + + /en/daddy + 2001-10-04 + Family + Drama + Tollywood + World cinema + Suresh Krissna + Daddy + + + /en/daddy_day_care + 2003-05-04 + Family + Comedy + Steve Carr + Daddy Day Care + + + /en/daddy_long-legs + 2005-01-13 + Romantic comedy + East Asian cinema + World cinema + Drama + Gong Jeong-shik + Daddy-Long-Legs + + + /en/dahmer_2002 + 2002-06-21 + Thriller + Biographical film + LGBT + Crime Fiction + Indie film + Mystery + Cult film + Horror + Slasher + Drama + David Jacobson + Dahmer + + + /en/daisy_2006 + 2006-03-09 + Chinese Movies + Romance Film + Melodrama + Drama + Andrew Lau + Daisy + + + /en/daivanamathil + Drama + Malayalam Cinema + World cinema + Jayaraj + Daivanamathil + + + /en/daltry_calhoun + 2005-09-25 + Black comedy + Comedy-drama + Comedy + Drama + Katrina Holden Bronson + Daltry Calhoun + + + /en/dan_in_real_life + 2007-10-26 + Romance Film + Romantic comedy + Comedy-drama + Domestic Comedy + Comedy + Drama + Peter Hedges + Dan in Real Life + + + /en/dancer_in_the_dark + 2000-05-17 + Musical + Crime Fiction + Melodrama + Drama + Musical Drama + Lars von Trier + Dancer in the Dark + + + /en/daniel_amos_live_in_anaheim_1985 + Music video + Dave Perry + Daniel Amos Live in Anaheim 1985 + + + /en/danny_deckchair + Romantic comedy + Indie film + Romance Film + World cinema + Fantasy Comedy + Comedy + Jeff Balsmeyer + Danny Deckchair + + + /en/daredevil_2003 + 2003-02-09 + Action Film + Fantasy + Thriller + Crime Fiction + Superhero movie + Mark Steven Johnson + Daredevil + + + /en/dark_blue + 2002-12-14 + Action Film + Crime Fiction + Historical period drama + Drama + Ron Shelton + Dark Blue + + + /en/dark_harvest + Horror + Slasher + Paul Moore, Jr. + Dark Harvest + + + /en/dark_water + 2005-06-27 + Thriller + Horror + Drama + Walter Salles + Dark Water + + + /en/dark_water_2002 + 2002-01-19 + Thriller + Horror + Mystery + Drama + Hideo Nakata + Dark Water + + + /en/darkness_2002 + 2002-10-03 + Horror + Jaume Balagueró + Darkness + + + /en/darna_mana_hai + 2003-07-25 + Horror + Adventure Film + Bollywood + World cinema + Prawaal Raman + Darna Mana Hai + + + /en/darna_zaroori_hai + 2006-04-28 + Horror + Thriller + Comedy + Bollywood + World cinema + Ram Gopal Varma + Jijy Philip + Prawaal Raman + Vivek Shah + J. D. Chakravarthy + Sajid Khan + Manish Gupta + Darna Zaroori Hai + + + /en/darth_vaders_psychic_hotline + 2002-04-16 + Indie film + Short Film + Fan film + John E. Hudgens + Darth Vader's Psychic Hotline + + + /en/darwins_nightmare + 2004-09-01 + Documentary film + Political cinema + Biographical film + Hubert Sauper + Darwin's Nightmare + + + /en/das_experiment + 2010-07-15 + Thriller + Psychological thriller + Drama + Paul Scheuring + The Experiment + + + /en/dasavatharam + 2008-06-12 + Science Fiction + Disaster Film + Tamil cinema + K. S. Ravikumar + Dasavathaaram + + + /en/date_movie + 2006-02-17 + Romantic comedy + Parody + Romance Film + Comedy + Aaron Seltzer + Jason Friedberg + Date Movie + + + /en/dave_attells_insomniac_tour + 2006-04-11 + Stand-up comedy + Comedy + Joel Gallen + Dave Attell's Insomniac Tour + + + /en/dave_chappelles_block_party + 2006-03-03 + Documentary film + Music + Concert film + Hip hop film + Stand-up comedy + Comedy + Michel Gondry + Dave Chappelle's Block Party + + + /en/david_layla + 2005-10-21 + Romantic comedy + Indie film + Romance Film + Comedy-drama + Comedy + Drama + Jay Jonroy + David &amp; Layla + + + /en/david_gilmour_in_concert + Music video + Concert film + David Mallet + David Gilmour in Concert + + + /en/dawn_of_the_dead_2004 + 2004-03-10 + Horror + Action Film + Thriller + Science Fiction + Drama + Zack Snyder + Dawn of the Dead + + + /en/day_of_the_dead_2007 + 2008-04-08 + Splatter film + Doomsday film + Horror + Thriller + Cult film + Zombie Film + Steve Miner + Day of the Dead + + + /en/day_of_the_dead_2_contagium + 2005-10-18 + Horror + Zombie Film + Ana Clavell + James Glenn Dudelson + Day of the Dead 2: Contagium + + + /en/day_watch + 2006-01-01 + Thriller + Fantasy + Action Film + Timur Bekmambetov + Day Watch + + + /en/day_zero + 2007-11-02 + Indie film + Political drama + Drama + Bryan Gunnar Cole + Day Zero + + + /en/de-lovely + 2004-05-22 + Musical + Biographical film + Musical Drama + Drama + Irwin Winkler + De-Lovely + + + /en/dead_breakfast + 2004-03-19 + Horror + Black comedy + Creature Film + Zombie Film + Horror comedy + Comedy + Matthew Leutwyler + Dead &amp; Breakfast + + + /en/dead_birds_2005 + 2005-03-15 + Horror + Alex Turner + Dead Birds + + + /en/dead_end_2003 + 2003-01-30 + Horror + Thriller + Mystery + Comedy + Jean-Baptiste Andrea + Fabrice Canepa + Dead End + + + /en/dead_friend + 2004-06-18 + Horror + East Asian cinema + World cinema + Kim Tae-kyeong + Dead Friend + + + /en/dead_mans_shoes + 2004-10-01 + Psychological thriller + Crime Fiction + Thriller + Drama + Shane Meadows + Dead Man's Shoes + + + /en/dear_frankie + 2004-05-04 + Indie film + Drama + Romance Film + Shona Auerbach + Dear Frankie + + + /en/dear_wendy + 2004-05-16 + Indie film + Crime Fiction + Melodrama + Comedy + Romance Film + Drama + Thomas Vinterberg + Dear Wendy + + + /en/death_in_gaza + 2004-02-11 + Documentary film + War film + Children's Issues + Culture &amp; Society + Biographical film + James Miller + Death in Gaza + + + /en/death_to_smoochy + 2002-03-29 + Comedy + Thriller + Crime Fiction + Drama + Danny DeVito + Death to Smoochy + + + /en/death_trance + 2005-05-12 + Action Film + Fantasy + Martial Arts Film + Thriller + Action/Adventure + World cinema + Action Thriller + Japanese Movies + Yuji Shimomura + Death Trance + + + /en/death_walks_the_streets + 2008-06-26 + Indie film + Horror + Crime Fiction + James Zahn + Death Walks the Streets + + + /en/deathwatch + 2002-10-06 + Horror + War film + Thriller + Drama + Michael J. Bassett + Deathwatch + + + /en/december_boys + Coming of age + Film adaptation + Indie film + Historical period drama + World cinema + Drama + Rod Hardy + December Boys + + + /en/decoys + Science Fiction + Horror + Thriller + Alien Film + Horror comedy + Matthew Hastings + Decoys + + + /en/deepavali + 2007-02-09 + Romance Film + Tamil cinema + World cinema + Ezhil + Deepavali + + + /en/deewane_huye_pagal + 2005-11-25 + Romance Film + Romantic comedy + Comedy + Bollywood + World cinema + Drama + Vikram Bhatt + Deewane Huye Paagal + + + /wikipedia/ja_id/980449 + 2006-11-20 + Thriller + Science Fiction + Time travel + Action Film + Mystery + Crime Thriller + Action/Adventure + Tony Scott + Déjà Vu + + + /en/democrazy_2005 + Parody + Action/Adventure + Action Film + Indie film + Superhero movie + Comedy + Michael Legge + Democrazy + + + /en/demonium + 2001-08-25 + Horror + Thriller + Andreas Schnaas + Demonium + + + /en/der_schuh_des_manitu + 2001-07-13 + Western + Comedy + Parody + Michael Herbig + Der Schuh des Manitu + + + /en/der_tunnel + 2001-01-21 + World cinema + Thriller + Political drama + Political thriller + Drama + Roland Suso Richter + The Tunnel + + + /en/derailed + 2005-11-11 + Thriller + Psychological thriller + Crime Thriller + Drama + Mikael Håfström + Derailed + + + /en/derailed_2002 + Thriller + Action Film + Martial Arts Film + Disaster Film + Action/Adventure + Bob Misiorowski + Derailed + + + /en/destinys_child_live_in_atlana + 2006-03-27 + Music + Documentary film + Julia Knowles + Destiny's Child: Live In Atlana + + + /en/deuce_bigalow_european_gigolo + 2005-08-06 + Deuce Bigalow: European Gigolo + Mike Bigelow + Sex comedy + Slapstick + Gross out + Gross-out film + Comedy + + + /en/dev + 2004-06-11 + Dev + Govind Nihalani + Drama + Bollywood + + + /en/devadasu + 2006-01-11 + Devadasu + YVS Chowdary + Gopireddy Mallikarjuna Reddy + Romance Film + Drama + Tollywood + World cinema + + + /en/devdas_2002 + 2002-05-23 + Devdas + Sanjay Leela Bhansali + Romance Film + Musical + Drama + Bollywood + World cinema + Musical Drama + + + /en/devils_playground_2003 + 2003-02-04 + Devil's Playground + Lucy Walker + Documentary film + + + /en/the_devils_pond + 2003-10-21 + Devil's Pond + Joel Viertel + Thriller + Suspense + + + /en/dhadkan + 2000-08-11 + Dhadkan + Dharmesh Darshan + Musical + Romance Film + Melodrama + Bollywood + World cinema + Drama + Musical Drama + + + /en/dhool + 2003-01-10 + Dhool + Dharani + Musical + Family + Action Film + Tamil cinema + World cinema + Drama + Musical Drama + + + /en/dhoom_2 + 2006-11-23 + Dhoom 2 + Sanjay Gadhvi + Crime Fiction + Action/Adventure + Musical + World cinema + Buddy cop film + Action Film + Thriller + Action Thriller + Musical comedy + Comedy + + + /en/dhyaas_parva + Dhyaas Parva + Amol Palekar + Biographical film + Drama + Marathi cinema + + + /en/diary_of_a_housewife + Diary of a Housewife + Vinod Sukumaran + Short Film + Malayalam Cinema + World cinema + + + /en/diary_of_a_mad_black_woman + 2005-02-25 + Diary of a Mad Black Woman + Darren Grant + Comedy-drama + Romance Film + Romantic comedy + Comedy + Drama + + + /en/dickie_roberts_former_child_star + 2003-09-03 + Dickie Roberts: Former Child Star + Sam Weisman + Parody + Slapstick + Comedy + + + /en/die_bad + 2000-07-15 + Die Bad + Ryoo Seung-wan + Crime Fiction + Drama + + + /en/die_mommie_die + 2003-01-20 + Die Mommie Die! + Mark Rucker + Comedy + + + /en/dieu_est_grand_je_suis_toute_petite + 2001-09-26 + God Is Great and I'm Not + Pascale Bailly + Romantic comedy + World cinema + Religious Film + Romance Film + Comedy of manners + Comedy + Drama + + + /en/digimon_the_movie + 2000-03-17 + Digimon: The Movie + Mamoru Hosoda + Shigeyasu Yamauchi + Anime + Fantasy + Family + Animation + Adventure Film + Action Film + Thriller + + + /en/digital_monster_x-evolution + 2005-01-03 + Digital Monster X-Evolution + Hiroyuki Kakudō + Computer Animation + Animation + Japanese Movies + + + /en/digna_hasta_el_ultimo_aliento + 2004-12-17 + Digna... hasta el último aliento + Felipe Cazals + Documentary film + Culture &amp; Society + Law &amp; Crime + Biographical film + + + /en/dil_chahta_hai + 2001-07-24 + Dil Chahta Hai + Farhan Akhtar + Bollywood + Musical + Romance Film + World cinema + Comedy-drama + Musical Drama + Musical comedy + Comedy + Drama + + + /en/dil_diya_hai + 2006-09-08 + Dil Diya Hai + Aditya Datt + Aditya Datt + Romance Film + Bollywood + World cinema + Drama + + + /en/dil_hai_tumhaara + 2002-09-06 + Dil Hai Tumhara + Kundan Shah + Family + Romance Film + Musical + Bollywood + World cinema + Drama + Musical Drama + + + /en/dil_ka_rishta + 2003-01-17 + Dil Ka Rishta + Naresh Malhotra + Romance Film + Bollywood + + + /en/dil_ne_jise_apna_kahaa + 2004-09-10 + Dil Ne Jise Apna Kahaa + Atul Agnihotri + Musical + World cinema + Romance Film + Musical Drama + Musical comedy + Comedy + Bollywood + Drama + + + /en/dinosaur_2000 + 2000-05-13 + Dinosaur + Eric Leighton + Ralph Zondag + Computer Animation + Animation + Fantasy + Costume drama + Family + Adventure Film + Thriller + + + /en/dirty_dancing_2004 + 2004-02-27 + Dirty Dancing: Havana Nights + Guy Ferland + Musical + Coming of age + Indie film + Teen film + Romance Film + Historical period drama + Dance film + Musical Drama + Drama + + + /en/dirty_deeds + 2002-07-18 + Dirty Deeds + David Caesar + Historical period drama + Black comedy + Crime Thriller + Thriller + Crime Fiction + World cinema + Gangster Film + Drama + + + /en/dirty_deeds_2005 + 2005-08-26 + Dirty Deeds + David Kendall + Comedy + + + /en/dirty_love + 2005-09-23 + Dirty Love + John Mallory Asher + Indie film + Sex comedy + Romantic comedy + Romance Film + Comedy + + + /en/disappearing_acts + 2000-12-09 + Disappearing Acts + Gina Prince-Bythewood + Romance Film + Television film + Film adaptation + Comedy-drama + Drama + + + /en/dishyum + 2006-02-02 + Dishyum + Sasi + Romance Film + Action Film + Drama + Tamil cinema + World cinema + + + /en/distant_lights + 2003-02-11 + Distant Lights + Hans-Christian Schmid + Drama + + + /en/district_b13 + 2004-11-10 + District 13 + Pierre Morel + Martial Arts Film + Thriller + Action Film + Science Fiction + Crime Fiction + + + /en/disturbia + 2007-04-04 + Disturbia + D. J. Caruso + Thriller + Mystery + Teen film + Drama + + + /en/ditto_2000 + 2000-05-27 + Ditto + Jeong-kwon Kim + Romance Film + Science Fiction + East Asian cinema + World cinema + + + /en/divine_intervention_2002 + 2002-05-19 + Divine Intervention + Elia Suleiman + Black comedy + World cinema + Romance Film + Comedy + Drama + + + /en/divine_secrets_of_the_ya_ya_sisterhood + 2002-06-03 + Divine Secrets of the Ya-Ya Sisterhood + Callie Khouri + Film adaptation + Comedy-drama + Historical period drama + Family Drama + Ensemble Film + Comedy + Drama + + + /en/doa_dead_or_alive + 2006-09-07 + DOA: Dead or Alive + Corey Yuen + Action Film + Adventure Film + + + /en/dodgeball_a_true_underdog_story + 2004-06-18 + DodgeBall: A True Underdog Story + Rawson Marshall Thurber + Sports + Comedy + + + /en/dog_soldiers + 2002-03-22 + Dog Soldiers + Neil Marshall + Horror + Action Film + Creature Film + + + /en/dogtown_and_z-boys + 2001-01-19 + Dogtown and Z-Boys + Stacy Peralta + Documentary film + Sports + Extreme Sports + Biographical film + + + /en/dogville + 2003-05-19 + Dogville + Lars von Trier + Drama + + + /en/doll_master + 2004-07-30 + The Doll Master + Jeong Yong-Gi + Horror + Thriller + East Asian cinema + World cinema + + + /en/dolls + 2002-09-05 + Dolls + Takeshi Kitano + Romance Film + Drama + + + /en/dominion_prequel_to_the_exorcist + 2005-05-20 + Dominion: Prequel to the Exorcist + Paul Schrader + Horror + Supernatural + Psychological thriller + Cult film + + + /en/domino_2005 + 2005-09-25 + Domino + Tony Scott + Thriller + Action Film + Biographical film + Crime Fiction + Comedy + Adventure Film + Drama + + + /en/don_2006 + 2006-10-20 + Don: The Chase Begins Again + Farhan Akhtar + Crime Fiction + Thriller + Mystery + Action Film + Romance Film + Comedy + Bollywood + World cinema + + + /en/dons_plum + 2001-02-10 + Don's Plum + R.D. Robb + Black-and-white + Ensemble Film + Comedy + Drama + + + /en/dont_come_knocking + 2005-05-19 + Don't Come Knocking + Wim Wenders + Western + Indie film + Musical + Drama + Music + Musical Drama + + + /en/dont_move + 2004-03-12 + Don't Move + Sergio Castellitto + Romance Film + Drama + + + /en/dont_say_a_word_2001 + 2001-09-24 + Don't Say a Word + Gary Fleder + Thriller + Psychological thriller + Crime Fiction + Suspense + + + /en/donnie_darko + 2001-01-19 + Donnie Darko + Richard Kelly + Science Fiction + Mystery + Drama + + + /en/doomsday_2008 + 2008-03-14 + Doomsday + Neil Marshall + Science Fiction + Action Film + + + /en/dopamine_2003 + 2003-01-23 + Dopamine + Mark Decena + Comedy-drama + Romance Film + Indie film + Romantic comedy + Comedy + Drama + + + /en/dosti_friends_forever + 2005-12-23 + Dosti: Friends Forever + Suneel Darshan + Romance Film + Drama + + + /en/double_take + 2001-01-12 + Double Take + George Gallo + Crime Fiction + Action/Adventure + Action Film + Comedy + + + /en/double_teamed + 2002-01-18 + Double Teamed + Duwayne Dunham + Family + Biographical film + Family Drama + Children's/Family + Sports + + + /en/double_vision_2002 + 2002-05-20 + Double Vision + Chen Kuo-Fu + Thriller + Mystery + Martial Arts Film + Action Film + Horror + Psychological thriller + Suspense + World cinema + Crime Thriller + Action/Adventure + Chinese Movies + + + /en/double_whammy + 2001-01-20 + Double Whammy + Tom DiCillo + Comedy-drama + Indie film + Action Film + Crime Fiction + Action/Adventure + Satire + Romantic comedy + Comedy + Drama + + + /en/down_and_derby + 2005-04-15 + Down and Derby + Eric Hendershot + Family + Sports + Comedy + + + /en/down_in_the_valley + 2005-05-13 + Down in the Valley + David Jacobson + Indie film + Romance Film + Family Drama + Psychological thriller + Drama + + + /en/down_to_earth + 2001-02-12 + Down to Earth + Chris Weitz + Paul Weitz + Fantasy + Comedy + + + /en/down_with_love + 2003-05-09 + Down with Love + Peyton Reed + Romantic comedy + Romance Film + Screwball comedy + Parody + Comedy + + + /en/downfall + 2004-09-08 + Downfall + Oliver Hirschbiegel + Biographical film + War film + Historical drama + Drama + + + /en/dr_dolittle_2 + 2001-06-19 + Dr. Dolittle 2 + Steve Carr + Family + Fantasy Comedy + Comedy + Romance Film + + + /en/dr_dolittle_3 + 2006-04-25 + Dr. Dolittle 3 + Rich Thorne + Family + Comedy + + + /en/dracula_pages_from_a_virgins_diary + 2002-02-28 + Dracula: Pages from a Virgin's Diary + Guy Maddin + Silent film + Indie film + Horror + Musical + Experimental film + Dance film + Horror comedy + Musical comedy + Comedy + + + /en/dragon_boys + Dragon Boys + Jerry Ciccoritti + Crime Drama + Ensemble Film + Drama + + + /en/dragon_tiger_gate + 2006-07-27 + Dragon Tiger Gate + Wilson Yip + Martial Arts Film + Wuxia + Action/Adventure + Action Film + Thriller + Superhero movie + World cinema + Action Thriller + Chinese Movies + + + /en/dragonfly_2002 + 2002-02-18 + Dragonfly + Tom Shadyac + Thriller + Mystery + Romance Film + Fantasy + Drama + + + /en/dragonlance_dragons_of_autumn_twilight + 2008-01-15 + Dragonlance: Dragons of Autumn Twilight + Will Meugniot + Animation + Sword and sorcery + Fantasy + Adventure Film + Science Fiction + + + /en/drake_josh_go_hollywood + 2006-01-06 + Drake &amp; Josh Go Hollywood + Adam Weissman + Steve Hoefer + Family + Adventure Film + Comedy + + + /en/drawing_restraint_9 + 2005-07-01 + Drawing Restraint 9 + Matthew Barney + Cult film + Fantasy + Surrealism + Avant-garde + Experimental film + Japanese Movies + + + /en/dreamcatcher + 2003-03-06 + Dreamcatcher + Lawrence Kasdan + Science Fiction + Horror + Thriller + Drama + + + /en/dreamer_2005 + 2005-09-10 + Dreamer + John Gatins + Family + Sports + Drama + + + /en/dreaming_of_julia + 2003-10-24 + Dreaming of Julia + Juan Gerard + Indie film + Action Film + Crime Fiction + Action/Adventure + Comedy + Drama + + + /en/driving_miss_wealthy_juet_sai_ho_bun + 2004-05-03 + Driving Miss Wealthy + James Yuen + Romance Film + World cinema + Romantic comedy + Chinese Movies + Comedy + Drama + + + /en/drowning_mona + 2000-01-02 + Drowning Mona + Nick Gomez + Black comedy + Mystery + Whodunit + Crime Comedy + Crime Fiction + Comedy + + + /en/drugstore_girl + Drugstore Girl + Katsuhide Motoki + Japanese Movies + Comedy + + + /en/druids + 2001-08-31 + Druids + Jacques Dorfmann + Adventure Film + War film + Action/Adventure + World cinema + Epic film + Historical Epic + Historical fiction + Biographical film + Drama + + + /en/duck_the_carbine_high_massacre + 2000-04-20 + Duck! The Carbine High Massacre + William Hellfire + Joey Smack + Satire + Black comedy + Parody + Indie film + Teen film + Comedy + + + /en/dude_wheres_my_car + 2000-12-10 + Dude, Where's My Car? + Danny Leiner + Mystery + Comedy + Science Fiction + + + /en/dude_wheres_the_party + Dude, Where's the Party? + Benny Mathews + Indie film + Comedy of manners + Comedy + + + /en/duets + 2000-09-09 + Duets + Bruce Paltrow + Musical + Musical Drama + Musical comedy + Comedy + Drama + + + /en/dumb_dumberer + 2003-06-13 + Dumb &amp; Dumberer: When Harry Met Lloyd + Troy Miller + Buddy film + Teen film + Screwball comedy + Slapstick + Comedy + + + /en/dumm_dumm_dumm + 2001-04-13 + Dumm Dumm Dumm + Azhagam Perumal + Romance Film + Comedy + Drama + + + /en/dummy_2003 + 2003-09-12 + Dummy + Greg Pritikin + Romantic comedy + Indie film + Romance Film + Comedy + Comedy-drama + Drama + + + /en/dumplings + 2004-08-04 + Dumplings + Fruit Chan + Horror + Drama + + + /en/duplex + 2003-09-26 + Duplex + Danny DeVito + Black comedy + Comedy + + + /en/dus + 2005-07-08 + Dus + Anubhav Sinha + Thriller + Action Film + Crime Fiction + Bollywood + + + /en/dust_2001 + 2001-08-29 + Dust + Milcho Manchevski + Western + Drama + + + /wikipedia/en_title/E_$0028film$0029 + 2006-10-21 + E + S. P. Jananathan + Action Film + Thriller + Drama + + + /en/earthlings + Earthlings + Shaun Monson + Documentary film + Nature + Culture &amp; Society + Animal + + + /en/eastern_promises + 2007-09-08 + Eastern Promises + David Cronenberg + Thriller + Crime Fiction + Mystery + Drama + + + /en/eating_out + Eating Out + Q. Allan Brocka + Romantic comedy + LGBT + Gay Themed + Romance Film + Gay + Gay Interest + Comedy + + + /en/echoes_of_innocence + 2005-09-09 + Echoes of Innocence + Nathan Todd Sims + Thriller + Romance Film + Christian film + Mystery + Supernatural + Drama + + + /en/eddies_million_dollar_cook_off + 2003-07-18 + Eddie's Million Dollar Cook-Off + Paul Hoen + Teen film + + + /en/edison_2006 + 2005-03-05 + Edison + David J. Burke + Thriller + Crime Fiction + Mystery + Crime Thriller + Drama + + + /en/edmond_2006 + 2005-09-02 + Edmond + Stuart Gordon + Thriller + Psychological thriller + Indie film + Crime Fiction + Drama + + + /en/eight_below + 2006-02-17 + Eight Below + Frank Marshall + Adventure Film + Family + Drama + + + /en/eight_crazy_nights + Seth Kearsley + 2002-11-27 + Christmas movie + Musical + Animation + Musical comedy + Comedy + Eight Crazy Nights + + + /en/eight_legged_freaks + Ellory Elkayem + 2002-05-30 + Horror + Natural horror film + Science Fiction + Monster + B movie + Comedy + Action Film + Thriller + Horror comedy + Eight Legged Freaks + + + /en/ek_ajnabee + Apoorva Lakhia + 2005-12-09 + Action Film + Thriller + Crime Fiction + Action Thriller + Drama + Bollywood + Ek Ajnabee + + + /en/eklavya_the_royal_guard + Vidhu Vinod Chopra + 2007-02-16 + Historical drama + Romance Film + Musical + Epic film + Thriller + Bollywood + World cinema + Eklavya: The Royal Guard + + + /en/el_abrazo_partido + Daniel Burman + 2004-02-09 + Indie film + Comedy + Comedy-drama + Drama + Lost Embrace + + + /en/el_aura + Fabián Bielinsky + 2005-09-15 + Thriller + Crime Fiction + Drama + El Aura + + + /en/el_crimen_del_padre_amaro + Carlos Carrera + 2002-08-16 + Romance Film + Drama + The Crime of Father Amaro + + + /en/el_juego_de_arcibel + Alberto Lecchi + 2003-05-29 + Indie film + Political drama + World cinema + Drama + El juego de Arcibel + + + /wikipedia/en_title/El_Muerto_$0028film$0029 + Brian Cox + Indie film + Supernatural + Thriller + Superhero movie + Action/Adventure + El Muerto + + + /en/el_principio_de_arquimedes + Gerardo Herrero + 2004-03-26 + Drama + The Archimedes Principle + + + /en/el_raton_perez + Juan Pablo Buscarini + 2006-07-13 + Fantasy + Animation + Comedy + Family + The Hairy Tooth Fairy + + + /en/election_2005 + Johnnie To + 2005-05-14 + Crime Fiction + Thriller + Drama + Election + + + /en/election_2 + Johnnie To + 2006-04-04 + Thriller + Crime Fiction + Drama + Election 2 + + + /en/daft_punks_electroma + Thomas Bangalter + Guy-Manuel de Homem-Christo + 2006-05-21 + Indie film + Silent film + Science Fiction + World cinema + Avant-garde + Experimental film + Road movie + Drama + Daft Punk's Electroma + + + /en/elektra_2005 + Rob Bowman + 2005-01-08 + Action Film + Action/Adventure + Martial Arts Film + Superhero movie + Thriller + Fantasy + Crime Fiction + Elektra + + + /en/elephant_2003 + Gus Van Sant + 2003-05-18 + Teen film + Indie film + Crime Fiction + Thriller + Drama + Elephant + + + /en/elephants_dream + Bassam Kurdali + 2006-03-24 + Short Film + Computer Animation + Elephants Dream + + + /en/elf_2003 + Jon Favreau + 2003-10-09 + Family + Romance Film + Comedy + Fantasy + Elf + + + /en/elizabethtown_2005 + Cameron Crowe + 2005-09-04 + Romantic comedy + Romance Film + Family Drama + Comedy-drama + Comedy + Drama + Elizabethtown + + + /en/elviras_haunted_hills + Sam Irvin + 2001-06-23 + Parody + Horror + Cult film + Haunted House Film + Horror comedy + Comedy + Elvira's Haunted Hills + + + /en/elvis_has_left_the_building_2004 + Joel Zwick + Action Film + Action/Adventure + Road movie + Crime Comedy + Crime Fiction + Comedy + Elvis Has Left the Building + + + /en/empire_2002 + Franc. Reyes + Thriller + Crime Fiction + Indie film + Action + Drama + Action Thriller + Empire + + + /en/employee_of_the_month_2004 + Mitch Rouse + 2004-01-17 + Black comedy + Indie film + Heist film + Comedy + Employee of the Month + + + /en/employee_of_the_month + Greg Coolidge + 2006-10-06 + Romantic comedy + Romance Film + Comedy + Employee of the Month + + + /en/empress_chung + Nelson Shin + 2005-08-12 + Animation + Children's/Family + East Asian cinema + World cinema + Empress Chung + + + /en/emr + Danny McCullough + James Erskine + 2004-03-08 + Thriller + Mystery + Psychological thriller + EMR + + + /en/en_route + Jan Krüger + 2004-06-17 + Drama + En Route + + + /en/enakku_20_unakku_18 + Jyothi Krishna + 2003-12-19 + Musical + Romance Film + Drama + Musical Drama + Enakku 20 Unakku 18 + + + /en/enchanted_2007 + Kevin Lima + 2007-10-20 + Musical + Fantasy + Romance Film + Family + Comedy + Animation + Adventure Film + Drama + Musical comedy + Musical Drama + Enchanted + + + /en/end_of_the_spear + Jim Hanon + Docudrama + Christian film + Indie film + Adventure Film + Historical period drama + Action/Adventure + Inspirational Drama + Drama + End of the Spear + + + /en/enduring_love + Roger Michell + 2004-09-04 + Thriller + Mystery + Film adaptation + Indie film + Romance Film + Psychological thriller + Drama + Enduring Love + + + /en/enemy_at_the_gates + Jean-Jacques Annaud + 2001-02-07 + War film + Romance Film + Action Film + Historical fiction + Thriller + Drama + Enemy at the Gates + + + /en/enigma_2001 + Michael Apted + 2001-01-22 + Thriller + War film + Spy film + Romance Film + Mystery + Drama + Enigma + + + /en/enigma_the_best_of_jeff_hardy + Craig Leathers + 2005-10-04 + Sports + Action Film + Enigma: The Best of Jeff Hardy + + + /en/enron_the_smartest_guys_in_the_room + Alex Gibney + 2005-04-22 + Documentary film + Indie film + Crime Fiction + Business + Culture &amp; Society + Finance &amp; Investing + Law &amp; Crime + Biographical film + Enron: The Smartest Guys in the Room + + + /en/envy_2004 + Barry Levinson + 2004-04-30 + Black comedy + Cult film + Comedy + Envy + + + /en/equilibrium_2002 + Kurt Wimmer + 2002-12-06 + Science Fiction + Dystopia + Future noir + Thriller + Action Film + Drama + Equilibrium + + + /en/eragon_2006 + Stefen Fangmeier + 2006-12-13 + Family + Adventure Film + Fantasy + Sword and sorcery + Action Film + Drama + Eragon + + + /en/erin_brockovich_2000 + Steven Soderbergh + 2000-03-14 + Biographical film + Legal drama + Trial drama + Romance Film + Docudrama + Comedy-drama + Feminist Film + Drama + Drama film + Erin Brockovich + + + /en/eros_2004 + Michelangelo Antonioni + Steven Soderbergh + Wong Kar-wai + 2004-09-10 + Romance Film + Erotica + Drama + Eros + + + /en/escaflowne + Kazuki Akane + 2000-06-24 + Adventure Film + Science Fiction + Fantasy + Animation + Romance Film + Action Film + Thriller + Drama + Escaflowne + + + /en/escape_2006 + Niki Karimi + Drama + A Few Days Later + + + /en/eternal_sunshine_of_the_spotless_mind + Michel Gondry + 2004-03-19 + Romance Film + Science Fiction + Drama + Eternal Sunshine of the Spotless Mind + + + /en/eulogy_2004 + Michael Clancy + 2004-10-15 + LGBT + Black comedy + Indie film + Comedy + Eulogy + + + /en/eurotrip + Jeff Schaffer + Alec Berg + David Mandel + 2004-02-20 + Sex comedy + Adventure Film + Teen film + Comedy + EuroTrip + + + /en/evan_almighty + Tom Shadyac + 2007-06-21 + Religious Film + Parody + Family + Fantasy + Fantasy Comedy + Heavenly Comedy + Comedy + Evan Almighty + + + /en/everlasting_regret + Stanley Kwan + 2005-09-08 + Romance Film + Chinese Movies + Drama + Everlasting Regret + + + /en/everybody_famous + Dominique Deruddere + 2000-04-12 + World cinema + Comedy + Drama + Everybody's Famous! + + + /en/everymans_feast + Fritz Lehner + 2002-01-25 + Drama + Everyman's Feast + + + /en/everyones_hero + Christopher Reeve + Daniel St. Pierre + Colin Brady + 2006-09-15 + Computer Animation + Family + Animation + Adventure Film + Sports + Children's/Family + Family-Oriented Adventure + Everyone's Hero + + + /en/everything_2005 + 2005-11-22 + Music video + Everything + + + /en/everything_goes + Andrew Kotatko + 2004-06-14 + Short Film + Drama + Everything Goes + + + /en/everything_is_illuminated_2005 + Liev Schreiber + 2005-09-16 + Adventure Film + Film adaptation + Family Drama + Comedy-drama + Road movie + Comedy + Drama + Everything Is Illuminated + + + /en/evilenko + David Grieco + 2004-04-16 + Thriller + Horror + Crime Fiction + Evilenko + + + /en/evolution_2001 + Ivan Reitman + 2001-06-08 + Science Fiction + Parody + Action Film + Action/Adventure + Comedy + Evolution + + + /en/exit_wounds + Andrzej Bartkowiak + 2001-03-16 + Action Film + Mystery + Martial Arts Film + Action/Adventure + Thriller + Crime Fiction + Exit Wounds + + + /en/exorcist_the_beginning + Renny Harlin + 2004-08-18 + Horror + Supernatural + Psychological thriller + Cult film + Historical period drama + Exorcist: The Beginning + + + /en/extreme_days + Eric Hannah + 2001-09-28 + Comedy-drama + Action Film + Christian film + Action/Adventure + Road movie + Teen film + Sports + Extreme Days + + + /en/extreme_ops + Christian Duguay + 2002-11-27 + Action Film + Thriller + Action/Adventure + Sports + Adventure Film + Action Thriller + Chase Movie + Extreme Ops + + + /en/face_2004 + Yoo Sang-gon + 2004-06-11 + Horror + Thriller + Drama + East Asian cinema + World cinema + Face + + + /en/la_finestra_di_fronte + Ferzan Özpetek + 2003-02-28 + Romance Film + Drama + Facing Windows + + + /en/factory_girl + George Hickenlooper + 2006-12-29 + Biographical film + Indie film + Historical period drama + Drama + Factory Girl + + + /en/fahrenheit_9_11 + Michael Moore + 2004-05-17 + Indie film + Documentary film + War film + Culture &amp; Society + Crime Fiction + Drama + Fahrenheit 9/11 + + + /en/fahrenheit_9_111_2 + Michael Moore + Documentary film + Fahrenheit 9/11½ + + + /en/fail_safe_2000 + Stephen Frears + 2000-04-09 + Thriller + Science Fiction + Black-and-white + Film adaptation + Suspense + Psychological thriller + Political drama + Drama + Fail Safe + + + /en/failan + Song Hae-sung + 2001-04-28 + Romance Film + World cinema + Drama + Failan + + + /en/failure_to_launch + Tom Dey + 2006-03-10 + Romantic comedy + Romance Film + Comedy + Failure to Launch + + + /en/fake_2003 + Thanakorn Pongsuwan + 2003-04-28 + Romance Film + Fake + + + /en/falcons_2002 + Friðrik Þór Friðriksson + Drama + Falcons + + + /en/fallen_2006 + Mikael Salomon + Kevin Kerslake + Science Fiction + Fantasy + Action/Adventure + Drama + Fallen + + + /en/family_-_ties_of_blood + Rajkumar Santoshi + 2006-01-11 + Musical + Crime Fiction + Action Film + Romance Film + Thriller + Drama + Musical Drama + Family + + + /en/familywala + Neeraj Vora + Comedy + Drama + Bollywood + World cinema + Familywala + + + /en/fan_chan + Vitcha Gojiew + Witthaya Thongyooyong + Komgrit Triwimol + Nithiwat Tharathorn + Songyos Sugmakanan + Adisorn Tresirikasem + 2003-10-03 + Comedy + Romance Film + Fan Chan + + + /en/fanaa + Kunal Kohli + 2006-05-26 + Thriller + Romance Film + Musical + Bollywood + Musical Drama + Drama + Fanaa + + + /en/fantastic_four_2005 + Tim Story + 2005-06-29 + Fantasy + Science Fiction + Adventure Film + Action Film + Fantastic Four + + + /en/fantastic_four_and_the_silver_surfer + Tim Story + 2007-06-12 + Fantasy + Science Fiction + Action Film + Thriller + Fantastic Four: Rise of the Silver Surfer + + + /en/fantastic_mr_fox_2007 + Wes Anderson + 2009-10-14 + Animation + Adventure Film + Comedy + Family + Fantastic Mr. Fox + + + /en/faq_frequently_asked_questions + Carlos Atanes + 2004-10-12 + Science Fiction + FAQ: Frequently Asked Questions + + + /en/far_cry_2008 + Uwe Boll + 2008-10-02 + Action Film + Science Fiction + Thriller + Adventure Film + Far Cry + + + /en/far_from_heaven + Todd Haynes + 2002-09-01 + Romance Film + Melodrama + Drama + Far from Heaven + + + /en/farce_of_the_penguins + Bob Saget + Parody + Mockumentary + Adventure Comedy + Comedy + Farce of the Penguins + + + /en/eagles_farewell_1_tour_live_from_melbourne + Carol Dodds + 2005-06-14 + Music video + Eagles: Farewell 1 Tour-Live from Melbourne + + + /en/fat_albert + Joel Zwick + 2004-12-12 + Family + Fantasy + Romance Film + Comedy + Fat Albert + + + /en/fat_pizza_the_movie + Paul Fenech + Comedy + Fat Pizza + + + /en/fatwa_2006 + John Carter + 2006-03-24 + Thriller + Political thriller + Drama + Fatwa + + + /en/faust_love_of_the_damned + Brian Yuzna + 2000-10-12 + Horror + Supernatural + Faust: Love of the Damned + + + /en/fay_grim + Hal Hartley + 2006-09-11 + Thriller + Action Film + Political thriller + Indie film + Comedy Thriller + Comedy + Crime Fiction + Drama + Fay Grim + + + /en/fear_and_trembling_2003 + Alain Corneau + World cinema + Japanese Movies + Comedy + Drama + Fear and Trembling + + + /en/fear_of_the_dark_2006 + Glen Baisley + 2001-10-06 + Horror + Mystery + Psychological thriller + Thriller + Drama + Fear of the Dark + + + /en/fear_x + Nicolas Winding Refn + 2003-01-19 + Psychological thriller + Thriller + Fear X + + + /en/feardotcom + William Malone + 2002-08-09 + Horror + Crime Fiction + Thriller + Mystery + FeardotCom + + + /en/fearless + Ronny Yu + 2006-01-26 + Biographical film + Action Film + Sports + Drama + Fearless + + + /en/feast + John Gulager + 2006-09-22 + Horror + Cult film + Monster movie + Horror comedy + Comedy + Feast + + + /en/femme_fatale_2002 + Brian De Palma + 2002-04-30 + Thriller + Mystery + Crime Fiction + Erotic thriller + Femme Fatale + + + /en/festival_2005 + Annie Griffin + 2005-07-15 + Black comedy + Parody + Comedy + Festival + + + /en/festival_express + Bob Smeaton + Documentary film + Concert film + History + Musical + Indie film + Rockumentary + Music + Festival Express + + + /en/festival_in_cannes + Henry Jaglom + 2001-11-03 + Mockumentary + Comedy-drama + Comedy of manners + Ensemble Film + Comedy + Drama + Festival in Cannes + + + /en/fever_pitch_2005 + Bobby Farrelly + Peter Farrelly + 2005-04-06 + Romance Film + Sports + Comedy + Drama + Fever Pitch + + + /en/fida + Ken Ghosh + 2004-08-20 + Romance Film + Adventure Film + Thriller + Drama + Fida + + + /en/fido_2006 + Andrew Currie + 2006-09-07 + Horror + Parody + Romance Film + Horror comedy + Comedy + Drama + Fido + + + /en/fighter_in_the_wind + 2004-08-06 + Fighter in the Wind + Yang Yun-ho + Yang Yun-ho + Action/Adventure + Action Film + War film + Biographical film + Drama + + + /en/filantropica + 2002-03-15 + Filantropica + Nae Caranfil + Comedy + Black comedy + Drama + + + /en/film_geek + 2006-02-10 + Film Geek + James Westby + Indie film + Workplace Comedy + Comedy + + + /en/final_destination + 2000-03-16 + Final Destination + James Wong + Slasher + Teen film + Supernatural + Horror + Cult film + Thriller + + + /en/final_destination_3 + 2006-02-09 + Final Destination 3 + James Wong + Slasher + Teen film + Horror + Thriller + + + /en/final_destination_2 + 2003-01-30 + Final Destination 2 + David R. Ellis + Slasher + Teen film + Supernatural + Horror + Cult film + Thriller + + + /en/final_fantasy_vii_advent_children + 2005-08-31 + Final Fantasy VII: Advent Children + Tetsuya Nomura + Takeshi Nozue + Anime + Science Fiction + Animation + Action Film + Thriller + + + /en/final_fantasy_the_spirits_within + 2001-07-02 + Final Fantasy: The Spirits Within + Hironobu Sakaguchi + Motonori Sakakibara + Science Fiction + Anime + Animation + Fantasy + Action Film + Adventure Film + + + /en/final_stab + Final Stab + David DeCoteau + Horror + Slasher + Teen film + + + /en/find_me_guilty + 2006-02-16 + Find Me Guilty + Sidney Lumet + Crime Fiction + Trial drama + Docudrama + Comedy-drama + Courtroom Comedy + Crime Comedy + Gangster Film + Comedy + Drama + + + /en/finders_fee + 2001-06-16 + Finder's Fee + Jeff Probst + Thriller + Psychological thriller + Indie film + Suspense + Drama + + + /en/finding_nemo + 2003-05-30 + Finding Nemo + Andrew Stanton + Lee Unkrich + Animation + Adventure Film + Comedy + Family + + + /en/finding_neverland + 2004-09-04 + Finding Neverland + Marc Forster + Costume drama + Historical period drama + Family + Biographical film + Drama + + + /en/fingerprints + Fingerprints + Harry Basil + Thriller + Horror + Mystery + + + /en/firewall_2006 + 2006-02-02 + Firewall + Richard Loncraine + Thriller + Action Film + Psychological thriller + Action/Adventure + Crime Thriller + Action Thriller + + + /en/first_daughter + 2004-09-24 + First Daughter + Forest Whitaker + Romantic comedy + Teen film + Romance Film + Comedy + Drama + + + /en/first_descent + 2005-12-02 + First Descent + Kemp Curly + Kevin Harrison + Documentary film + Sports + Extreme Sports + Biographical film + + + /en/fiza + 2000-09-08 + Fiza + Khalid Mohamed + Romance Film + Drama + + + /en/flags_of_our_fathers_2006 + 2006-10-20 + Flags of Our Fathers + Clint Eastwood + War film + History + Action Film + Film adaptation + Historical drama + Drama + + + /en/flight_from_death + 2006-09-06 + Flight from Death + Patrick Shen + Documentary film + + + /en/flight_of_the_phoenix + 2004-12-17 + Flight of the Phoenix + John Moore + Airplanes and airports + Disaster Film + Action Film + Adventure Film + Action/Adventure + Film adaptation + Drama + + + /en/flightplan + 2005-09-22 + Flightplan + Robert Schwentke + Thriller + Mystery + Drama + + + /en/flock_of_dodos + Flock of Dodos + Randy Olson + Documentary film + History + + + /en/fluffy_the_english_vampire_slayer + Fluffy the English Vampire Slayer + Henry Burrows + Horror comedy + Short Film + Fan film + Parody + + + /en/flushed_away + 2006-10-22 + Flushed Away + David Bowers + Sam Fell + Animation + Family + Adventure Film + Children's/Family + Family-Oriented Adventure + Comedy + + + /en/fool_and_final + 2007-06-01 + Fool &amp; Final + Ahmed Khan + Comedy + Action Film + Romance Film + Bollywood + World cinema + + + /en/foolproof + 2003-10-03 + Foolproof + William Phillips + Action Film + Thriller + Crime Thriller + Action Thriller + Caper story + Crime Fiction + Comedy + + + /en/for_the_birds + 2000-06-05 + For the Birds + Ralph Eggleston + Short Film + Animation + Comedy + Family + + + /en/for_your_consideration_2006 + 2006-11-17 + For Your Consideration + Christopher Guest + Mockumentary + Parody + Comedy + + + /en/diev_mi_kas + 2005-09-23 + Forest of the Gods + Algimantas Puipa + War film + Drama + + + /en/formula_17 + 2004-04-02 + Formula 17 + Chen Yin-jung + Romantic comedy + Romance Film + Comedy + + + /en/forty_shades_of_blue + Forty Shades of Blue + Ira Sachs + Indie film + Romance Film + Drama + + + /en/four_brothers_2005 + 2005-08-12 + Four Brothers + John Singleton + Action Film + Crime Fiction + Thriller + Action/Adventure + Family Drama + Crime Drama + Drama + + + /en/frailty + 2001-11-17 + Frailty + Bill Paxton + Psychological thriller + Thriller + Crime Fiction + Drama + + + /en/frankenfish + 2004-10-09 + Frankenfish + Mark A.Z. Dippé + Action Film + Horror + Natural horror film + Monster + Science Fiction + + + /en/franklin_and_grannys_secret + 2006-12-20 + Franklin and the Turtle Lake Treasure + Dominique Monféry + Family + Animation + + + /en/franklin_and_the_green_knight + 2000-10-17 + Franklin and the Green Knight + John van Bruggen + Family + Animation + + + /en/franklins_magic_christmas + 2001-11-06 + Franklin's Magic Christmas + John van Bruggen + Family + Animation + + + /en/freaky_friday_2003 + 2003-08-04 + Freaky Friday + Mark Waters + Family + Fantasy + Comedy + + + /en/freddy_vs_jason + 2003-08-13 + Freddy vs. Jason + Ronny Yu + Horror + Thriller + Slasher + Action Film + Crime Fiction + + + /en/free_jimmy + 2006-04-21 + Free Jimmy + Christopher Nielsen + Anime + Animation + Black comedy + Satire + Stoner film + Comedy + + + /en/free_zone + 2005-05-19 + Free Zone + Amos Gitai + Comedy + Drama + + + /en/freedomland + 2006-02-17 + Freedomland + Joe Roth + Mystery + Thriller + Crime Fiction + Film adaptation + Crime Thriller + Crime Drama + Drama + + + /en/french_bean + 2007-03-22 + Mr. Bean's Holiday + Steve Bendelack + Family + Comedy + Road movie + + + /en/frequency_2000 + 2000-04-28 + Frequency + Gregory Hoblit + Thriller + Time travel + Science Fiction + Suspense + Fantasy + Crime Fiction + Family Drama + Drama + + + /en/frida + 2002-08-29 + Frida + Julie Taymor + Biographical film + Romance Film + Political drama + Drama + + + /en/friday_after_next + 2002-11-22 + Friday After Next + Marcus Raboy + Buddy film + Comedy + + + /en/friday_night_lights + 2004-10-06 + Friday Night Lights + Peter Berg + Action Film + Sports + Drama + + + /en/friends_2001 + 2001-01-14 + Friends + Siddique + Romance Film + Comedy + Drama + Tamil cinema + World cinema + + + /en/friends_with_money + 2006-04-07 + Friends with Money + Nicole Holofcener + Romance Film + Indie film + Comedy-drama + Comedy of manners + Ensemble Film + Comedy + Drama + + + /en/fro_the_movie + FRO - The Movie + Brad Gashler + Michael J. Brooks + Comedy-drama + + + /en/from_hell_2001 + 2001-09-08 + From Hell + Allen Hughes + Albert Hughes + Thriller + Mystery + Biographical film + Crime Fiction + Slasher + Film adaptation + Horror + Drama + + + /en/from_janet_to_damita_jo_the_videos + 2004-09-07 + From Janet to Damita Jo: The Videos + Jonathan Dayton + Mark Romanek + Paul Hunter + Music video + + + /en/from_justin_to_kelly + 2003-06-20 + From Justin to Kelly + Robert Iscove + Musical + Romantic comedy + Teen film + Romance Film + Beach Film + Musical comedy + Comedy + + + /en/frostbite_2005 + Frostbite + Jonathan Schwartz + Sports + Comedy + + + /en/fubar_2002 + 2002-01-01 + FUBAR + Michael Dowse + Mockumentary + Indie film + Buddy film + Comedy + Drama + + + /en/fuck_2005 + 2005-11-07 + Fuck + Steve Anderson + Documentary film + Indie film + Political cinema + + + /en/fuckland + 2000-09-21 + Fuckland + José Luis Márques + Indie film + Dogme 95 + Comedy-drama + Satire + Comedy of manners + Comedy + Drama + + + /en/full_court_miracle + 2003-11-21 + Full-Court Miracle + Stuart Gillard + Family + Drama + + + /en/full_disclosure_2001 + 2001-05-15 + Full Disclosure + John Bradshaw + Thriller + Action/Adventure + Action Film + Political thriller + + + /en/full_frontal + 2002-08-02 + Full Frontal + Steven Soderbergh + Romantic comedy + Indie film + Romance Film + Comedy-drama + Ensemble Film + Comedy + Drama + + + /wikipedia/ja/$5287$5834$7248_$92FC$306E$932C$91D1$8853$5E2B_$30B7$30E3$30F3$30D0$30E9$3092$5F81$304F$8005 + 2005-07-23 + Fullmetal Alchemist the Movie: Conqueror of Shamballa + Seiji Mizushima + Anime + Fantasy + Action Film + Animation + Adventure Film + Drama + + + /en/fulltime_killer + 2001-08-03 + Fulltime Killer + Johnnie To + Wai Ka-fai + Action Film + Thriller + Crime Fiction + Martial Arts Film + Action Thriller + Drama + + + /en/fun_with_dick_and_jane_2005 + 2005-12-21 + Fun with Dick and Jane + Dean Parisot + Crime Fiction + Comedy + + + /en/funny_ha_ha + Funny Ha Ha + Andrew Bujalski + Indie film + Romantic comedy + Romance Film + Mumblecore + Comedy-drama + Comedy of manners + Comedy + + + /en/g-sale + 2005-11-15 + G-Sale + Randy Nargi + Mockumentary + Comedy of manners + Comedy + + + /en/gabrielle_2006 + 2005-09-05 + Gabrielle + Patrice Chéreau + Romance Film + Drama + + + /en/gagamboy + 2004-01-01 + Gagamboy + Erik Matti + Action Film + Science Fiction + Comedy + Fantasy + + + /en/gallipoli_2005 + 2005-03-18 + Gallipoli + Tolga Örnek + Documentary film + War film + + + /en/game_6_2006 + 2006-03-10 + Game 6 + Michael Hoffman + Indie film + Sports + Comedy-drama + Drama + + + /en/game_over_2003 + 2003-06-23 + Maximum Surge + Jason Bourque + Science Fiction + + + /en/gamma_squad + 2004-06-14 + Expendable + Nathaniel Barker + Eliot Lash + Indie film + Short Film + War film + + + /en/gangotri_2003 + 2003-03-28 + Gangotri + Kovelamudi Raghavendra Rao + Romance Film + Drama + Tollywood + World cinema + + + /en/gangs_of_new_york + 2002-12-09 + Gangs of New York + Martin Scorsese + Crime Fiction + Historical drama + Drama + + + /en/gangster_2006 + 2006-04-28 + Gangster + Anurag Basu + Thriller + Romance Film + Mystery + World cinema + Crime Fiction + Bollywood + Drama + + + /en/gangster_no_1 + 2000-06-09 + Gangster No. 1 + Paul McGuigan + Thriller + Crime Fiction + Historical period drama + Action Film + Crime Thriller + Action/Adventure + Gangster Film + Drama + + + /en/garam_masala_2005 + 2005-11-02 + Garam Masala + Priyadarshan + Comedy + + + /en/garcon_stupide + 2004-03-10 + Garçon stupide + Lionel Baier + LGBT + World cinema + Gay + Gay Interest + Gay Themed + Coming of age + Comedy + Drama + + + /en/garden_state + 2004-01-16 + Garden State + Zach Braff + Romantic comedy + Coming of age + Romance Film + Comedy-drama + Comedy + Drama + + + /en/garfield_2004 + 2004-06-06 + Garfield: The Movie + Peter Hewitt + Slapstick + Animation + Family + Comedy + + + /en/garfield_a_tail_of_two_kitties + 2006-06-15 + Garfield: A Tail of Two Kitties + Tim Hill + Family + Animal Picture + Children's/Family + Family-Oriented Adventure + Comedy + + + /en/gene-x + Gene-X + Martin Simpson + Thriller + Romance Film + + + /en/george_of_the_jungle_2 + 2003-08-18 + George of the Jungle 2 + David Grossman + Parody + Slapstick + Family + Jungle Film + Comedy + + + /en/george_washington_2000 + 2000-09-29 + George Washington + David Gordon Green + Coming of age + Indie film + Drama + + + /en/georgia_rule + 2007-05-10 + Georgia Rule + Garry Marshall + Comedy-drama + Romance Film + Melodrama + Comedy + Drama + + + /en/gerry + 2003-02-14 + Gerry + Gus Van Sant + Indie film + Adventure Film + Mystery + Avant-garde + Experimental film + Buddy film + Drama + + + /en/get_a_clue + 2002-06-28 + Get a Clue + Maggie Greenwald Mansfield + Mystery + Comedy + + + /en/get_over_it + 2001-03-09 + Get Over It + Tommy O'Haver + Musical + Romantic comedy + Teen film + Romance Film + School story + Farce + Gay + Gay Interest + Gay Themed + Sex comedy + Musical comedy + Comedy + + + /en/get_rich_or_die_tryin + 2005-11-09 + Get Rich or Die Tryin' + Jim Sheridan + Coming of age + Crime Fiction + Hip hop film + Action Film + Biographical film + Musical Drama + Drama + + + /en/get_up + Get Up! + Kazuyuki Izutsu + Musical + Action Film + Japanese Movies + Musical Drama + Musical comedy + Comedy + Drama + + + /en/getting_my_brother_laid + Getting My Brother Laid + Sven Taddicken + Romantic comedy + Romance Film + Comedy + Drama + + + /en/getting_there + 2002-06-11 + Getting There: Sweet 16 and Licensed to Drive + Steve Purcell + Family + Teen film + Comedy + + + /en/ghajini + 2005-09-29 + Ghajini + A.R. Murugadoss + Thriller + Action Film + Mystery + Romance Film + Drama + + + /en/gharshana + 2004-07-30 + Gharshana + Gautham Menon + Mystery + Crime Fiction + Romance Film + Action Film + Tollywood + World cinema + Drama + + + /en/ghilli + 2004-04-17 + Ghilli + Dharani + Sports + Action Film + Romance Film + Comedy + + + /en/ghost_game_2006 + 2005-09-01 + Ghost Game + Joe Knee + Horror comedy + + + /en/ghost_house + 2004-09-17 + Ghost House + Kim Sang-jin + Horror + Horror comedy + Comedy + East Asian cinema + World cinema + + + /en/ghost_in_the_shell_2_innocence + 2004-03-06 + Ghost in the Shell 2: Innocence + Mamoru Oshii + Science Fiction + Anime + Action Film + Animation + Thriller + Drama + + + /en/s_a_c_solid_state_society + 2006-09-01 + Ghost in the Shell: Solid State Society + Kenji Kamiyama + Anime + Science Fiction + Action Film + Animation + Thriller + Adventure Film + Fantasy + + + /en/ghost_lake + 2005-05-17 + Ghost Lake + Jay Woelfel + Horror + Zombie Film + + + /en/ghost_rider_2007 + 2007-01-15 + Ghost Rider + Adventure Film + Thriller + Fantasy + Superhero movie + Horror + Drama + Mark Steven Johnson + + + /en/ghost_ship_2002 + 2002-10-22 + Ghost Ship + Horror + Supernatural + Slasher + Steve Beck + + + /en/ghost_world_2001 + 2001-06-16 + Ghost World + Indie film + Comedy-drama + Terry Zwigoff + + + /en/ghosts_of_mars + 2001-08-24 + Ghosts of Mars + Adventure Film + Science Fiction + Horror + Supernatural + Action Film + Thriller + Space Western + John Carpenter + + + /m/06ry42 + 2004-10-28 + The International Playboys' First Movie: Ghouls Gone Wild! + Short Film + Musical + Ted Geoghegan + + + /en/gie + 2005-07-14 + Gie + Biographical film + Political drama + Drama + Riri Riza + + + /en/gigantic_2003 + 2003-03-10 + Gigantic (A Tale of Two Johns) + Indie film + Documentary film + A. J. Schnack + + + /en/gigli + 2003-07-27 + Gigli + Crime Thriller + Romance Film + Romantic comedy + Crime Fiction + Comedy + Martin Brest + + + /en/ginger_snaps + 2000-09-10 + Ginger Snaps + Teen film + Horror + Cult film + John Fawcett + + + /en/ginger_snaps_2_unleashed + 2004-01-30 + Ginger Snaps 2: Unleashed + Thriller + Horror + Teen film + Creature Film + Feminist Film + Horror comedy + Comedy + Brett Sullivan + + + /en/girlfight + 2000-01-22 + Girlfight + Teen film + Sports + Coming-of-age story + Drama + Karyn Kusama + + + /en/gladiator_2000 + 2000-05-01 + Gladiator + Historical drama + Epic film + Action Film + Adventure Film + Drama + Ridley Scott + + + /en/glastonbury_2006 + 2006-04-14 + Glastonbury + Documentary film + Music + Concert film + Biographical film + Julien Temple + + + /en/glastonbury_anthems + Glastonbury Anthems + Documentary film + Music + Concert film + Gavin Taylor + Declan Lowney + Janet Fraser-Crook + Phil Heyes + + + /en/glitter_2001 + 2001-09-21 + Glitter + Musical + Romance Film + Musical Drama + Drama + Vondie Curtis-Hall + + + /en/global_heresy + 2002-09-03 + Global Heresy + Comedy + Sidney J. Furie + + + /en/glory_road_2006 + 2006-01-13 + Glory Road + Sports + Historical period drama + Docudrama + Drama + James Gartner + + + /en/go_figure_2005 + 2005-06-10 + Go Figure + Family + Comedy + Drama + Francine McDougall + + + /en/goal__2005 + 2005-09-08 + Goal! + Sports + Romance Film + Drama + Danny Cannon + + + /en/goal_2_living_the_dream + 2007-02-09 + Goal II: Living the Dream + Sports + Drama + Jaume Collet-Serra + + + /en/god_grew_tired_of_us + 2006-09-04 + God Grew Tired of Us + Documentary film + Indie film + Historical fiction + Christopher Dillon Quinn + Tommy Walker + + + /en/god_on_my_side + 2006-11-02 + God on My Side + Documentary film + Christian film + Andrew Denton + + + /en/godavari + 2006-05-19 + Godavari + Romance Film + Drama + Tollywood + World cinema + Sekhar Kammula + + + /en/godfather + 2006-02-24 + Varalaru + Action Film + Musical + Romance Film + Tamil cinema + Drama + Musical Drama + K. S. Ravikumar + + + /en/godsend + 2004-04-30 + Godsend + Thriller + Science Fiction + Horror + Psychological thriller + Sci-Fi Horror + Drama + Nick Hamm + + + /en/godzilla_3d_to_the_max + 2007-09-12 + Godzilla 3D to the MAX + Horror + Action Film + Science Fiction + Short Film + Keith Melton + Yoshimitsu Banno + + + /en/godzilla_against_mechagodzilla + 2002-12-15 + Godzilla Against Mechagodzilla + Monster + Science Fiction + Cult film + World cinema + Action Film + Creature Film + Japanese Movies + Masaaki Tezuka + + + /en/godzilla_vs_megaguirus + 2000-11-03 + Godzilla vs. Megaguirus + Monster + World cinema + Science Fiction + Cult film + Action Film + Creature Film + Japanese Movies + Masaaki Tezuka + + + /en/godzilla_tokyo_sos + 2003-11-03 + Godzilla: Tokyo SOS + Monster + Fantasy + World cinema + Action/Adventure + Science Fiction + Cult film + Japanese Movies + Masaaki Tezuka + + + /wikipedia/fr/Godzilla$002C_Mothra_and_King_Ghidorah$003A_Giant_Monsters_All-Out_Attack + 2001-11-03 + Godzilla, Mothra and King Ghidorah: Giant Monsters All-Out Attack + Science Fiction + Action Film + Adventure Film + Drama + Shusuke Kaneko + + + /en/godzilla_final_wars + 2004-11-29 + Godzilla: Final Wars + Fantasy + Science Fiction + Monster movie + Ryuhei Kitamura + + + /en/going_the_distance + 2004-08-20 + Going the Distance + Comedy + Mark Griffiths + + + /en/going_to_the_mat + 2004-03-19 + Going to the Mat + Family + Sports + Drama + Stuart Gillard + + + /en/going_upriver + 2004-09-14 + Going Upriver + Documentary film + War film + Political cinema + George Butler + + + /en/golmaal + 2006-07-14 + Golmaal: Fun Unlimited + Musical + Musical comedy + Comedy + Rohit Shetty + + + /en/gone_in_sixty_seconds + 2000-06-05 + Gone in 60 Seconds + Thriller + Action Film + Crime Fiction + Crime Thriller + Heist film + Action/Adventure + Dominic Sena + + + /en/good_bye_lenin + 2003-02-09 + Good bye, Lenin! + Romance Film + Comedy + Drama + Tragicomedy + Wolfgang Becker + + + /en/good_luck_chuck + 2007-06-13 + Good Luck Chuck + Romance Film + Fantasy + Comedy + Drama + Mark Helfrich + + + /en/good_night_and_good_luck + 2005-09-01 + Good Night, and Good Luck + Political drama + Historical drama + Docudrama + Biographical film + Historical fiction + Drama + George Clooney + + + /en/goodbye_dragon_inn + 2003-12-12 + Goodbye, Dragon Inn + Comedy-drama + Comedy of manners + Comedy + Drama + Tsai Ming-liang + + + /en/gosford_park + 2001-11-07 + Gosford Park + Mystery + Drama + Robert Altman + + + /en/gothika + 2003-11-13 + Gothika + Thriller + Horror + Psychological thriller + Supernatural + Crime Thriller + Mystery + Mathieu Kassovitz + + + /en/gotta_kick_it_up + Gotta Kick It Up! + Teen film + Television film + Children's/Family + Family + Ramón Menéndez + + + /en/goyas_ghosts + 2006-11-08 + Goya's Ghosts + Biographical film + War film + Drama + Miloš Forman + + + /en/gozu + 2003-07-12 + Gozu + Horror + Surrealism + World cinema + Japanese Movies + Horror comedy + Comedy + Takashi Miike + + + /en/grande_ecole + 2004-02-04 + Grande École + World cinema + LGBT + Romance Film + Gay + Gay Interest + Gay Themed + Ensemble Film + Erotic Drama + Drama + Robert Salis + + + /en/grandmas_boy + 2006-01-06 + Grandma's Boy + Stoner film + Comedy + Nicholaus Goossen + + + /en/grayson_2004 + 2004-07-20 + Grayson + Indie film + Fan film + Short Film + John Fiorella + + + /en/grbavica_2006 + 2006-02-12 + Grbavica: The Land of My Dreams + War film + Art film + Drama + Jasmila Žbanić + + + /en/green_street + 2005-03-12 + Green Street + Sports + Crime Fiction + Drama + Lexi Alexander + + + /en/green_tea_2003 + 2003-08-18 + Green Tea + Romance Film + Drama + Zhang Yuan + + + /en/greenfingers + 2001-09-14 + Greenfingers + Comedy-drama + Prison film + Comedy + Drama + Joel Hershman + + + /en/gridiron_gang + 2006-09-15 + Gridiron Gang + Sports + Crime Fiction + Drama + Phil Joanou + + + /en/grill_point + 2002-02-12 + Grill Point + Drama + Comedy + Tragicomedy + Comedy-drama + Andreas Dresen + + + /en/grilled + 2006-07-11 + Grilled + Black comedy + Buddy film + Workplace Comedy + Comedy + Jason Ensler + + + /en/grind_house + 2007-04-06 + Grindhouse + Slasher + Thriller + Action Film + Horror + Zombie Film + Robert Rodriguez + Quentin Tarantino + Eli Roth + Edgar Wright + Rob Zombie + Jason Eisener + + + /en/grizzly_falls + 2004-06-28 + Grizzly Falls + Adventure Film + Animal Picture + Family-Oriented Adventure + Family + Drama + Stewart Raffill + + + /en/grizzly_man + 2005-01-24 + Grizzly Man + Documentary film + Biographical film + Werner Herzog + + + /en/grodmin + GRODMIN + Avant-garde + Experimental film + Drama + Jim Horwitz + + + /en/gudumba_shankar + 2004-09-09 + Gudumba Shankar + Action Film + Drama + Tollywood + World cinema + Veera Shankar + + + /en/che_part_two + 2008-05-21 + Che: Part Two + Biographical film + War film + Historical drama + Drama + Steven Soderbergh + + + /en/guess_who_2005 + 2005-03-25 + Guess Who + Romance Film + Romantic comedy + Comedy of manners + Domestic Comedy + Comedy + Kevin Rodney Sullivan + + + /en/gunner_palace + 2005-03-04 + Gunner Palace + Documentary film + Indie film + War film + Michael Tucker + Petra Epperlein + + + /en/guru_2007 + 2007-01-12 + Guru + Biographical film + Musical + Romance Film + Drama + Musical Drama + Mani Ratnam + + + /en/primeval_2007 + 2007-01-12 + Primeval + Thriller + Horror + Natural horror film + Action/Adventure + Action Film + Michael Katleman + + + /en/gypsy_83 + Gypsy 83 + Coming of age + LGBT + Black comedy + Indie film + Comedy-drama + Road movie + Comedy + Drama + Todd Stephens + + + /en/h_2002 + 2002-12-27 + H + Thriller + Horror + Drama + Mystery + Crime Fiction + East Asian cinema + World cinema + Jong-hyuk Lee + + + /en/h_g_wells_the_war_of_the_worlds + 2005-06-14 + H. G. Wells' The War of the Worlds + Indie film + Steampunk + Science Fiction + Thriller + Timothy Hines + + + /en/h_g_wells_war_of_the_worlds + 2005-06-28 + H. G. Wells' War of the Worlds + Indie film + Science Fiction + Thriller + Film adaptation + Action Film + Alien Film + Horror + Mockbuster + Drama + David Michael Latt + + + /en/hadh_kar_di_aapne + 2000-04-14 + Hadh Kar Di Aapne + Romantic comedy + Bollywood + Manoj Agrawal + + + /en/haggard_the_movie + 2003-06-24 + Haggard: The Movie + Indie film + Comedy + Bam Margera + + + /en/haiku_tunnel + Haiku Tunnel + Black comedy + Indie film + Satire + Workplace Comedy + Comedy + Jacob Kornbluth + Josh Kornbluth + + + /en/hairspray + 2007-07-13 + Hairspray + Musical + Romance Film + Comedy + Musical comedy + Adam Shankman + + + /en/half_nelson + 2006-01-23 + Half Nelson + Social problem film + Drama + Ryan Fleck + + + /en/half_life_2006 + Half-Life + Fantasy + Indie film + Science Fiction + Fantasy Drama + Drama + Jennifer Phang + + + /en/halloween_resurrection + 2002-07-12 + Halloween Resurrection + Slasher + Horror + Cult film + Teen film + Rick Rosenthal + + + /en/halloweentown_high + 2004-10-08 + Halloweentown High + Fantasy + Teen film + Fantasy Comedy + Comedy + Family + Mark A.Z. Dippé + + + /en/halloweentown_ii_kalabars_revenge + 2001-10-12 + Halloweentown II: Kalabar's Revenge + Fantasy + Children's Fantasy + Children's/Family + Family + Mary Lambert + + + /en/halloweentown_witch_u + 2006-10-20 + Return to Halloweentown + Family + Children's/Family + Fantasy Comedy + Comedy + David Jackson + + + /en/hamlet_2000 + 2000-05-12 + Hamlet + Thriller + Romance Film + Drama + Michael Almereyda + + + /en/hana_alice + 2004-03-13 + Hana and Alice + Romance Film + Romantic comedy + Comedy + Drama + Shunji Iwai + + + /en/hannibal + 2001-02-09 + Hannibal + Thriller + Psychological thriller + Horror + Action Film + Mystery + Crime Thriller + Drama + Ridley Scott + + + /en/hans_och_hennes + 2001-01-29 + Making Babies + Drama + Daniel Lind Lagerlöf + + + /en/hanuman_2005 + 2005-10-21 + Hanuman + Animation + Bollywood + World cinema + V.G. Samant + Milind Ukey + + + /en/hanuman_junction + 2001-12-21 + Hanuman Junction + Action Film + Comedy + Drama + Tollywood + World cinema + M.Raja + + + /en/happily_never_after + 2006-12-16 + Happily N'Ever After + Fantasy + Animation + Family + Comedy + Adventure Film + Paul J. Bolger + Yvette Kaplan + + + /en/happy_2006 + 2006-01-27 + Happy + Romance Film + Musical + Comedy + Drama + Musical comedy + Musical Drama + A. Karunakaran + + + /en/happy_endings + 2005-01-20 + Happy Endings + LGBT + Music + Thriller + Romantic comedy + Indie film + Romance Film + Comedy + Drama + Don Roos + + + /en/happy_ero_christmas + 2003-12-17 + Happy Ero Christmas + Romance Film + Comedy + East Asian cinema + World cinema + Lee Geon-dong + + + /en/happy_feet + 2006-11-16 + Happy Feet + Family + Animation + Comedy + Music + Musical + Musical comedy + George Miller + Warren Coleman + Judy Morris + + + /wikipedia/en_title/I_Love_New_Year + 2013-12-30 + I Love New Year + Caper story + Crime Fiction + Romantic comedy + Romance Film + Bollywood + World cinema + Radhika Rao + Vinay Sapru + + + /en/har_dil_jo_pyar_karega + 2000-07-24 + Har Dil Jo Pyar Karega + Musical + Romance Film + World cinema + Musical Drama + Drama + Raj Kanwar + + + /en/hard_candy + Hard Candy + Psychological thriller + Thriller + Suspense + Indie film + Erotic thriller + Drama + David Slade + + + /en/hard_luck + 2006-10-17 + Hard Luck + Thriller + Crime Fiction + Action/Adventure + Action Film + Drama + Mario Van Peebles + + + /en/hardball + 2001-09-14 + Hardball + Sports + Drama + Brian Robbins + + + /en/harold_kumar_go_to_white_castle + 2004-05-20 + Harold &amp; Kumar Go to White Castle + Stoner film + Buddy film + Adventure Film + Comedy + Danny Leiner + + + /en/harry_potter_and_the_chamber_of_secrets_2002 + 2002-11-03 + Harry Potter and the Chamber of Secrets + Adventure Film + Family + Fantasy + Mystery + Chris Columbus + + + /en/harry_potter_and_the_goblet_of_fire_2005 + 2005-11-06 + Harry Potter and the Goblet of Fire + Family + Fantasy + Adventure Film + Thriller + Science Fiction + Supernatural + Mystery + Children's Fantasy + Children's/Family + Fantasy Adventure + Fiction + Mike Newell + + + /en/harry_potter_and_the_half_blood_prince_2008 + 2009-07-06 + Harry Potter and the Half-Blood Prince + Adventure Film + Fantasy + Mystery + Action Film + Family + Romance Film + Children's Fantasy + Children's/Family + Fantasy Adventure + Fiction + David Yates + + + /en/harry_potter_and_the_order_of_the_phoenix_2007 + 2007-06-28 + Harry Potter and the Order of the Phoenix + Family + Mystery + Adventure Film + Fantasy + Fantasy Adventure + Fiction + David Yates + + -- cgit v1.2.3-70-g09d2