English > Talk

Alternative

<< < (11/15) > >>

Ivek23:
IMDB_ [EN] [HTTPS] script

Plot Keywords (~ category ~ "keywords") has not been on Imdb web sites for a long time as an area Category (also in PVD for a long time, the Category field is empty), but this information is taken as Tags and the info is transferred to the PVD Tags normal field.

This part of the code is now modified as seen below, which is of course also correct and so it should remain (Imdb plugin also equals to transfer this information into the same field).


--- Quote ---    //Get ~category~ "keywords" (field with several values in a comma separated list)
    curPos:=Pos('<h4 class="inline">Plot Keywords:</h4>',HTML);                                      //WEB_SPECIFIC.IC.
    If 0<curPos Then Begin       
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Plot Keywords:</h4>','<a href="/title/',false,curPos);  //Strings which opens/closes the data. WEB_SPECIFIC
       ItemValue:=StringReplace(ItemValue,'|',',',True,True,False);                                  //Change the separator to comma
       //AddFieldValueXML('category',ItemValue);
       AddFieldValueXML('tags',ItemValue);       
       LogMessage('      Get results Tags:'+ItemValue+'||');
       //LogMessage('      Get results Category:'+ItemValue+'||');
    End; 
--- End quote ---

Ivek23:
IMDB_ [EN] [HTTPS] script

Before:

--- Quote ---  BASE_URL_PERSON_PRE      = 'https://www.imdb.com/name/';      //The traditional BASE_UR to person ID 'http://httpS://www.imdb.com/name/    nm0094036/'
  BASE_URL_PERSON_PRE_TRUE = 'https://www.imdb.com/name/';      //True actual link to person ID 'http://httpS://www.imdb.com/name/    nm0094036/'
--- End quote ---

Such a url for people is incorrect because the names for the actor, producer, or other categories of people are recorded separately because the URL is captured as a secure URL address.

After:

--- Quote ---  BASE_URL_PERSON_PRE      = 'http://www.imdb.com/name/';      //The traditional BASE_UR to person ID 'http://httpS://www.imdb.com/name/    nm0094036/'
  BASE_URL_PERSON_PRE_TRUE = 'https://www.imdb.com/name/';      //True actual link to person ID 'http://httpS://www.imdb.com/name/    nm0094036/'
--- End quote ---

After changing the part of the code to a regular URL, now the names for the actor, producer, or other categories of people are recorded correctly, as it should be.

VVV_Easy_Programing:
The Alfa 9 version ONLY SCRIPT FOLDER .... we are near of Beta versión  ;D:
http://vvveasy.altervista.org/wp-content/uploads/2018/06/Scripts-V.Alfa_.9.zip

Corrected: Https in persons, AKA empty values and Change "Get Length" parameter to "Get Feautures"  to retreive original movie technical spec (RunTime, languages, aspect,etc) in all scripts (Ivek23 sugestion-code)

Change the ancient folder for the new folder. Remember run with "portable.bat" (that is with the debug mode set in this test version).
We entry in the script debug so: If you have problems, please is very important the name of the movie and attach the file: PersonalVideoDB\log.txt   

