Questions tagged [imdb]

The Internet Movie Database (IMDb) is an online database of information related to films, television programs, and video games. This includes actors, production crew personnel, and fictional characters featured in these three visual entertainment media.

The Internet Movie Database (IMDb) is an online database of information related to films, television programs, and video games. This includes actors, production crew personnel, and fictional characters featured in these three visual entertainment media.

Resources:

396 questions
4
votes
1 answer

nodejs trying to read stream of jpg data from return function

Im trying to get poster data back from omdb API, found at github. I am getting all other movie information, but I am struggling with streams, the way I think you should get the poster from this function. The code in the omdb API looks like this: //…
Simon Guldstrand
  • 488
  • 1
  • 5
  • 24
4
votes
2 answers

is there any web service to give me list of movies from IMDb?

I need a web service to get all the movies of a particular year which will be passed as parameter to service. I need it for practice and populate list of movies in android listview. Please can anyone suggest to me which web service i need to work…
Sohail Faruqui
  • 442
  • 11
  • 27
4
votes
2 answers

Python login into IMDB pro

I would like to download the top 5000 celebs in imdb's starmeter ratings, however to do this I need to be logged into the webserver (for imdb pro) I have no idea how to do this programatically. Is there an imdb api which manages a login to imdb pro…
user2680293
  • 79
  • 1
  • 5
4
votes
3 answers

Which site supply movie information with API for free?

I need: movie title director cast story I cannot use IMDB.
Linkc
  • 65
  • 1
  • 6
4
votes
2 answers

Where to start for my java program (Using the folder names to get info from IMDB)

I finished first year comp sci. And i want to spend some time working on the things they have taught us in the first year (lot of java and a bit of C)... Anyways as a project, i wanted to do something i need, and what i need is a program to run…
Tolga E
  • 12,188
  • 15
  • 49
  • 61
4
votes
1 answer

Where to download the movie dataset?

I want to download a movie dump containing the basic information like movie name and list of actors in a single file. I looked for a couple of options like http://api.themoviedb.org/2.1/ and http://api.themoviedb.org/2.1/ . TheMovieDB does not give…
invinc4u
  • 1,125
  • 3
  • 15
  • 26
4
votes
1 answer

Program freezes - no errors, no exceptions

I'm writing a program to scrape data from IMDB, using an IMDB scraping API. It works wonderfully, yet sometimes.. it just stops. No exception thrown, no error, nothing shown on intellitrace, can't find a reason why it stops. And it's intresting,…
user1475728
3
votes
1 answer

Fast and dynamic autosuggest using JQuery and flat files in JSON format

I've been busting my head on this one so i finally decided to put it on Stackoverflow hoping someone could help me with this. Let me sketch the problem: The most basic usage of an autosuggest feature would be to query the database on each…
cenob8
  • 624
  • 2
  • 7
  • 16
3
votes
2 answers

imdbpy2sql.py getting stuck on FLUSHING MoviesCache

I finally got imbdpy2sql running on Windows 7 with Python 2.7 minGW and pymsql, and it connects to the database fine and creates all the tables but it keeps getting stuck on Flushind MoviesCache and never moves past it. This is its output: SAVING…
Jordan
  • 141
  • 1
  • 8
3
votes
3 answers

How to get more than 10 search results from the IMDB API?

I am trying to suggest movies to an user who has entered a movie genre, e.g. "horror", "sci-fi", etc. For this, I have written a function that makes an API call towards the IMDB API: import requests def search_movies(search, api_key): movies =…
3
votes
1 answer

Given a string, how to determine if it's an IMDB id?

For the regex experts out there, I need to determine whether a given string is a properly formatted IMDB Id. Need to do this in either ColdFusion or JavaScript. ColdFusion would look like: REFind(regex, "tt32423"), and JavaScript would look like…
Tony Brasunas
  • 4,012
  • 3
  • 39
  • 51
3
votes
0 answers

How to query OMDb with genre and year?

I am using the OMDb api, I am able to search only with respect to IMDb ID or Title like Search for title with Game and released in the year 2014. But I want to search with out the title for example the action movies released in 2014, it will be…
Pradeep Krishna
  • 71
  • 1
  • 12
3
votes
1 answer

How to Find list of movies acted by an actor?

I use the below code to get the cast of a particular movie (Top 2 for instance). How can I get a list of all movies acted by the actor/actress? For instance, I choose the movie Inception (1375666), and the cast is Leonardo DiCaprio. So how can I get…
user2810706
  • 107
  • 3
  • 12
3
votes
1 answer

Description of the SQL movie databse made by IMDBpy

Recently, I am using IMDBpy API to scrape the IMDB dataset. In this API, there is a imdbpy2sql.py which could convert IMDB movie dataset to a SQL database. But I can not find any description of this dataset. So I can not understand the schema of…
Zizhao
  • 259
  • 3
  • 13
3
votes
1 answer

Extract reviews and ratings from IMDB

The Internet Movie Database does not allow scraping from their website, but does provide an FTP site with text files that can be downloaded and used for research: http://www.imdb.com/interfaces How can I extract reviews and the corresponding ratings…
Zach
  • 4,624
  • 13
  • 43
  • 60
1 2
3
26 27