Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Ivek23

Pages: 1 ... 91 92 93 94 95 [96] 97 98 99 100 101 ... 143
1901
Support / Re: IMDB Plugin 0.9.8.12
« on: February 10, 2013, 03:58:51 pm »
I have just updated to IMDB Plugin 0.9.8.12 and noticed that it is not updating individual episodes, even if you go into the specific episode first.

Has anyone else come across this or is it just me?

Maybe help here (IMDB2.dll) or Nostra to solve this problem.

1902
Support / Re: IMDB Plugin 0.9.8.11
« on: February 07, 2013, 06:19:25 am »
Both issues should be fixed in 0.9.8.12

Thanks, Nostra.

1903
Support / Re: IMDB Plugin 0.9.8.11
« on: February 04, 2013, 03:24:11 pm »
Also Top 250 is no transferred.

1904
Feature Suggestions / Re: Suggestion for Ivek23
« on: February 03, 2013, 06:04:13 pm »
Preparing Imdb Movie Script and Imdb Movie(1) Script with additional information, which data are Imdb plugin is not transferred.

I wonder what additional information is added to the script, so you can write your suggestions here for additional information, which should be added to the script.

Then I'll see how and what I can do and which of the proposals the can be added to the script.

1905
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 31, 2013, 06:22:27 pm »
Great!! it works for now...until we get a proper fix. LOL...thanks for the screenshot. Picture speaks a thousand words.

Thanks and welcome again.

1906
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 31, 2013, 06:19:25 pm »
as a solution to the problems until Nostra Imdb Movie plugin will not repair.

As far as I quickly noticed when I repaired my scripts, to wait Nostra a lot of patient work, if he wants to fix Imdb plugin, it will have to repair almost complete
(practically new to write) Imdb plugin.

1907
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 31, 2013, 05:48:16 pm »
Ivek, thanks to your quick response on this. However, using the latest script I am also getting "HTTP/1.1 404 Not Found".

The error is because of this: http://www.imdb.com/title/tt1606595/reference/technical

Welcome.
Yes, I know about this problem. No, I'm not yet found the right way to solve the problem.

You can also try Imdb plugin settings such as on the attached pictures. It might work.

[attachment deleted by admin]

1908
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 30, 2013, 07:04:35 pm »
Even with the new script by Ivek, it doesn't work for me. I get "HTTP/1.1 404 Not Found" error.

Patience everytime Imdb changes something....

gear.

I do not know why some other users have problems with my script, because the script work properly, or if the script does not work properly, do not attached.

I use what is described under each of my post.

1909
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 30, 2013, 03:36:58 pm »
Yes, the changes at IMDb must have been more extensive than just the URL.  Examples:

http://www.imdb.com/title/tt0100195/reference
http://www.imdb.com/title/tt0098668/reference

Country and Original Language aren't downloaded.  Writers and Directors are, however, so please include a link to one where they aren't to test.

This is now working, so I organized a url ending with "reference".

Code: [Select]
//Get ~mfURL~ or ~IMDb Url~
endPos := Pos('fullcredits" data-ql="">Full Cast and Crew</option>', HTML);
if endPos > 0 then begin
curPos := PrevPos('<option value="/title/', HTML, endPos);
MovieURL := BASE_URL + Copy(HTML, curPos+15, endPos - curPos-4);
MovieURL := StringReplace(MovieURL, 'fullcredits', 'reference', true, true, true);
AddFieldValue(mfURL, MovieURL);
end;

I attach Imdb Movie(0) script to download url, as a solution to the problems until Nostra Imdb Movie plugin will not repair.

I attach also Imdb Movie (0) + imdb Batch file.


[attachment deleted by admin]

1910
Scripts and Templates / Re: Imdb Movie Script for rating ...
« on: January 30, 2013, 12:38:39 pm »
I fixed procedure ParseMovie.

Imdb Movie script
v 0.1.0.5
Imdb Movie(1) script
v 0.1.0.4

Scripts is attached in the first post.

1911
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 30, 2013, 12:36:50 pm »
I fixed procedure ParseMovie. The scripts now works.

Imdb Movie script
v 0.1.0.5
Imdb Movie(1) script
v 0.1.0.4

Scripts is attached here.

1912
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 30, 2013, 11:01:41 am »
But it still doesn't download the full credits. The actors and director on the first page are the only ones downloaded. The others (writers, producers etc) are not included.

Imdb movie plugin does not transfer any more data, except url address.

Imdb movie plugin 0.9.8.8

PVD 0.9.9.21 or 1.0.23 beta

1913
Scripts and Templates / Re: Imdb Movie Script for rating ...
« on: January 30, 2013, 08:07:07 am »
I fixed search results with the url.

Imdb Movie script
v 0.1.0.4
Imdb Movie(1) script
v 0.1.0.3

Scripts is attached in the first post.

More details:
http://www.videodb.info/forum_en/index.php/topic,3248.msg16405.html#msg16405

1914
imdb script is not working again. When I tried to fetch a movie, nothing is fetched beside the imdb link.

