Personal Video Database

English => Support => Topic started by: afrocuban on October 10, 2017, 11:09:08 pm

Title: Allmovie.com https
Post by: afrocuban on October 10, 2017, 11:09:08 pm
One more https transition. Allmovie.com script isn't possible to use anymore in PVD?

Kind regards.
Title: Re: Allmovie.com https
Post by: UtNut on October 11, 2017, 08:50:10 pm

Same here, is there chance to work around https? Really love their comments.
Title: Re: Allmovie.com https
Post by: Ivek23 on October 12, 2017, 01:28:37 pm
Tests Proxomitron (http://www.videodb.info/forum_en/index.php/topic,4083.msg19992.html#msg19992). I think this would be an ideal solution for your problems. I also attach a default.cfg file that already has an added solution for the Allmovie.com https connection. How and what is described in topic:
Proxomitron - next https solution for PVD. (http://www.videodb.info/forum_en/index.php/topic,4083.msg19992.html#msg19992)

I did not test if it works, because at present I have many family responsibilities (my father is seriously ill) and there is no time for testing.

BTW:
I will know more about this somewhere around the first of November, how and what will happen in the next few months to the end of March of the following year.


default.cfg file is attach.
Title: Re: Allmovie.com https
Post by: afrocuban on October 14, 2017, 02:15:59 am
Dear Ivek,

So sorry to hear about your father. Wish him well, please!

Thank you for your kind answer. Following your proxomitron guide I actually made it work for allmovie.com! The only strange thing is that it doesn't import AllMovie synopsis anymore.

Kind regards



Title: Re: Allmovie.com https
Post by: Ivek23 on October 14, 2017, 08:23:44 am
Dear Ivek,

So sorry to hear about your father. Wish him well, please!

Thanks.

Thank you for your kind answer. Following your proxomitron guide I actually made it work for allmovie.com! The only strange thing is that it doesn't import AllMovie synopsis anymore.

Allmovie.com script requires mass updates, which I can not do with the current situation. But I hope that as soon as possible,
so stay tuned for messages.

At the moment and quickly, I made corrections only in the ParseSearchResults procedure so that the script finds search results for a specific movie.

Code: [Select]
procedure ParseSearchResults(HTML : String);
var
curPos, endPos : Integer;
Title, Year, URL, director : String;
begin
//List of other site number where search page :
TabNumber := [''];

// curPos := Pos('<option value="movies" selected>', HTML);
// curPos := Pos('div class="results-section movies">', HTML);
curPos := Pos('<li class="movie">', HTML);
if curPos < 1 then
Exit;

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

//curPos := PosFrom('<a href="http://www.allmovie.com/movie/', HTML, curPos);
curPos := PosFrom('<a href="https://www.allmovie.com/movie/', HTML, curPos);
while curPos > 0 do begin
endPos := PosFrom('">', HTML, curPos);
URL := Copy(HTML, curPos + 9, endPos - curPos - 9);
    URL     := StringReplace(URL, 'https://', 'http://', True, True, False);

curPos := PosFrom('">', HTML, curPos)+2;
endPos := PosFrom('</a>', HTML, curPos);
Title := Copy(HTML, curPos, endPos - curPos);

curPos := PosFrom('</a>', HTML, curPos)+4;
endPos := PosFrom('</div>', HTML, curPos);
Year := RemoveTags(Trim(Copy(HTML, curPos, endPos - curPos)), false);

// curPos := PosFrom('">', HTML, curPos)+2;
// endPos := PosFrom('</a></dd>', HTML, curPos);
// director := RemoveTags(Trim(Copy(HTML, curPos, endPos - curPos)), false);

AddSearchResult(Title+' '+Year, '', '', URL, '');
curPos := PosFrom('<a href="https://www.allmovie.com/movie/', HTML, curPos);

end;

AddSearchResult('', '', '', '', '');

//Get Name of movie to search :               
    MovieName := GetFieldValue(2);
    Explodestring(MovieName,TabMovieName,#32);
    MovieName := '';
    For I:=low(TabMovieName) to High(TabMovieName) do
    Begin
    MovieName := MovieName + #43 + TabMovieName[I];
MovieName := StringReplace(MovieName, '/', '-', true, false, true);
    end;
//Add Links to Page with other sites in TabNumber:
    For I := Low(TabNumber) to High(TabNumber) do
    Begin
URL := 'http://www.allmovie.com/search/movies/'+MovieName;
//AddSearchResult('Search in '+MovieName+' on AllMovie.com','Movie results','',URL,'');
AddSearchResult('Search in '+MovieName+' on AllMovie.com','','',URL,'');
  end;
 
end;
Title: Re: Allmovie.com https
Post by: Ivek23 on October 15, 2017, 08:45:43 am
AllMovie.com_new_HTTPS script
version 1.1.2.5

I managed to fix the AllMovie.com_new script, which now has a new name and is now called the AllMovie.com_new_HTTPS script.

There may be some other errors, but maybe they might be corrected later.

AllMovie.com_new_HTTPS script  is attached.




For all guests:

You can find a link to download the script in AllMovie.com_new_HTTPS Movie Links topic. (http://www.videodb.info/forum_en/index.php/topic,4110.msg20182.html#msg20182)
Title: Re: Allmovie.com https
Post by: afrocuban on October 17, 2017, 01:50:21 am
Thank you, Ivek. The script works for me, but only with Proxomitron. Thank you.

Kind regards,
Title: Re: Allmovie.com https
Post by: VVV_Easy_Programing on October 17, 2017, 06:17:01 pm
Best wishes for your father, Ivek.
Title: Re: Allmovie.com https
Post by: Ivek23 on October 17, 2017, 06:31:58 pm
Thank you, Ivek. The script works for me, but only with Proxomitron. Thank you.

Kind regards,

I am pleased. This was the only possible and quick solution to my current situation, which I could do for you all.
Title: Re: Allmovie.com https
Post by: Ivek23 on October 17, 2017, 06:38:13 pm
Best wishes for your father, Ivek.

Thanks. Fortunately, his situation is getting better.
Title: Re: Allmovie.com https
Post by: Ivek23 on October 22, 2017, 12:40:33 pm
AllMovie.com_new_HTTPS script
version 1.1.2.6

Repair some errors. So far it was possible to download information only for actors and director. From now on, there is also the possibility of downloading information for the writer, producer and composer.

New version of AllMovie.com_new_HTTPS script  is attached.




For all guests:

You can find a link to download the script in AllMovie.com_new_HTTPS Movie Links topic. (http://www.videodb.info/forum_en/index.php/topic,4110.msg20182.html#msg20182)
Title: Re: Allmovie.com https
Post by: UtNut on November 30, 2017, 07:39:37 pm
I'm always amazed how you're able to work around these things Ivek, even HTTPS doesn't stop you!
A clever constructed combination with Proxomitron allows this noob to gather information wanted from, in my case, Allmovie.com. I'm thanking you wholeheartedly for the many contributions you made and for keeping PVD alive, making it still the best movie database there is. I'm slowly approaching 5,000 records and I haven't found anything like it. I will also wish you all the best fixing your eyesight problems, if it would be helpful to you, my father in law of 86 years old just had his cataracts operations and now is able to see clearly and sharply without his glasses he was wearing for more than 66 years.
Many thanks again.

UtNut
Title: Re: Allmovie.com https
Post by: Ivek23 on December 02, 2017, 07:54:31 pm
I'm always amazed how you're able to work around these things Ivek, even HTTPS doesn't stop you!
A clever constructed combination with Proxomitron allows this noob to gather information wanted from, in my case, Allmovie.com. I'm thanking you wholeheartedly for the many contributions you made and for keeping PVD alive, making it still the best movie database there is. I'm slowly approaching 5,000 records and I haven't found anything like it. I will also wish you all the best fixing your eyesight problems, if it would be helpful to you, my father in law of 86 years old just had his cataracts operations and now is able to see clearly and sharply without his glasses he was wearing for more than 66 years.
Many thanks again.

UtNut

Thanks a lot.
Title: Re: Allmovie.com https
Post by: Todd89 on February 28, 2018, 01:14:36 pm
Hello Ivek

Is Allmovie script still working? It's not working for me .
I Installed  Proxomitron as you said in (Proxomitron - next https solution for PVD) Topic and download (AllMovie.com_new_HTTPS script version 1.1.2.6) But still
not working and gives me this Error: IOHandler Value Is Not Valid.

Title: Re: Allmovie.com https
Post by: Ivek23 on February 28, 2018, 03:37:24 pm
Hello Ivek

Is Allmovie script still working? It's not working for me .
I Installed  Proxomitron as you said in (Proxomitron - next https solution for PVD) Topic and download (AllMovie.com_new_HTTPS script version 1.1.2.6) But still
not working and gives me this Error: IOHandler Value Is Not Valid.

The IOHandler Value Is Not Valid message means you probably did not run the Proxomitron program or you do not have the correct default.cfg file in the Proxomitron program folder. Check to see if it will work and let me know, then we'll see if the script needs to be fixed.

You can also find the default.cfg file in this link:
http://www.videodb.info/forum_en/index.php/topic,4115.msg20312.html#msg20312
Title: Re: Allmovie.com https
Post by: Ivek23 on December 24, 2019, 08:30:43 pm
AllMovie.com_new_HTTPS script
version 1.1.2.7

Repair for small errors with poster code.

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 26, 2019, 01:10:51 pm
AllMovie.com_new_HTTPS script
version 1.1.2.8

Repair for small corrections in the code for ParseMovie procedure.

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: RazorHall on December 27, 2019, 04:02:55 pm
I've downloaded the file and put it in the scripts folder, but Allmovie still doesn't appear as an import option, or in the plugins section under Preferences.  Did I miss a step?
Title: Re: Allmovie.com https
Post by: Ivek23 on December 27, 2019, 09:19:17 pm
I've downloaded the file and put it in the scripts folder, but Allmovie still doesn't appear as an import option, or in the plugins section under Preferences.  Did I miss a step?

Run PVD with debug.bat, then open log.txt to see if the script has errors or if it is in the Script folder at first. You copied AllMovie.com HTTPS.psf to the right folder, or not, it is also possible that it cannot be viewed as previously mentioned.
Title: Re: Allmovie.com https
Post by: RazorHall on December 28, 2019, 12:42:56 am
Okay, here's what the log file said about the Allmovie script:

(12/27/2019 5:40:41 PM) Compiling script: AllMovie.com HTTPS.psf
(12/27/2019 5:40:41 PM) Could not compile script: AllMovie.com HTTPS.psf
[Error] (402:75): Unknown identifier 'AllMovie'
Title: Re: Allmovie.com https
Post by: Ivek23 on December 28, 2019, 09:26:50 am
AllMovie.com_new_HTTPS script
version 1.1.2.9


Okay, here's what the log file said about the Allmovie script:

(12/27/2019 5:40:41 PM) Compiling script: AllMovie.com HTTPS.psf
(12/27/2019 5:40:41 PM) Could not compile script: AllMovie.com HTTPS.psf
[Error] (402:75): Unknown identifier 'AllMovie'

Thanks for the reported error. My mistake, I overlooked it. I fixed it and AllMovie.com HTTPS.psf is working fine.

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: RazorHall on December 28, 2019, 06:25:43 pm
Allmovie now appears as an import option, but I get the following error when I run it:

Socket Error #11001
Host not found.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 28, 2019, 07:01:01 pm
Allmovie now appears as an import option, but I get the following error when I run it:

Socket Error #11001
Host not found.

I need a log file and a movie title or a more detailed description of when and how this error occurs. Repeat the procedure as described in this link below. Then I'll see and know what's going on.

http://www.videodb.info/forum_en/index.php/topic,4109.msg21008.html#msg21008
Title: Re: Allmovie.com https
Post by: RazorHall on December 28, 2019, 07:43:31 pm
I've attached the log file.  I receive that error every time I run the Allmovie script.  I tried it on a few different titles and got the same result each time.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 28, 2019, 09:39:10 pm
I've attached the log file.  I receive that error every time I run the Allmovie script.  I tried it on a few different titles and got the same result each time.

I can't figure out what's wrong because the script works fine for me. Try AllMovie.com_new_HTTPS script version 1.1.2.7, which you can find at this link below, to see if this version also reports the same error.

http://www.videodb.info/forum_en/index.php/topic,4109.msg20986.html#msg20986
Title: Re: Allmovie.com https
Post by: RazorHall on December 28, 2019, 10:09:37 pm
No change when using the other version of the file.   :(

I don't know if this helps at all, but if I try running the script with only a title, and no link in the URL field, I get this error:

IOHandler value is not valid.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 29, 2019, 08:31:21 am
No change when using the other version of the file.   :(

I don't know if this helps at all, but if I try running the script with only a title, and no link in the URL field, I get this error:

IOHandler value is not valid.

This error occurs. because AllMovie uses an https link and PVD does not recognize the https link, only recognizes the http link. It is necessary to activate the Proxy server in the PVD settings under Internet Connections, where the following information is entered in the appendix below.
Quote
It will also act PVD, you must also PVD settings \ Internet connection, find the "Proxy" and confirm. In the "Server" field enter "localhost" Port settings to 80 . Only with this configuration will function properly PVD. PVD is used only proxy port 80.

For this to work, you also need a Proxomitron program. If you are not already using it, then you will find more at this link in the appendix below.
Tests Proxomitron (http://www.videodb.info/forum_en/index.php/topic,4083.msg19992.html#msg19992). I think this would be an ideal solution for your problems. I also attach a default.cfg file that already has an added solution for the Allmovie.com https connection. How and what is described in topic:
Proxomitron - next https solution for PVD. (http://www.videodb.info/forum_en/index.php/topic,4083.msg19992.html#msg19992)

The Proxomitron program I use on my own can be found more at this link below.
http://www.videodb.info/forum_en/index.php/topic,4125.msg20409.html#msg20409

I also attach the latest default.cfg file that already has an added solution for the Allmovie.com https connection.


default.cfg is attached.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 29, 2019, 08:43:15 am
The Proxomitron program I use on my own can be found more at this link below.
http://www.videodb.info/forum_en/index.php/topic,4125.msg20409.html#msg20409.

Notice:
All 4 parts of the Proxomitron1 (and rar format) file need to be downloaded if you want to have all the files and Proxomitron will work properly.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 29, 2019, 04:29:39 pm
AllMovie.com_new_HTTPS script
version 1.1.3.0

Some beauty fixes and improvements to the scripts code.

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: RazorHall on December 29, 2019, 06:44:37 pm
Changing the proxy settings and using Proxomitron has allowed the Allmovie script to work in most cases.  Thanks, Ivek!

I've only gotten one error so far, on one title, and that's Zombie Dearest (https://www.allmovie.com/movie/zombie-dearest-v570551).  The error is:

HTTP/1.1 400 Host Not Found
Title: Re: Allmovie.com https
Post by: Ivek23 on December 29, 2019, 08:14:41 pm
Changing the proxy settings and using Proxomitron has allowed the Allmovie script to work in most cases.  Thanks, Ivek!

Welcome. I'm glad the script is working and we have resolved the problem with the proxy settings.

I've only gotten one error so far, on one title, and that's Zombie Dearest (https://www.allmovie.com/movie/zombie-dearest-v570551).  The error is:

HTTP/1.1 400 Host Not Found

Thanks for the error. The culprit is the poster download code, which I also assumed was because I myself had a reported error when I tested the script. The error will probably be fixed tomorrow.
Title: Re: Allmovie.com https
Post by: RazorHall on December 29, 2019, 11:41:48 pm
Thanks for the error. The culprit is the poster download code, which I also assumed was because I myself had a reported error when I tested the script. The error will probably be fixed tomorrow.

That's awesome.  Thank you again for all your assistance and hard work! 
Title: Re: Allmovie.com https
Post by: Ivek23 on December 30, 2019, 06:31:49 pm
AllMovie.com_new_HTTPS script
version 1.1.3.1

Poster error corrected. It was repaired some more mistakes. However, a link to the Wayback Machine Archive has been added, where you can find an archived version of the AllMovie movie page if it has been archived.


Quote
AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
.
.
.
AMG "movie_id" ID      ~AMG Wayback Machine Archive~    memo (link to Search on Wayback Archive)

.
.
.
// ~AMG "movie_id" ID~
 endPos:=curPos;
 endPos:=PosFrom('var gptAdSlots = [];',HTML,curPos);
 curPos:=PosFrom('googletag.pubads().setTargeting('+#39+'movie_id'+#39+', '+#39+'v',HTML,endPos)+Length('googletag.pubads().setTargeting('+#39+'movie_id'+#39+', '+#39+'v');
   endPos:=PosFrom(#39+');',HTML,curPos);
   TmpStr2:=Copy(HTML,curPos,endPos-curPos);
    //TmpStr2:=RemoveTags(Trim(Copy(HTML,curPos,endPos-curPos)),false);
 AddCustomFieldValueByName('AMG Wayback Machine Archive','<link url="http://web.archive.org/web/*/http://www.allmovie.com/work/'+TmpStr2+'">AllMovie Wayback Machine Archive</link>');
 if TmpStr2 <> '' then LogMessage('      Parse Results AMG ID1:'+TmpStr2);

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: afrocuban on January 09, 2020, 12:35:13 am
Thank you and Happy New Year, dear Ivek!
Title: Re: Allmovie.com https
Post by: Ivek23 on January 26, 2021, 10:52:02 am
Here is the AllMovie.com HTTPS_Test script which has a new url entry in the normal Url field as well as when searching for results, which may be the basis for
Pvd MOD version of the program for the future. It also has some fixes and new pieces of code. If users like the script, all these code updates will be added in the new version, otherwise without the new version of entering the url in the normal Url field as well as when searching for results.

AllMovie.com HTTPS_Test script is attached.
Title: Re: Allmovie.com https
Post by: afrocuban on January 26, 2021, 03:56:02 pm
Thanks Ivek.

For example, instead http://www.allmovie.com/movie/fruitvale-station-v575941 I now got http://www.allmovie.com/movie/v575941

so it works flawlessly and please include it to a new version!


May I kindly ask you to teach me how to remove year from Title1 custom field? You can post piece of code here, and I will paste it in my sample of AllMovie script. I need it badly, because how it is now I'm getting year twice: once from Title1 and once from regular "Year" field so in the skin, year is visible twice.

(https://images2.imgbox.com/1a/f7/4WDhOvY0_o.png)


Title: Re: Allmovie.com https
Post by: afrocuban on January 26, 2021, 04:15:54 pm
I think I got it.

Instead of
AddCustomFieldValueByName('Title1',TmpStr2);

I put

AddCustomFieldValueByName('Title1',TmpStr1);

Am i right?
Title: Re: Allmovie.com https
Post by: Ivek23 on January 26, 2021, 08:46:41 pm
I think I got it.

Instead of
AddCustomFieldValueByName('Title1',TmpStr2);

I put

AddCustomFieldValueByName('Title1',TmpStr1);

Am i right?

Yes, you are right. If that doesn't work, add this piece of code

Quote
      TmpStr2:=Copy(HTML,curPos,endPos-curPos);
        debug_pos1:=Pos('(',TmpStr2);   
   if debug_pos1 >0 then TmpStr2:=Copy(TmpStr2,0,debug_pos1-1);

   AddCustomFieldValueByName('Title1',TmpStr2);
   LogMessage('      Parse Results Title2: '+TmpStr2);
Title: Re: Allmovie.com https
Post by: afrocuban on January 27, 2021, 12:37:49 am
Thanks Ivek. It looks like it works, but I'll keep on my mind piece of code as a backup.

Best regards
Title: Re: Allmovie.com https
Post by: afrocuban on January 27, 2021, 01:20:05 am
Thanks Ivek.

For example, instead http://www.allmovie.com/movie/fruitvale-station-v575941 I now got http://www.allmovie.com/movie/v575941

.. but both url''s will be kept in the URL field. Is there a way to automatically clean all "old" url's? Also, now I think of a scenario I had. I had mass import of episodes from AllMovie.com, for example "Modern Family". For some episodes that has common titles, like "Halloween" I wasn't offered to pick the title, but the script automatically imported movie "Halloween" by John Carpenter (https://www.allmovie.com/movie/halloween-v21317) and not the episode of the same title - (https://www.allmovie.com/movie/modern-family--halloween-v544859).

But, I wasn't worried, because after each season mass import, I went to manually check URL field of each episode, and if url didn't contain "modern family" in allmovie url (please compare 2 url's above), I knew it was wrong url, so I went to site and manually found proper url for the episode.

This will definitely not be possible with new url's, and I don't see any benefits of using new url's and also we would have to most likely manually clean "old" url's which for me is impossible for 7k movies.

So, I would definitely like to keep old url's and sorry for I wasn't thinking thoroughly in my previous post about this.
Title: Re: Allmovie.com https
Post by: Ivek23 on January 27, 2021, 08:11:18 am
Thanks for the feedback around the new version of the url record.

The new version of url addresses will not be added to the next update of the AllMovie.com HTTPS script version, which means that in the future there will probably not be an AllMovie.com HTTPS script version for the Pvd MOD version of the program. Apparently, only the AllMovie.com HTTPS script version using the Proxomitron program will remain.
Title: Re: Allmovie.com https
Post by: afrocuban on January 27, 2021, 09:40:26 pm
Thanks for the feedback around the new version of the url record.

The new version of url addresses will not be added to the next update of the AllMovie.com HTTPS script version, which means that in the future there will probably not be an AllMovie.com HTTPS script version for the Pvd MOD version of the program. Apparently, only the AllMovie.com HTTPS script version using the Proxomitron program will remain.

Once again, I am sorry for being quick in my first reaction on your script, but I wanted to give you as much support as possible for your hard work. Maybe it would be overkill for you to maintain both proxo and non-proxo versions of a script, but if it's not overkill, maybe it's good idea to offer both versions so people could choose at least until some point of time!

It is also easier not to switch on/off proxy in PVD for this script, which would make possible to create larger chains of scripts (batch files), and then only (episodelist) and (episodelist)(a) would need proxo.

Again, that would maybe make you one day to transit those two scripts to non-proxo mod too, and that would be perfect, and I am sure we all hope and wait for that day - all the scripts to work without proxo - (almost) ONE GREAT BATCH FILE finally, hahaha.

Mass imports are rare I guess, so maybe transition to non-proxo scripts is a-must, so please keep this in mind and not only my previous opinion.


Thanks again and again!
Title: Re: Allmovie.com https
Post by: Ivek23 on February 01, 2021, 09:17:45 am
AllMovie.com_new_HTTPS script

I fixed a small bug in the Moods code. Links to Cast & Crew, Review have been added, and links to search for results on Amazon.com and Amazon.co.uk have been corrected.

However, individual links to Awards, Releases, Related and links to search for results on AllMovie.com and Amazon sites have been removed.

All links to Cast & Crew, Review, Awards, Releases, Related and links to search results on AllMovie.com and Amazon sites are now combined in AllMovie.com URL custom field.

However, it is more clear from the table added below what is left now, what is not and what is newly added.


Quote
AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
Actors            ~ctActors~      1, 3      credits (if GET_ACTORS true)
Alternate title      ~Alternate title~         memo
AllMovie rating         ~mfRating~      1, 3      'Additional rating' named 'AllMovie.new' (if GET_RATING true)
            OR   ~AllMovie rating~      2      rating
//Amazon            ~Amazon~               memo (link to Search on Amazon)
AMG ID            ~AMG ID~               short text
            AND   
AMG "movie_id" ID      ~AMG Wayback Machine Archive~    memo (link to Search on Wayback Archive)

//Awards            ~AllMovie Awards~            memo (link to AllMovie Awards tab)
Cast               ~Cast~               memo
Crew               ~Crew~               memo
Category            ~Category.AllMovie~         multiselect list
                                 —not to be confused with ~mfCategory~ (used for 'Themes')
Characteristics      
               ~Moods~         2      multiselect list (from 'Characteristics')
            AND   ~Mood links~            memo (hyperlinks to AllMovie mood pages
                                 —if available in web archive
               ~Keywords~      2      memo (from 'Characteristics')
               ~Attributes~      2      multiselect list (from 'Characteristics')
Themes from 'Characteristics'
               ~mfCategory~      1      standard multiselect list (if GET_THEMES true) (from 'Characteristics')
            OR   ~Themes~         2      multiselect list (from 'Characteristics')
            AND ~Themes links~      2      memo (hyperlinks to AllMovie themes pages)
Country            ~mfCountry~      1      standard multiselect list
            OR   ~Country~         2      multiselect list
Cover-art            ~Poster~         1, 3      standard (if GET_POSTER true)
Directed by         ~ctDirectors~      1      standard multiselect list
Flags            ~Flags~               multiselect list
Genres            ~mfGenre~         1      standard multiselect list
            OR   ~Genres~         2      multiselect list
            AND   ~Genre links~            memo (links to AllMovie Genre page)
MPAA rating         ~MPAA rating~            short text
Produced by         ~mfStudio~      1      standard short text
            OR   ~Produced by~      2      multiselect list
//Related            ~AllMovie Related~         memo (link to AllMovie Related tab)
Review            ~Review~               memo
Release date         ~Released~            short text (multiple dates)
//OR   Released         ~Released~            short text (more common single date)
Releases            ~mfFeatures~      1      standard memo (link to AllMovie Releases tab)
Released by          ~Released by~             short text

Run time            ~mfDuration~      1, 3      standard number (if GET_DURATION true)
            OR   ~Run time~      2      number (minutes)
Synopsis            ~mfDescription~         standard memo
                                 —use PVD preference to save in ANY available memo field
Sub-Genres         ~Sub-Genres~            multiselect list
            OR   ~Sub-Genre links~         memo (links to AllMovie page)
Title            ~mfTitle~         1      standard short text
            OR   ~Title~         2      short text
Year               ~mfYear~         1      standard number (from AllMovie 'Title (Year)' heading)
            OR   ~Year~         2      short string   
Updated            ~Updated~               long text
URL               ~mfURL~         1      standard memo
            OR   ~URL~         2      memo
            OR   ~AllMovie.com~         memo            
            
AllMovie.com tabs URL      ~AllMovie.com URL~    memo     (link to AllMovie Cast&Crew tab OR
                                        link to AllMovie Review tab OR
                                        link to AllMovie Awards tab OR
                                        link to AllMovie Releases tab OR
                                        link to AllMovie Related tab OR
                                        link to AllMovie Search Movie results OR
                                        link to Search on Amazon)   

Black means newly added, green means already added and remains, and red means that the links are blocked but not removed from the code in the script.
Title: Re: Allmovie.com https
Post by: Ivek23 on February 01, 2021, 09:27:13 am
AllMovie.com_new_HTTPS script
version 1.1.3.2


Quote
v 1.1.3.2      Ivek23: small corrections and added new pieces of code in the code for ParseMovie procedure per forum post:
         http://www.videodb.info/forum_en/index.php/topic,4109.msg21362.html#msg21362   

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: afrocuban on February 05, 2021, 01:39:30 am
Thanks Ivek. Does this mean, old proxo-script is abandoned?
Title: Re: Allmovie.com https
Post by: Ivek23 on March 05, 2021, 04:19:13 pm
A new updated AllMovie.com HTTPS script version will be available soon. Earlier, the AllMovie.com HTTPS (Related) script test was available here, and the cluster has the same download options as the IMDB_ [EN] [HTTPS] _ (Connections) script. It works with the help of the Proxomitron program. I'm wondering if you want to add this piece of code to the next updated AllMovie.com HTTPS script version.

However, some of the names here are different than with IMDB and this is not the year the film was made.


AllMovie.com HTTPS(Related) script is attached.
Title: Re: Allmovie.com https
Post by: afrocuban on November 26, 2021, 09:56:29 pm
Is it only me, or Allmovie.com doesn't work anymore?
Title: Re: Allmovie.com https
Post by: Ivek23 on November 27, 2021, 10:07:07 am
Is it only me, or Allmovie.com doesn't work anymore?

Yes, it's true. Thanks for posting the error. Minor changes were made to the source code of the page. It was necessary to fix parts of the code for Review URL, Cast URL, Awards URL, Releases URL, Related URL and for some other url links. The script now works properly again until any new changes to the page's source code.
Title: Re: Allmovie.com https
Post by: Ivek23 on November 27, 2021, 10:11:51 am
AllMovie.com_new_HTTPS script
version 1.1.3.3


Quote
v 1.1.3.3      Ivek23: small corrections in the code for ParseMovie procedure per forum post:
         http://www.videodb.info/forum_en/index.php/topic,4109.msg21530.html#msg21530

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: afrocuban on November 27, 2021, 11:26:19 am

That was really fast, thank you so much!
Title: Re: Allmovie.com https
Post by: Ivek23 on November 27, 2021, 08:13:51 pm

That was really fast, thank you so much!

You're welcome.
Title: Re: Allmovie.com https
Post by: afrocuban on December 07, 2021, 01:12:45 am
Hello Ivek. i know you are very busy at the moment, but just for your notice: AllMovie Synopsis: custom field looks like doesn't import anything, nor synopsis is imported to Description field. Is it only with me, or someone else can confirm too?
Title: Re: Allmovie.com https
Post by: Ivek23 on December 07, 2021, 03:20:54 pm
Hello Ivek. i know you are very busy at the moment, but just for your notice: AllMovie Synopsis: custom field looks like doesn't import anything, nor synopsis is imported to Description field. Is it only with me, or someone else can confirm too?

More things don't work anymore.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 07, 2021, 09:30:17 pm
Can anyone open the link below or it gets a record that this url link does not exist.

https://www.allmovie.com/movie/release/e4518

If so, the website should look something like this quote link below, which you need to copy the browser's url box to open the website.

Quote
data:text/html;charset=utf-8,%3Ctbody%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Ctr class%3D"main-data"%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Ctd class%3D"label"%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %EF%B7%90%3Cstrong%3E10 Things I Hate About You%3C%2Fstrong%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cdiv%3EWalt Disney Video%3C%2Fdiv%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ftd%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Ctd class%3D"year"%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 Oct 12%2C 1999%3Cbr%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 DVD%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ftd%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ftr%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Ctr class%3D"extra-data"%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Ctd colspan%3D"2"%3E%3Cdiv class%3D"expand loaded" data-id%3D"E%20%20%20%20 4518" style%3D"display%3A block%3B"%3E%3Cdiv class%3D"release_data"%3E%0A%20%20%20%20%20%20%20%20%20%20%20 %3Cdiv class%3D"release_left"%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cul%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3E%3Cspan class%3D"details-label"%3ELanguages%3C%2Fspan%3E%3Cspan class%3D"details-info"%3EEng%2C Fre%3C%2Fspan%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Fli%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3E%3Cspan class%3D"details-label"%3ESubtitles%3C%2Fspan%3E%3Cspan class%3D"details-info"%3EEng%3C%2Fspan%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Fli%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3E%3Cspan class%3D"details-label"%3EScreen%3C%2Fspan%3E%3Cspan class%3D"details-info"%3EWSE%3C%2Fspan%3E%3C%2Fli%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ful%3E%0A%20%20%20%20%20%20%20%20%20%20%20 %3Cul class%3D"right"%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3E%3Cspan class%3D"details-label"%3ESound Format%3C%2Fspan%3E%3Cspan class%3D"details-info"%3E5.1%2F2%3C%2Fspan%3E%3C%2Fli%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3E%3Cspan class%3D"details-label"%3EAspect Ratio%3C%2Fspan%3E%3Cspan class%3D"details-info"%3E1.85%3A1%3C%2Fspan%3E%3C%2Fli%3E%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ful%3E%0A%20%20%20%20%20%20%20 %3C%2Fdiv%3E%0A%20%20%20 %0A%20%20%20%20%20%20%20%20%20%20%20 %3Cdiv class%3D"details-cover-img"%3E%0A%20%20%20%20%20%20%20%20%20%20%20 %3Cimg src%3D"https%3A%2F%2Fcps-static.rovicorp.com%2F1%2Fadg%2Fcov246%2Fdrt000%2Ft036%2Ft03658ojiep.jpg%3Fpartner%3Dallrovi.com" alt%3D"10 Things I Hate About You"%3E%0A%20%20%20%20%20%20%20 %3C%2Fdiv%3E%0A%20%20%20%20%20%20%20 %3Cdiv class%3D"details-features"%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Ch4%3EFeatures%3C%2Fh4%3E%0A%20%20%20%20%20%20%20%20%20%20%20 %3Cul%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3ETheatrical trailer%3C%2Fli%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3EFrench-language track%3C%2Fli%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3EDolby Digital 5.1 audio%3C%2Fli%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3Cli%3EWidescreen %5B1.85%3A1%5D%3C%2Fli%3E%EF%B7%AF%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ful%3E%0A%20%20%20%20%20%20%20%20%20%20%20 %3C%2Fdiv%3E%0A%3C%2Fdiv%3E%0A%3C%2Fdiv%3E%3C%2Ftd%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ftr%3E%0A%20%20%20%20%20%20%20%20%20%20%20 %3C%2Ftbody%3E

I'm interested because then I could add some solution to the AllMovie.com HTTPS (DVDReleases) script.
Title: Re: Allmovie.com https
Post by: afrocuban on December 08, 2021, 08:32:58 pm



https://www.allmovie.com/movie/release/e4518


10 Things i like about PVD?
Title: Re: Allmovie.com https
Post by: Ivek23 on December 09, 2021, 08:53:26 am
Thanks. Ok, you got everything the same as I did, so in the AllMovie.com HTTPS (DVDReleases) script there will be no more of these links, just titles of movie releases.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 10, 2021, 04:58:53 pm
AllMovie.com_new_HTTPS script

A number of corrections have been made to parts of the code, and some new pieces of code have been added to download AggregateRating, votes, Distributed By and Release date information.

AggregateRating and votes are otherwise hidden information, visible only in a certain part of the source code. Distributed By is brand new to the script. Release date information can now also be transferred to the normal release date field.

However, in the table below, it is clearer what is now newly added.

Quote
AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
AMG ID            ~AMG ID~               short text
            AND   ~AMG ID1~               short text
            AND   
AMG "movie_id" ID      ~AMG Wayback Machine Archive~    memo (link to Search on Wayback Archive)

.
.
Characteristics      
               ~Moods~         2      multiselect list (from 'Characteristics')
            AND   ~Moods Links~            memo (hyperlinks to AllMovie mood pages
            AND   ~Mood links~            memo (hyperlinks to AllMovie mood pages
                                 —if available in web archive
               ~Keywords~      2      memo (from 'Characteristics')
               ~Attributes~      2      multiselect list (from 'Characteristics')
Themes from 'Characteristics'
               ~mfCategory~      1      standard multiselect list (if GET_THEMES true) (from 'Characteristics')
            OR   ~Themes~         2      multiselect list (from 'Characteristics')
            AND ~Themes links~      2      memo (hyperlinks to AllMovie themes pages)
.
.
MPAA rating         ~MPAA rating~            short text
AggregateRating         ~AllMovie_Rating~            rating
AllMovie Votes         ~AllMovie_Votes~         number

.
.
Release date         ~rdate~      1      standard short text   
            OR   ~Release date~            short text (multiple dates)

            OR   ~Released~            short text (multiple dates)
            AND   ~AllMovie ReleaseDate~            short text
//OR   Released         ~Released~            short text (more common single date)
.
.
Distributed By          ~Distributed By~             multiselect list
.
.
Synopsis            ~mfDescription~         standard memo
                                 —use PVD preference to save in ANY available memo field
            AND         
   ~AllMovie Synopsis:~      memo

.
.
Year               ~mfYear~         1      standard number (from AllMovie 'Title (Year)' heading)
            OR   ~Year~         2      short string   
            OR   ~Years1~         2      short text   
            AND   ~AllMovie ReleaseYear~         2      multiselect list   
            
Updated            ~Updated~               long text
            OR   ~UpdatedA~               long text   
            OR   ~Update~               short text      
      
URL               ~mfURL~         1      standard memo
            OR   ~URL~         2      memo
            OR   ~AllMovie.com~         memo      
            AND   ~AMG Wayback Machine Archive~         memo   
Title: Re: Allmovie.com https
Post by: Ivek23 on December 10, 2021, 05:07:12 pm
AllMovie.com_new_HTTPS script
version 1.1.4.0


Quote
v 1.1.4.0      Ivek23: fixed a lot of errors and added new pieces of code in the code per forum post:
         http://www.videodb.info/forum_en/index.php/topic,4109.msg21591.html#msg21591

And another novelty is the new CHANGE LOG section at the end of the script and at the beginning only for the latest AllMovie.com HTTPS script version.

New version of AllMovie.com_new_HTTPS script  is attached.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 10, 2021, 08:13:25 pm
AllMovie.com_new_HTTPS_a script

In addition to the above, I've added some new custom code snippets and fields to the AllMovie.com HTTPS_a script.

In Moods there are now even more info links to the web archive of stored information. New information download for Related Movies list from AllMovie Overview tab. A full Cast & Crew list has also been added, which is without url links to web pages.

However, in the table below, it is clearer what is now newly added.

Quote
AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
Cast   &Crew         ~Cast  -  Crew~               memo
Directors         ~Directors~               memo

.
.
            AND   ~Mood-links web archive1~      memo (hyperlinks to AllMovie mood pages
                                 —if available in web archive
            AND   ~Mood-links web archive1~      memo (hyperlinks to AllMovie mood pages
                                 —if available in web archive
            
            AND   ~Mood-webarchive~            memo (hyperlinks to AllMovie mood pages
                                 —if available in web archive
            
            AND   ~Mood-webarchive2~         memo (hyperlinks to AllMovie mood pages
                                 —if available in web archive

.
.
Related Movies      ~Related Movies~         memo (Related Movies list to AllMovie Overview tab)
Title: Re: Allmovie.com https
Post by: Ivek23 on December 10, 2021, 08:16:45 pm
AllMovie.com_new_HTTPS_a script
version 1.1.4.0


Quote
v 1.1.4.0      Ivek23: fixed a lot of errors and added new pieces of code in the code per forum post:
         http://www.videodb.info/forum_en/index.php/topic,4109.msg21591.html#msg21591

AllMovie.com_new_HTTPS_a script  is attached.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 12, 2021, 03:31:00 pm
Here is the AllMovie.com HTTPS (Simple) script, which is used to search for results and download url links to AllMovie web pages and to saved AllMovie web pages on Wayback Machine Archive servers, as many of them are stored there in their archives.

List of custom fields that are in the script.


Quote
AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
Amazon            ~Amazon~               memo (link to Search on Amazon)
Awards            ~AllMovie Awards~         memo (link to AllMovie Awards tab)
Related            ~AllMovie Related~      memo (link to AllMovie Related tab)
Releases            ~Feature~            memo (link to AllMovie Releases tab)
            AND   ~AllMovie DVD Releases~   memo (link to AllMovie Releases tab)
Title            ~mfTitle~         1      standard short text
            OR   ~Title~         2      short text or long text
            AND   ~Origtitle~         2      long text
Updated            ~Updated~               long text
            OR   ~UpdatedA~               long text   
            OR   ~Update~               short text            
URL               ~mfURL~         1      standard memo
            OR   ~URL~         2      memo
            OR   ~AllMovie.com~         memo      
            AND   ~AMG Wayback Machine Archive0~         memo      
            AND   ~AMG Wayback Machine Archive1~         memo
            AND   ~AMG Wayback Machine Archive2~         memo            
Search Movie results   ~Search Movie results~   memo (link to Search on AllMovie)
AllMovie.com tabs URL      ~AllMovie.com URL~(~ARL~)    memo     (link to AllMovie Cast&Crew tab OR
                                        link to AllMovie Review tab OR
                                        link to AllMovie Awards tab OR
                                        link to AllMovie Releases tab OR
                                        link to AllMovie Related tab OR
                                        link to AllMovie Search Movie results OR
                                        link to Search on Amazon)

Here is also a list of custom fields that are added with the check box option.

Quote
//Custom field names to use
//   IMPORTANCE_FIELD      = 'High Historical Importance';
//   ARTQUALITY_FIELD      = 'High Artistic Quality';
//   ARTLOWQUALITY_FIELD   = 'Low Artistic Quality';
//   LOWPRODUCTION_FIELD   = 'Low Production Values';
//   LOWBUDGET_FIELD      = 'Low Budget';
//   HIGHBUDGET_FIELD      = 'High Budget';
//   HIGHPRODUCTION_FIELD   = 'High Production Values';
   CULT_FIELD         = 'Cult Film';
//   SLEEPER_FIELD      = 'Sleeper';   
   AWARDS_FIELD         = 'All Awards tab';
   RELEASES_FIELD       = 'DVD Releases';
   RELATED_FIELD      = 'Related tab';
   HTTPRELATED_FIELD      = 'Related HTTP/503';
   NORELATED_FIELD      = 'No Related Movies';

AllMovie.com HTTPS (Simple) script  is attached.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 14, 2021, 08:50:02 am
Here is the AllMovie.com HTTPS(DVDReleases) script, which downloads dvd information and also to saved AllMovie DVD web pages on Wayback Machine Archive servers, as many of them are stored there in their archives.

List of custom fields that are in the script.


Quote
AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
Category.DVD         ~Category.DVD~            multiselect list
Category - DVD      ~Category - DVD~            multiselect list
Category-DVD1      ~Category-DVD1~            multiselect list   
Category-DVD2      ~Category-DVD2~            multiselect list
Allmovie DVD1      ~Allmovie DVD1~            memo
Allmovie DVDweb      ~Allmovie DVDweb~            memo
Allmovie DVDweb1      ~Allmovie DVDweb1~         memo
URL           ~AMG Wayback Machine Archive3~      memo   

AllMovie.com HTTPS(DVDReleases) script  is attached.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 14, 2021, 08:54:39 am
Here is the AllMovie.com HTTPS(Related) script, which downloads related url links and information to AllMovie Related web pages.

List of custom fields that are in the script.


Quote
AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
RelatedMovies      ~RelatedMovies~            memo
Related Movies      ~Related Movies~            memo

AllMovie.com HTTPS(Related) script  is attached.
Title: Re: Allmovie.com https
Post by: Ivek23 on December 14, 2021, 08:58:23 am
Here is the AllMovie.com HTTPS(Awards) script, which transfers the list of awards information to AllMovie Awards web pages.

List of custom fields that are in the script.


Quote
AwardsList           ~AwardsList~            memo
AwardsList1           ~AwardsList1~            memo

AllMovie.com HTTPS(Awards) script  is attached.
Title: Re: Allmovie.com https
Post by: afrocuban on February 09, 2022, 03:07:28 am
Thank you Ivek for a lot of work! Can you please explain if some of these script is cumulative, or we have to have them all and run them all separately in order to get maximu data? Thank youin advance.
Title: Re: Allmovie.com https
Post by: Ivek23 on February 10, 2022, 09:08:22 am
Thank you Ivek for a lot of work! Can you please explain if some of these script is cumulative, or we have to have them all and run them all separately in order to get maximu data? Thank youin advance.

AllMovie.com_new_HTTPS script and AllMovie.com_new_HTTPS_a script are for normal use. The AllMovie.com HTTPS (Simple) script is also for this purpose or to obtain a url address when searching for results.

AllMovie.com HTTPS (DVDReleases) script, AllMovie.com HTTPS (Related) script and AllMovie.com HTTPS (Awards) script are secondary scripts that you can use according to your wishes if you want to have any of this information in the PVD database.

You can use them alone or make a batch file in which you enter certain names of scripts with which you want to transfer certain information. You run the batch file once for all scripts, so you don't have to run each script individually.
Title: Re: Allmovie.com https
Post by: afrocuban on February 10, 2022, 02:57:29 pm
Thank you for clear explanation!
Title: Re: Allmovie.com https
Post by: Ivek23 on February 10, 2022, 06:18:16 pm
Thank you for clear explanation!

Welcome.
Title: Re: Allmovie.com https
Post by: Ivek23 on November 22, 2023, 02:04:27 pm
In a few days, a new AllMovie.com HTTPS script version will be uploaded, which will work in PVD MOD versions of the program without the Proxomitron program. It is currently being tested for possible bugs.
Title: Re: Allmovie.com https
Post by: Ivek23 on November 27, 2023, 06:36:33 pm
Here is the new AllMovie.com HTTPS script beta for PVD MOD versions. It works the same way as IMDB_[EN][HTTPS] script for PVD MOD versions.

If you have such a url http://www.allmovie.com/movie/10-things-i-hate-about-you-v177526 downloads data from AllMovie Overview page only and adds such
http://www.allmovie.com/movie/10-things-i-hate-about-you-vm1127949 new url address. In the case of novice addresses in the database, a new url address is added and all the data that is there and can be transferred by the script is transferred, if it is also primarily enabled there.

Here are some settings you can change manually.
Quote
  GET_ACTORS   = True;   //Set to False to ensure ~ctActors~ not added even if 'Overwrite fields' setting allows
  GET_DURATION   = True;   //Set to False to ensure ~mfDuration~ not set even if 'Overwrite fields' setting allows
  //Note the program will overwrite this with the actual media duration in any case   
  GET_POSTER   = True;   //Set to False if posters not wanted (or to handle bad image URL causing HTTP 404 error)   
  //GET_POSTER   = False; //Set to False if posters not wanted (or to handle bad image URL causing HTTP 404 error)
  GET_RATING   = True;   //Set to False to ensure ~mfRating~ not set even if 'Overwrite setting' fields setting allows 
  GET_THEMES      = True;   //Set to False to ensure ~mfCategory~ not added even if 'Overwrite fields' setting allows   
//  GET_FEATURES  = True ; //Download Url Releases provider page for retreive the Releases info
  GET_FEATURES  = False ; //Download Url Releases provider page for retreive the Releases info
  GET_URLID      = True;    //Set to True or False if URLID added or not added in Allmovie DVD custom fields   
  DEBUG        = True; 
  GET_FULL_REVIEW  = True ;  //Download Review provider page for retreive the Summaries info. Otherwise only the info of the principal movie page 
  //GET_FULL_REVIEW  = False ;  //Download Review provider page for retreive the Summaries info. Otherwise only the info of the principal movie page   
  PEOPLE_LIMIT  = 15;    //Limit of number of actors (cast) or of credits (crew) retrieved 
  GET_FULL_CREDIT  = True ;  //Download Cast or Credit provider page for retreive the info. Otherwise only the info of the principal movie page.
//  GET_FULL_AWARDS  = True ;  //Download Awards provider page for retreive the info. Otherwise doesn't do nothingh because no info in the principal movie page.
  GET_FULL_AWARDS  = False ;  //Download Awards provider page for retreive the info. Otherwise doesn't do nothingh because no info in the principal movie page.
//  GET_FULL_RELEASED  = True ;  //Download Releases provider page for retreive the Releases info.
  GET_FULL_RELEASED  = False ;  //Download Releases provider page for retreive the Releases info.
//  GET_FULL_RELATED  = True ;  //Download Related provider page for retreive the Connection (Related)  info. Otherwise no info of the Connections provider page.
  GET_FULL_RELATED  = False ;  //Download Related provider page for retreive the Connection (Related)  info. Otherwise no info of the Connections provider page.
  CONNECT_LIMIT  = 12; 
//  GET_CONNECT      = True ;    //Set to False if Connection (Related) movies not added (wanted) even if 'Overwrite fields' setting allows   
  GET_CONNECT      = False ;    //Set to False if Connection (Related) movies not added (wanted) even if 'Overwrite fields' setting allows   
  GET_CONNECT_FULL   = True ;  //Download Related provider page for retreive the Connection (Related) wanted to Download full Related info.
//  GET_CONNECT_FULL   = False ;  //Download Related provider page for retreive the Connection (Related) not wanted to Download full Related info.
 
//  GET_FULL_CONNECT   = True ;    //Set to False if Connection (Related) movies not added (wanted) even if 'Overwrite fields' setting allows   
  GET_FULL_CONNECT   = False;    //Set to False if Connection (Related) movies not added (wanted) even if 'Overwrite fields' setting allows
  GET_FULL__CONNECT   = True ;    //Set to False if Connection (Related) movies not added (wanted) even if 'Overwrite fields' setting allows 
//  GET_FULL__CONNECT   = False;    //Set to False if Connection (Related) movies not added (wanted) even if 'Overwrite fields' setting allows 

Here is also a list of normal fields and custom fields that you can add to the database.
Quote
FIELD USE:

Field names in comments are enclosed in "~" so they are easier to find in the script.
Use with your editor's search function to find applicable code sections.

AllMovie data:         PVD field:      FN:      Type/Comments:
--------------         ---------      --      -------------
Actors            ~ctActors~      1, 3      credits (if GET_ACTORS true)
Alternate title      ~mfAka~               memo
            OR   ~Alternate title~         memo
AllMovie rating         ~mfRating~      1, 3      'Additional rating' named 'AllMovie.new' (if GET_RATING true)
            OR   ~AllMovie rating~      2      rating
//Amazon            ~Amazon~               memo (link to Search on Amazon)
AMG ID            ~AMG ID~               short text
            AND   ~AMG ID1~            long text
            AND   
AMG "movie_id" ID      ~AMG Wayback Machine Archive~    memo (link to Search on Wayback Archive)
            OR   ~AMG Wayback Machine Archive1~    memo (link to Search on Wayback Archive)
//Awards            ~AllMovie Awards~            memo (link to AllMovie Awards tab)
Cast               ~Cast~               memo
Crew               ~Crew~               memo
Category            ~Category.AllMovie~         multiselect list
                                 —not to be confused with ~mfCategory~ (used for 'Themes')
Characteristics      
               ~Moods~         2      multiselect list (from 'Characteristics')
            AND   ~Mood links~            memo (hyperlinks to AllMovie mood pages  —if available in web archive
            AND   ~Mood-links web archive~      memo (hyperlinks to AllMovie mood pages  —if available in web archive
            OR   ~Mood-links web archive1~      memo (hyperlinks to AllMovie mood pages  —if available in web archive
            AND   ~Mood-webarchive~      memo (hyperlinks to AllMovie mood pages  —if available in web archive            
            OR   ~Mood-webarchive2~      memo (hyperlinks to AllMovie mood pages  —if available in web archive   
               ~mfTags~               standard memo
               ~Keywords~      2      memo (from 'Characteristics')
               ~Attributes~      2      multiselect list (from 'Characteristics')
Themes from 'Characteristics'
               ~mfCategory~      1      standard multiselect list (if GET_THEMES true) (from 'Characteristics')
            OR   ~Themes~         2      multiselect list (from 'Characteristics')
            AND ~Themes links~      2      memo (hyperlinks to AllMovie themes pages)
Country            ~mfCountry~      1      standard multiselect list
            OR   ~Country~         2      multiselect list
Cover-art            ~Poster~         1, 3      standard (if GET_POSTER true)
Directed by         ~ctDirectors~      1      standard multiselect list
Flags            ~Flags~               multiselect list
Genres            ~mfGenre~         1      standard multiselect list
            OR   ~Genres~         2      multiselect list
            OR   ~AGenres~      2          multiselect list            
            AND   ~Genre links~            memo (links to AllMovie Genre page)
MPAA rating         ~MPAA rating~            short text, multiselect list
            OR   ~AllMovie_Rating~            short text
Produced by         ~mfStudio~      1      standard short text
            OR   ~Produced by~      2      multiselect list
//Related            ~AllMovie Related~         memo (link to AllMovie Related tab)
Review            ~Review~               memo
Release date          ~ rdate ~      1      standard short text
               ~Released~            short text (multiple dates)
            OR   ~Release date~           long text (multiple dates)               
            OR   ~AllMovieReleaseDate~      short text
               ~AllMovie ReleaseYear~      short text
//OR   Released         ~Released~            short text (more common single date)
Releases            ~mfFeatures~      1      standard memo (link to AllMovie Releases tab)
Released by          ~Released by~             short text

Run time            ~mfDuration~      1, 3      standard number (if GET_DURATION true)
            OR   ~Run time~      2      number (minutes)
Synopsis            ~mfDescription~         standard memo
                                 —use PVD preference to save in ANY available memo field
            OR   ~Synopsis~            memo
Sub-Genres         ~Sub-Genres~            multiselect list
            OR   ~Sub-Genre links~         memo (links to AllMovie page)
Title            ~mfTitle~         1      standard short text
            OR   ~Title~         2      (short text) memo
            OR   ~Title1~         2      memo            
Year               ~mfYear~         1      standard number (from AllMovie 'Title (Year)' heading)
            OR   ~Year~         2      short string   
            OR   ~Years~         2      short text            
Updated            ~Updated~               long text
            OR   ~AllUpdated~               long text
URL               ~mfURL~         1      standard memo
            OR   ~URL~         2      memo
            OR   ~AllMovie.com~         memo   
            OR   ~AllMovieURL~         memo   
            OR   ~AllMovie URL~         memo               
            
AllMovie.com tabs URL      ~AllMovie.com URL~    memo     (link to AllMovie Cast&Crew tab OR link to AllMovie Review tab OR link to AllMovie Awards tab OR link to AllMovie Releases tab OR link to AllMovie Related tab OR link to AllMovie Search Movie results OR link to Search on Amazon)   

New fields

AMovietype         ~AMovietype~            multiselect list      
OrigTitle         ~mfOrigTitle~         1      standard long text
            OR   ~OrigTitle~         2      long text
AllMovies         ~AllMovies~            check box            
All Awards tab      ~All Awards tab~         check box
            AND   ~AwardsList~         memo
            OR   ~AwardsList1~         memo
DVD Releases         ~DVD Releases~         check box
            AND   ~Allmovie DVD1~         memo
Related tab         ~Related tab~         check box
Distributed By      ~Distributed By~         short text
Related Movies(Overview)      ~AddConnection~
               ~Related Movies         memo (Related Movies list to AllMovie Overview tab)
            AND   
Related Movies(Related tab)
               ~RelatedMovies~         multiselect list (Related Movies Category list to AllMovie Related tab)          
            OR   ~Related-Movies~           memo    (full list) (Related Movies list to AllMovie Related tab)                
            
~MID ID:~ and ~NUM ID:~
               ~MID ID:~            number (Movie MID ID)   
               ~NUM ID:~            number (Movie NUM ID)   

There are also links to pages on which similar lists have already been described.

http://www.videodb.info/forum_en/index.php/topic,4109.msg21362.html#msg21362

http://www.videodb.info/forum_en/index.php/topic,4109.msg21591.html#msg21591

http://www.videodb.info/forum_en/index.php/topic,4109.msg21593.html#msg21593

http://www.videodb.info/forum_en/index.php/topic,4109.msg21596.html#msg21596

http://www.videodb.info/forum_en/index.php/topic,4109.msg21598.html#msg21598

http://www.videodb.info/forum_en/index.php/topic,4109.msg21599.html#msg21599

http://www.videodb.info/forum_en/index.php/topic,4109.msg21600.html#msg21600


AllMovie.com[EN][HTTPS]_ b is attached.
Title: Re: Allmovie.com https
Post by: afrocuban on December 03, 2023, 12:52:10 am
Here is the new AllMovie.com HTTPS script beta for PVD MOD versions. It works the same way as IMDB_[EN][HTTPS] script for PVD MOD versions.


I can confirm that it works as intended and without Proxo. Thank you so much.

I must say though that I miss how fast previous script was since now the new one is significantly slower, especially considering pop up windows stealing focus now with this script as well as IMDb script does. I just used all scripts via Proxo as a .batch plugin (AM, FA & IMDb).


I'll probably try to experiment with Synopsis piece of code trying to implement it into old one if it's even possible...
Title: Re: Allmovie.com https
Post by: Ivek23 on December 03, 2023, 09:55:49 am
Yes, this is a well-known issue and a problem with scripts (which cannot be fixed) that are made for PVD MOD versions of the programs. Here it takes longer because the curl program downloads each web page individually in its entirety (for example, first the search results, then the basic pages of a particular movie, then the pages with actors and so on). The more pages there are, the longer it takes to download all the information. For the AllMovie websites, it might be possible to make a special script for the Actors or Review pages, in which case the information transfer would be a little faster.
Title: Re: Allmovie.com https
Post by: afrocuban on December 03, 2023, 04:13:54 pm
Yes, this is a well-known issue and a problem with scripts (which cannot be fixed) that are made for PVD MOD versions of the programs. Here it takes longer because the curl program downloads each web page individually in its entirety (for example, first the search results, then the basic pages of a particular movie, then the pages with actors and so on). The more pages there are, the longer it takes to download all the information. For the AllMovie websites, it might be possible to make a special script for the Actors or Review pages, in which case the information transfer would be a little faster.


Thank you immensely for your time Ivek. If I'm asked, I think it's not worthy to invest time in making the script what, 2 secs faster?

We are grateful for whatever makes PVD working one way or another. As I said. I will use PVD even when no script would work.