Hello,
Found error when looking for "28 semaines plus tard" (28 weeks later) with IMDB Provider (startindex can't be less than 0. Parameter name : startIndex).
When using "akas.imdb.com", it takes me directly to the movie.

Dolu wrote:Hello,
Found error when looking for "28 semaines plus tard" (28 weeks later) with IMDB Provider (startindex can't be less than 0. Parameter name : startIndex).
When using "akas.imdb.com", it takes me directly to the movie.


Riderkz wrote:its again problem with imdb - no info found

<h5>Director:</h5>.*\\n<a href=\"/name/nm\\d{7}/\">(.*?)</a><div\sid="director-info"\sclass="info">\s*<h5>.*:</h5>\s*(?<1>.*?)\s*</div><a\shref="/name/nm\d{7}/">(?<1>.*?)</a>
fdt wrote:Hi joma,
I am currently working on several movie providers focusing on french.imdb.com to be able to get the IMDB rating when searching for international movies with titles translated in French. It appears that there is a bug in your imdb provider regarding the directors list. The regex returns nothing when the movie has mutiple directors.
For example, The Matrix. The regex you are using is:is not correct because when a film has multiple directors the text is *Directors".
- Code: Select all
<h5>Director:</h5>.*\\n<a href=\"/name/nm\\d{7}/\">(.*?)</a>
FYI using the following regexs works for us and french imdb for movies with single or multiple directors:to get the directors string then
- Code: Select all
<div\sid="director-info"\sclass="info">\s*<h5>.*:</h5>\s*(?<1>.*?)\s*</div>to get each director from the previous string.
- Code: Select all
<a\shref="/name/nm\d{7}/">(?<1>.*?)</a>
Regards.

Return to Movie Info Providers
Users browsing this forum: No registered users and 0 guests