Now we are capable of change the script parameters, so I recomend see first the new Script "**** Scripts Configuration ****" (doesn't affect to database)
----------------------------------------------------------------------------------------------------------------
Important: This is a alfa version (even it not arrives beta level). Please is only for test, not mix your personal Database with this version. You may unzip in your desktop and run only in portable mode (portable.bat) without internet proxi.
----------------------------------------------------------------------------------------------------------------


--- Quote ---Plot Keywords (~ category ~ "keywords") has not been on Imdb web sites for a long time as an area Category (also in PVD for a long time, the Category field is empty), but this information is taken as Tags and the info is transferred to the PVD Tags normal field.

--- End quote ---
In PVD there are three similar fields, with comma separated list and list filter capabilities and is not easy to differentiate.
We can see with an example, for instance with “The GodFather":
~genre~   = Genre
    IMDB= Drama, Crime
    TheMovieDB= Drama, Crime
    FilmAffinity= Drama
~category~ or ~tags~ (Plot Keywords)
    IMDB= Mafia, crime family, patriarch, organized crime, rise to power
    TheMovieDB=  Italy, loss of loved one, love at first sight, Italian american, europe, patriarch, organized crime, mafia, lawyer, crime, crime family, rise to power, mob boss, 1940s, 1950s
    FilmAffinity= Mafia. Crime. 1940s. 1950s. Family Relationships. Cult Movie.
For me, Mafia, Crime, 1940s or Cult Movie are categories of films but is true that nowadays, in internet, we use more Tags than Category.
Well how Category appears before in PVD, just below of Genre, I take this field and left Tags for a user use like own age certification.


Ivek23:
IMDB_ [EN] [HTTPS] script


--- Quote ---    //Get ~description~
    curPos:=Pos('<span itemprop="description">',HTML);                                 //WEB_SPECIFIC.
    If 0<curPos Then Begin
       ItemValue:=TextBetWeen(HTML,'<span itemprop="description">','<em class="nobr">',false,curPos);   //Strings which opens/closes the data. WEB_SPECIFIC
       AddFieldValueXML('description',ItemValue);
       LogMessage('      Get result description:'+ItemValue+'||');
    End;
--- End quote ---
For 8 Mile, the previous description code did not transfer information. When I fix it, it works fine, as well as for other movie titles.

--- Quote ---Function ParsePage_IMDBMovieBASE(HTML:String):Cardinal; //BlockOpen
    //Returns:
    //     Result:=prFinished; Script has finished gathering data
    //     Result:=prError; If not results
    //Retrieve: ~title~, ~year~, ~origtitle~, ~poster~ / ~imdbrating~, ~IMDB_Votes~ (Custom Field) / ~TOP_250~(Custom Field) /
    //          If Not(GET_FULL_CREDIT): ~crew~ctDirectors,ctWriters,ctComposers,ctProducers(Not in base page), ctActors
    //         ~description~ / ~category~ "keywords" / ~tagline~ / ~genre~
    //         If Not(GET_FULL_MPAA) ~mpaa~
    //         ~country~ / ~rdate~ in contry provider local IP geolocation
    //         If Not(GET_FULL_AKA) ~aka~.
    //         ~budget~ / ~money~ / ~studio~ "Production Co"
    //         If GET_FEATURES ~features~
  Var
      debug_pos1:Integer;
      curPos,endPos,index:Integer;
      ItemValue,ItemList:String;
      titleValue:String;
      Name,Role,PersonURL:String;
      IMDb_ID:String;
  Begin
    LogMessage('Function ParsePage_IMDBMovieBASE BEGIN======================|');
    //Because the script don't retreives the data in the page order a token search for the first curPos position is mandatory
    //Get ~IMDbID~   
    IMDb_ID:=StringReplace(DownloadURL,'https://www.imdb.com/title/','',True,False,False);
    IMDb_ID := StringReplace(IMDb_ID,'/','',True,False,False);
    AddCustomFieldValueByName('IMDbID',IMDb_ID);
    LogMessage('      Get result IMDbID:'+IMDb_ID+'||'); 
    //Get ~title~, ~year~, ~origtitle~, ~poster~
.
.
.
    //Get ~description~
    //curPos:=Pos('<span itemprop="description">',HTML);                                 //WEB_SPECIFIC.
    //If 0<curPos Then Begin
    //   ItemValue:=TextBetWeen(HTML,'<span itemprop="description">','<em class="nobr">',false,curPos);   //Strings which opens/closes the data. WEB_SPECIFIC
    //   AddFieldValueXML('description',ItemValue);
    //   LogMessage('      Get result description:'+ItemValue+'||');
    //End;
    //Get ~description~
    If Pos('<h2>Storyline</h2>',HTML)>0 then begin
    EndPos:= Pos('<h2>Storyline</h2>', HTML);
    curPos:=Pos('<h2>Storyline</h2>',HTML);                                 //WEB_SPECIFIC.
       If 0<curPos Then Begin
          ItemValue:=TextBetWeen(HTML,'<h2>Storyline</h2>','<span class="see-more inline">',false,curPos);   //Strings which opens/closes the data. WEB_SPECIFIC
          ItemValue := StringReplace(ItemValue, 'Industry information at your fingertips', '', true, false, true);
          ItemValue := StringReplace(ItemValue, 'Some parts of this page won'+#39+'t work property. Please reload or try later.', '', true, false, true);
          debug_pos1:=Pos('Written by',ItemValue);
          if debug_pos1 >0 then ItemValue := Copy(ItemValue,0,debug_pos1-1);
          AddFieldValueXML('description',ItemValue);
          LogMessage('      Get result description:'+ItemValue+'||');
       End;
    End;
--- End quote ---

Also added is the IMDB Id code.

I also redefined part of the budget code and box office code.
Before:

--- Quote ---    //Get ~budget~
    curPos:=Pos('<h4 class="inline">Budget:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin       
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Budget:</h4>','<',false,curPos);      //Strings which opens/closes the data. WEB_SPECIFIC
       AddFieldValueXML('budget',ItemValue);
       LogMessage('      Get results Budget:'+ItemValue+'||');
    End;       
    //Get ~money~ Box Office worldwide 
    curPos:=Pos('<h4 class="inline">Cumulative Worldwide Gross:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin       
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Cumulative Worldwide Gross:</h4>','<',false,curPos);      //Strings which opens/closes the data. WEB_SPECIFIC
       AddFieldValueXML('money',ItemValue);
       LogMessage('      Get results Box Office worldwide:'+ItemValue+'||');
    End;
--- End quote ---

After:

--- Quote ---    //Get ~budget~
    curPos:=Pos('<h4 class="inline">Budget:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin       
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Budget:</h4>','<',false,curPos);      //Strings which opens/closes the data. WEB_SPECIFIC
       ItemValue:=StringReplace(ItemValue,#36,'',True,True,False);        //Eliminate '$' if exists 
       ItemValue:=StringReplace(ItemValue,',','',True,True,False);        //Eliminate ',' if exists       
       AddFieldValueXML('budget',ItemValue);
       LogMessage('      Get results Budget:'+ItemValue+'||');
    End;
    //Get ~money~ Box Office worldwide 
    curPos:=Pos('<h4 class="inline">Cumulative Worldwide Gross:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin       
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Cumulative Worldwide Gross:</h4>','<',false,curPos);      //Strings which opens/closes the data. WEB_SPECIFIC
       ItemValue:=StringReplace(ItemValue,#36,'',True,True,False);        //Eliminate '$' if exists 
       ItemValue:=StringReplace(ItemValue,',','',True,True,False);        //Eliminate ',' if exists       
       AddFieldValueXML('money',ItemValue);
       LogMessage('      Get results Box Office worldwide:'+ItemValue+'||');
    End;
--- End quote ---

The code for Gross USA can also be used. So I have a budget code for the budget, Gross USA and a box office.
--- Quote ---    //Get ~budget~
    curPos:=Pos('<h4 class="inline">Budget:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin       
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Budget:</h4>','<',false,curPos);      //Strings which opens/closes the data. WEB_SPECIFIC
       ItemValue:=StringReplace(ItemValue,#36,'',True,True,False);        //Eliminate '$' if exists 
       ItemValue:=StringReplace(ItemValue,',','',True,True,False);        //Eliminate ',' if exists       
       AddFieldValueXML('budget',ItemValue);
       LogMessage('      Get results Budget:'+ItemValue+'||');
    End;
    //Get ~budget~
    curPos:=Pos('<h4 class="inline">Budget:</h4>',HTML);      //WEB_SPECIFIC
    If 0<curPos Then Begin       
       ItemValue:=StringReplace(TextBetWeen(HTML,'<h4 class="inline">Budget:</h4>','<',false,curPos),',','.',true, false, true);
       AddCustomFieldValueByName('Imdb Budget',ItemValue);
       LogMessage('      Get results Budget_1:'+ItemValue+'||');
    End;
    //Get ~money~ Gross USA 
    curPos:=Pos('<h4 class="inline">Gross USA:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Gross USA:</h4>','<',false,curPos);      //Strings which opens/closes the data. WEB_SPECIFIC
       ItemValue:=StringReplace(ItemValue,#36,'',True,True,False);        //Eliminate '$' if exists 
       ItemValue:=StringReplace(ItemValue,',','',True,True,False);        //Eliminate ',' if exists       
       AddFieldValueXML('money',ItemValue);
       LogMessage('      Get results Gross USA:'+ItemValue+'||');
    End;
    //Get ~money~ Gross USA 
    curPos:=Pos('<h4 class="inline">Gross USA:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin
       ItemValue:=StringReplace(TextBetWeen(HTML,'<h4 class="inline">Gross USA:</h4>','<',false,curPos),',','.',true, false, true);      //Strings which opens/closes the data. WEB_SPECIFIC
       AddCustomFieldValueByName('Gross USA:',ItemValue);
       LogMessage('      Get results Gross_USA:'+ItemValue+'||');
    End;         
    //Get ~money~ Box Office worldwide 
    curPos:=Pos('<h4 class="inline">Cumulative Worldwide Gross:</h4>',HTML);                                      //WEB_SPECIFIC
    If 0<curPos Then Begin       
       ItemValue:=TextBetWeen(HTML,'<h4 class="inline">Cumulative Worldwide Gross:</h4>','<',false,curPos);      //Strings which opens/closes the data. WEB_SPECIFIC
       AddFieldValueXML('money',ItemValue);
       AddCustomFieldValueByName('Imdb Box Office:',ItemValue);
       LogMessage('      Get results Box Office worldwide:'+ItemValue+'||');
    End;
--- End quote ---

The User Reviews code could also be added.

Ivek23:
IMDB_ [EN] [HTTPS] script

For Alexander the Great (2006) movie there is no download of the poster movie, although Alexander the Great (2006) is the Imdb website.

http://www.imdb.com/title/tt0480507/


--- Quote ---(5.6.2018 7:01:22) PVD Version: 1.0.2.7
(5.6.2018 7:01:22) OS: Windows 7 Ultimate Edition
(5.6.2018 7:01:22) GlassFrame Enabled
(5.6.2018 7:01:22) Plugin loaded: csvimp.dll 0.1.3.1
(5.6.2018 7:01:23) Plugin loaded: mpexport.dll 0.1.0.2
(5.6.2018 7:01:23) Plugin loaded: msexcel.dll 0.4.1.0
(5.6.2018 7:01:23) Plugin loaded: plainexp.dll 0.7.1.2
(5.6.2018 7:01:23) Plugin loaded: scriptint.dll 0.3.0.2
(5.6.2018 7:01:23) Plugin loaded: valueconvert.dll 0.1.0.2
(5.6.2018 7:01:23) Compiling script: IMDB_[EN][HTTPS].psf
(5.6.2018 7:01:23) Script compiled successfully: IMDB_[EN][HTTPS].psf
[Warning] (1091:47): "and True" is not needed
(5.6.2018 7:01:23) Executing script binary
(5.6.2018 7:01:23) Compiling script: IMDB_[EN][HTTPS]1.psf
(5.6.2018 7:01:23) Script compiled successfully: IMDB_[EN][HTTPS]1.psf
[Warning] (1295:47): "and True" is not needed
(5.6.2018 7:01:23) Executing script binary
(5.6.2018 7:01:23) Compiling script: IMDB_[EN][HTTPS]3.psf
(5.6.2018 7:01:23) Script compiled successfully: IMDB_[EN][HTTPS]3.psf
[Warning] (795:47): "and True" is not needed
(5.6.2018 7:01:23) Executing script binary
(5.6.2018 7:01:23) Compiling script: PVdBScriptConfig.psf
(5.6.2018 7:01:23) Script compiled successfully: PVdBScriptConfig.psf
(5.6.2018 7:01:23) Executing script binary
(5.6.2018 7:01:23) Script loaded: IMDB_[EN][HTTPS].psf 1.0.0.0
(5.6.2018 7:01:23) Script loaded: IMDB_[EN][HTTPS]1.psf 1.0.0.0
(5.6.2018 7:01:23) Script loaded: IMDB_[EN][HTTPS]3.psf 1.0.0.0
(5.6.2018 7:01:23) Script loaded: PVdBScriptConfig.psf 1.0.0.0
(5.6.2018 7:01:24) Loading database: D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\movies.pvd
(5.6.2018 7:01:25) Query time: 0 ms
(5.6.2018 7:30:36) Compiling script: IMDB_[EN][HTTPS].psf
(5.6.2018 7:30:36) Script compiled successfully: IMDB_[EN][HTTPS].psf
[Warning] (1091:47): "and True" is not needed
(5.6.2018 7:30:36) Executing script binary
(5.6.2018 7:30:36) Prijava v...
(5.6.2018 7:30:37) Function GetDownloadURL BEGIN======================|
(5.6.2018 7:30:37) Global Var-Mode|0|
(5.6.2018 7:30:37) Global Var-DownloadURL||
(5.6.2018 7:30:37)       IMDB URL.
(5.6.2018 7:30:37)       Parse stored information DownloadURL:https://www.imdb.com/title/tt0480507/||
(5.6.2018 7:30:37) Function GetDownloadURL END====================== with Mode=1 Result=D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\portable.bat|
(5.6.2018 7:30:37) Iskanje Film Podatkov za: Alexander the Great
(5.6.2018 7:30:37) Function ParsePage BEGIN======================|
(5.6.2018 7:30:37) Global Var-Mode|1|
(5.6.2018 7:30:37) Global Var-DownloadURL|https://www.imdb.com/title/tt0480507/|
(5.6.2018 7:30:37) Local Var-URL||
(5.6.2018 7:30:37)   ParsePage mode smNormal|1|. Getting provider data for MovieID|tt0480507|
(5.6.2018 7:30:37)       Get result url:http://www.imdb.com/title/tt0480507/||
(5.6.2018 7:30:37) Function DownloadPage BEGIN======================|
(5.6.2018 7:30:37) Global Var-DownloadURL|https://www.imdb.com/title/tt0480507/|
(5.6.2018 7:30:37)    Local Var-URL|https://www.imdb.com/title/tt0480507/|
(5.6.2018 7:30:37)       Waiting 1s for delete:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:38)       Download with PVdBDownPage in file:|D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm the information of:|https://www.imdb.com/title/tt0480507/||
(5.6.2018 7:30:38)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:40)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:42)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:45)       Now present complete page file: D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:45) Function DownloadPage END======================|
(5.6.2018 7:30:45) Function ParsePage_IMDBMovieBASE BEGIN======================|
(5.6.2018 7:30:45)       Get result title:Alexander the Great||
(5.6.2018 7:30:45)       Get result year:2006||
(5.6.2018 7:30:45)       Get result origtitle:Alexander the Great||
(5.6.2018 7:30:45)       Get result imdbrating:5.5||
(5.6.2018 7:30:45)       Get result IMDB_Votes:196||
(5.6.2018 7:30:45)       Get result description:||
(5.6.2018 7:30:45)       Get results Category:king                        , character name in title            ,||
(5.6.2018 7:30:45)       Get result tagline:The Story of a Legend||
(5.6.2018 7:30:45)       Get results Genre:Animation||
(5.6.2018 7:30:45)       Get results Country:Italy||
(5.6.2018 7:30:45)       Get results Release Date:10.3.2006||
(5.6.2018 7:30:45)       Get results Studio/Production Co:Difarm Inc.||
(5.6.2018 7:30:45)       Get result Color:Color||
(5.6.2018 7:30:45)       Get result Aspect Ratio:1.85 : 1||
(5.6.2018 7:30:45)       Get result Movie Features:Color: Color<br>Aspect Ratio: 1.85 : 1<br>||
(5.6.2018 7:30:45) Function ParsePage_IMDBMovieBASE END=====================||
(5.6.2018 7:30:45) Function DownloadPage BEGIN======================|
(5.6.2018 7:30:45) Global Var-DownloadURL|https://www.imdb.com/title/tt0480507/releaseinfo?ref_=tt_dt_dt#akas|
(5.6.2018 7:30:45)    Local Var-URL|https://www.imdb.com/title/tt0480507/releaseinfo?ref_=tt_dt_dt#akas|
(5.6.2018 7:30:45)       Waiting 1s for delete:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:46)       Download with PVdBDownPage in file:|D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm the information of:|https://www.imdb.com/title/tt0480507/releaseinfo?ref_=tt_dt_dt#akas||
(5.6.2018 7:30:46)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:48)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:50)       Now present complete page file: D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:50) Function DownloadPage END======================|
(5.6.2018 7:30:50) Function ParsePage_IMDBMovieAKA BEGIN=====================||
(5.6.2018 7:30:50)            Parse results (52285,52527) complex ItemList:                                                        Bulgaria (Bulgarian title)|                        Александър Велики|                        ||
(5.6.2018 7:30:50)       Get results aka:||
(5.6.2018 7:30:50) Function ParsePage_IMDBMovieAKA END=====================||
(5.6.2018 7:30:50) Function DownloadPage BEGIN======================|
(5.6.2018 7:30:50) Global Var-DownloadURL|https://www.imdb.com/title/tt0480507/fullcredits?ref_=tt_cl_sm#cast|
(5.6.2018 7:30:50)    Local Var-URL|https://www.imdb.com/title/tt0480507/fullcredits?ref_=tt_cl_sm#cast|
(5.6.2018 7:30:50)       Waiting 1s for delete:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:51)       Download with PVdBDownPage in file:|D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm the information of:|https://www.imdb.com/title/tt0480507/fullcredits?ref_=tt_cl_sm#cast||
(5.6.2018 7:30:51)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:53)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:55)       Now present complete page file: D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:55) Function DownloadPage END======================|
(5.6.2018 7:30:55) Function ParsePage_IMDBMovieCREDIT BEGIN=====================||
(5.6.2018 7:30:55)       Parse Results PersonURL:http://www.imdb.com/name/nm2034950/||
(5.6.2018 7:30:56)       Parse Results Name:Daehong Kim||
(5.6.2018 7:30:56)       Get results Director:#1|Daehong Kim|http://www.imdb.com/name/nm2034950/||ctDirectors
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm0960417/||
(5.6.2018 7:30:56)       Parse Results Name:Johnny Hartmann||
(5.6.2018 7:30:56)       Get results Writer:#1|Johnny Hartmann|http://www.imdb.com/name/nm0960417/||ctWriters
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm0768687/||
(5.6.2018 7:30:56)       Parse Results Name:Luciano Scaffa||
(5.6.2018 7:30:56)       Get results Writer:#2|Luciano Scaffa|http://www.imdb.com/name/nm0768687/||ctWriters
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm2038209/||
(5.6.2018 7:30:56)       Parse Results Name:Matteo Corradi||
(5.6.2018 7:30:56)       Get results Producers:#1|Matteo Corradi|http://www.imdb.com/name/nm2038209/||ctProducers
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm0180664/||
(5.6.2018 7:30:56)       Parse Results Name:Orlando Corradi||
(5.6.2018 7:30:56)       Get results Producers:#2|Orlando Corradi|http://www.imdb.com/name/nm0180664/||ctProducers
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm0228147/||
(5.6.2018 7:30:56)       Parse Results Name:Mark A.Z. Dippé||
(5.6.2018 7:30:56)       Get results Producers:#3|Mark A.Z. Dippé|http://www.imdb.com/name/nm0228147/||ctProducers
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm1545935/||
(5.6.2018 7:30:56)       Parse Results Name:Jong Han Kim||
(5.6.2018 7:30:56)       Get results Producers:#4|Jong Han Kim|http://www.imdb.com/name/nm1545935/||ctProducers
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm1098194/||
(5.6.2018 7:30:56)       Parse Results Name:Youngki Lee||
(5.6.2018 7:30:56)       Get results Producers:#5|Youngki Lee|http://www.imdb.com/name/nm1098194/||ctProducers
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm2034950/||
(5.6.2018 7:30:56)       Parse Results Name:Daehong Kim||
(5.6.2018 7:30:56)       Get results Composers:#1|Daehong Kim|http://www.imdb.com/name/nm2034950/||ctComposers
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm0010486/||
(5.6.2018 7:30:56)       Parse Results Name:Mark Adair-Rios||
(5.6.2018 7:30:56)       Parse Results Role:Alexander       (voice)||
(5.6.2018 7:30:56)       Get results cast:#1|Mark Adair-Rios|Alexander       (voice)|http://www.imdb.com/name/nm0010486/||ctActors
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm0178875/||
(5.6.2018 7:30:56)       Parse Results Name:Chris Coppola||
(5.6.2018 7:30:56)       Parse Results Role:Darius       (voice)||
(5.6.2018 7:30:56)       Get results cast:#2|Chris Coppola|Darius       (voice)|http://www.imdb.com/name/nm0178875/||ctActors
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm2279608/||
(5.6.2018 7:30:56)       Parse Results Name:Nicolai Dorian||
(5.6.2018 7:30:56)       Parse Results Role:Boy Alexander       (voice)||
(5.6.2018 7:30:56)       Get results cast:#3|Nicolai Dorian|Boy Alexander       (voice)|http://www.imdb.com/name/nm2279608/||ctActors
(5.6.2018 7:30:56)       Parse Results PersonURL:http://www.imdb.com/name/nm2338214/||
(5.6.2018 7:30:56)       Parse Results Name:Ronn Ozuk||
(5.6.2018 7:30:56)       Parse Results Role:Aristotle /              Oxyathres       (voice)||
(5.6.2018 7:30:56)       Get results cast:#4|Ronn Ozuk|Aristotle /              Oxyathres       (voice)|http://www.imdb.com/name/nm2338214/||ctActors
(5.6.2018 7:30:56) Function ParsePage_IMDBMovieCREDIT END=====================||
(5.6.2018 7:30:56) Function DownloadPage BEGIN======================|
(5.6.2018 7:30:56) Global Var-DownloadURL|https://www.imdb.com/title/tt0480507/awards?ref_=tt_awd|
(5.6.2018 7:30:56)    Local Var-URL|https://www.imdb.com/title/tt0480507/awards?ref_=tt_awd|
(5.6.2018 7:30:56)       Waiting 1s for delete:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:57)       Download with PVdBDownPage in file:|D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm the information of:|https://www.imdb.com/title/tt0480507/awards?ref_=tt_awd||
(5.6.2018 7:30:57)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:30:59)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:31:01)       Now present complete page file: D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:31:01) Function DownloadPage END======================|
(5.6.2018 7:31:01) Function ParsePage_IMDBMovieAWARDS BEGIN=====================||
(5.6.2018 7:31:01) Function ParsePage_IMDBMovieAWARDS END=====================||
(5.6.2018 7:31:01) Function DownloadPage BEGIN======================|
(5.6.2018 7:31:01) Global Var-DownloadURL|http://www.imdb.com/title/tt0480507/parentalguide?ref_=tt_stry_pg#certification|
(5.6.2018 7:31:01)    Local Var-URL|http://www.imdb.com/title/tt0480507/parentalguide?ref_=tt_stry_pg#certification|
(5.6.2018 7:31:01)       Waiting 1s for delete:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:31:02)       Download with PVdBDownPage in file:|D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm the information of:|http://www.imdb.com/title/tt0480507/parentalguide?ref_=tt_stry_pg#certification||
(5.6.2018 7:31:02)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:31:04)       Waiting 2s for exists of:D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:31:07)       Now present complete page file: D:\MyTestPVD\PersonalVideoDB_MOD\PersonalVideoDB9\Scripts\downpage-UTF8_NO_BOM.htm
(5.6.2018 7:31:07) Function DownloadPage END======================|
(5.6.2018 7:31:07) Function ParsePage_IMDBMovieMPAA BEGIN=====================||
(5.6.2018 7:31:07)       MPAA.USA.Corrected:||
(5.6.2018 7:31:07)       Get result MPAA=||
(5.6.2018 7:31:07) Function ParsePage_IMDBMovieMPAA END=====================||
(5.6.2018 7:31:07)     Provider data info retreived Ok in 2018-06-05 07:31:07|
(5.6.2018 7:31:07) Function ParsePage NORMAL END======================|

--- End quote ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version