| |||||||
| Support Post problems you have with an video feature here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #11 (permalink) |
| Portal Member Join Date: May 2008
Posts: 50
Thanks: 0
Thanked 2 Times in 2 Posts
| sure you chose imdb_com and didn't have any others available? I scanned hundreds of movies and it all worked except for what i posted above as examples. All plot/summary's were pulled afaik. |
| | |
| | #12 (permalink) | |
| Super Moderator Join Date: Jun 2005 Location: Cheshire UK
Posts: 5,435
Thanks: 75
Thanked 153 Times in 139 Posts
Country: | Quote:
Thanks for the magic dukus ![]()
__________________ Ray\PD Check your codecs are fine with Filmerit. XP\Vista known issues FOR FULL SUPPORT PLEASE GIVE USER SPECIFICATIONS AND RELEVANT LOG's as per HERE | |
| | |
| | #13 (permalink) |
| Portal Member Join Date: Apr 2006 Location: London
Posts: 320
Thanks: 2
Thanked 4 Times in 4 Posts
Country: | EDIT: didn't read the whole thread, so the information is probably useless now :p Hi there, This may help whoever is developing it. I think the way IMDB shows the plots has changed. In a script i made (not for MP specifically - but in general), here is the working function i use to get the Plot, may give you some ideas: Code: //html = html code of the imdb page.
private string IMDBPlotOutline(string html)
{
GroupCollection regMatch = Regex.Match(html, @"<h5>(?:Plot Outline:|Plot Summary:|Plot:)</h5>\s*(.*?)\s*<").Groups;
if (regMatch.Count > 1)
{
return regMatch[1].Value.ToString();
}
else
{
return string.Empty;
}
}
__________________ Image Locker | free image upload hosting |
| | |
| | #15 (permalink) |
| MP Donator ![]() Join Date: May 2008 Location: FlashFXP Development Team
Posts: 25
Thanks: 3
Thanked 0 Times in 0 Posts
Country: | Hello, I am running the RC2 of MP 1.0 and am having problems with the IMDB scan as stated above. The majority of my movies are showing 'unknown' as the plot... In the database editor they are showing the plot under the summary (bottom) part, but not in the plot. Is there a solution for this? The posts above look like something is in the works or a SVN build, but I am still getting to work out the lingo/processes for this program. Thanks |
| | |
![]() |
| Bookmarks |
| Tags |
| broken, imdb, plotsummary, scrape |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| IMDB Grabber for german.imdb.com / deutsche IMDB | mmf1981 | Improvement Suggestions | 5 | 2008-07-12 14:45 |
| Plot thickens re. TV Jitter / Stutter | KevinM | MediaPortal 1 Talk | 24 | 2008-06-23 01:27 |
| Video Summary | roadblock | General Support | 1 | 2007-07-02 23:49 |
| [Patch] OFDB picture and full plot lookup broken | FlipGer | General Development (no feature request here!) | 1 | 2007-04-25 10:26 |
| Movies: OSD - Info(plot) textcontrol is on top -> bookmarks are difficult to read | chefkoch | fixed 0.2.0.0 bugs | 2 | 2006-10-09 22:56 |