sorry...false alarm..it works after i restarted my pc

All right, you alerted me to the error.

Probably use the stable version 0.9.9.21 the which unfortunately I have not tested earlier versions of the script. I tested the beta version 1.0.23 is where these problems do not appear.  The problem is the url address in the search results.
Now it is corrected and hopefully it will not be more problems.

I fixed search results with the url.

Imdb Movie script
v 0.1.0.4
Imdb Movie(1) script
v 0.1.0.3

Scripts is attached here.

The Appendix to the post:
« Reply #40 on: 27 January 2013, 10:07:48 »


This is corrected code for Search results:
Code: [Select]
procedure ParseSearchResults(HTML : String);
var
curPos, endPos : Integer;
Title, Title1, Year, URL, Preview, Preview1 : String;
begin
curPos := Pos('<table class="findList">', HTML);
if curPos < 1 then
Exit;

LogMessage('Parsing search results...');

curPos  := PosFrom('<img src="', HTML, curPos)+10;
endPos  := PosFrom('.jpg" height="44" width="32" /></a>', HTML, curPos);
Preview := Trim(Copy(HTML, curPos, endPos - curPos));
curPos := PosFrom('<a href="/title/', HTML, curPos);
while curPos > 0 do begin
endPos := PosFrom('?ref_=fn_tt_tt_', HTML, curPos);
URL := Trim(Copy(HTML, curPos+9, endPos - curPos-9));
URL := BASE_URL + URL;
curPos := PosFrom('>', HTML, curPos)+1;
endPos := PosFrom('</td> </tr>', HTML, curPos);
Title := RemoveTags(Trim(Copy(HTML, curPos, endPos - curPos)), false);
Title   := StringReplace(Title, '-', #13, true, false, true); 
curPos  := PosFrom('<img src="', HTML, curPos)+10;
endPos  := PosFrom('.jpg" height="44" width="32" /></a>', HTML, curPos);
Preview := Trim(Copy(HTML, curPos, endPos - curPos));
AddSearchResult(Title, '', '', URL, '');
curPos := PosFrom('<a href="/title/', HTML, curPos);
 end;
end;

function NextMode(curMode : Integer) : Integer;

1915
Scripts and Templates / Re: Imdb Movie Script for rating ...
« on: January 27, 2013, 11:27:51 am »
I fixed search results with the url.

Imdb Movie script
v 0.1.0.4
Imdb Movie(1) script
v 0.1.0.3

Scripts is attached in the first post.

1916
imdb script is not working again. When I tried to fetch a movie, nothing is fetched beside the imdb link.

sorry...false alarm..it works after i restarted my pc

All right, you alerted me to the error.

Probably use the stable version 0.9.9.21 the which unfortunately I have not tested earlier versions of the script. I tested the beta version 1.0.23 is where these problems do not appear.  The problem is the url address in the search results.
Now it is corrected and hopefully it will not be more problems.

I fixed search results with the url.

Imdb Movie script
v 0.1.0.4
Imdb Movie(1) script
v 0.1.0.3

Scripts is attached here.

1917
Scripts and Templates / Re: Imdb Movie Script for rating ...
« on: January 27, 2013, 08:55:23 am »
In order to facilitate repair in the first post is now Imdb Movie + imdb Batch file and imdb+Imdb Movie Batch file is here.

Batch files are now and will in the future here attached.




Imdb Movie(cast-series) script and Imdb Movie(cast-episode) script:
Currently it works:
  • search results
and data transfer for series and episodes :
  • URL
  • Imdb Actors
  • Imdb Directors
  • Imdb Writers
  • Imdb Composers
  • Imdb Producers



For download are:
  • Imdb Movie + imdb Batch file
  • imdb+Imdb Movie Batch file
  • Imdb Movie(cast-series) script
  • Imdb Movie(cast-episode) script



For guests :
There below is a link to the Russian part of the forum where you can get Imdb Movie(cast-series) script and Imdb Movie(cast-episode) script.

http://www.videodb.info/forum_ru/index.php/topic,430.msg14849.html#msg14849

1918
Support / Re: Not getting posters
« on: January 24, 2013, 08:59:00 pm »
Well I followed some of your advices and I'm back in business. Everything is working just fine and add a couple of posters/info. Thanx guys big upZ!

 8)

Welcome and thank you for the compliments and a lot of satisfaction in creating your movie Databases.

1919
Support / Re: PVD 0.9.9.21 not getting movie information.
« on: January 24, 2013, 07:33:18 am »
Do you have the latest Imdb movie plugin updated to version 0.9.8.8 ?

1920
Support / Re: Not getting posters
« on: January 23, 2013, 08:40:23 am »
To use TMDb script, download it using the link Ivek provided and put it in your Scripts folder. I'm not sure if you have to, but restart PVD so it appears in your Import menu.

If PVD is already running then yes, you must
Quote
restart PVD so it appears in your Import menu

If you do this already, even before the PVD is running, then it will be shown in your Import menu, when you start PVD.

Pages: 1 ... 91 92 93 94 95 [96] 97 98 99 100 101 ... 143