IMDB - cannot import number of votes

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
Post Reply
StefMir
Posts: 55
Joined: 2011-05-31 19:07:43

IMDB - cannot import number of votes

Post by StefMir »

using script 4.013

I cannot download number of votes (see images below)

Image

Image
antp
Site Admin
Posts: 9629
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Re: IMDB - cannot import number of votes

Post by antp »

I have a few other bugs in the IMDb script to check, I'll try to do that some day...
(but if someone else has time, don't hesitate)
athe
Posts: 170
Joined: 2013-06-01 20:26:24
Location: Poland

Re: IMDB - cannot import number of votes

Post by athe »

You must change this line
Value := TextBetween(PageText, '<a href="ratings" class="tn15more">', '</a>');
to this one

Code: Select all

Value := TextBetween(PageText, 'total-votes">(', ')<');
in the section

Code: Select all

if GetOption('UserRatings') > 0 then
    begin
    Value := TextBetween(PageText, 'total-votes">(', ')<');
    //  Value := TextBetween(PageText, '<a href="ratings" class="tn15more">', '</a>');
      if Value <> '' then
        Value := 'User Rating: ' + GetField(fieldRating) + ' out of 10  (with ' + Value + ')';
      if (GetOption('UserRatings') = 1) and (Value <> '') and (CanSetField(fieldMediaType)) then
        SetField(fieldMediaType, Value);
      if (GetOption('UserRatings') = 2) and (Value <> '') then
        SetField(fieldComments, GetField(fieldComments) + #13#10 + #13#10 + Value);
    end;
antp
Site Admin
Posts: 9629
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Re: IMDB - cannot import number of votes

Post by antp »

Thanks, I updated the script as version 4.014
Post Reply