Show Posts

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


Messages - afrocuban

Pages: [1] 2 3 4 5 6 ... 23
1
Support / Re: Episodes TV Series Problem
« on: February 29, 2024, 08:39:37 pm »
Thank you, I wasn't expected you would engage in single user's preferences.

2
Support / Re: IMDb [EN][HTTPS](series) issues and support
« on: February 29, 2024, 08:27:39 pm »
Dear Ivek,

I admit I have big wishes, but with most positive motives for PVD, not to be selfish. I apologize if I sounded ungrateful. I hope after 14 years I am not recognized as such, but will do anything to assure anyone I am not.

Most honestly, any update I consider a miracle, nothing less!

Meaning - you are a Miracle-man, and I mean it, and I know who ever still use PVD think the same. Whenever you stop, you already gave us a dozens of times more than what was real, and expected and as for me, I will never forget what you did for us.

Best regards

3
Support / Re: IMDb [EN][HTTPS](series) issues and support
« on: February 29, 2024, 02:16:48 am »
Hello and thank you a ton Ivek.

Here's the update: Imdb_Series-Year now works, plot is imported, but number of episodes and seasons, as well as custom field synopsis don't work.


Interestingly, Imdb_Movies_2b imports synopsis.

4
Support / Re: Episodes TV Series Problem
« on: February 29, 2024, 02:06:47 am »
Thank you a ton Ivek.

Just a minor update: script now imports SxEx, instead of Air Date. Other fields work at first try.

5
Support / Re: IMDb [EN][HTTPS](series) issues and support
« on: February 26, 2024, 07:40:01 pm »
Thank you!

6
Support / Re: IMDb [EN][HTTPS](series) issues and support
« on: February 25, 2024, 09:20:35 pm »
Thank you Ivek. Obviously, something is wrong with my PVD config. The only thing I get now comparing to outdated series script is the Series year. No seasons/episodes, no plot no Synopsis...

It looks like even this doesn't work anymore:

Code: [Select]
if Pos('TV Series',ItemValue)>0 then yearsValue1:=yearsValue1+'TV Series ';
if yearsValue1 <> '' then LogMessage('      Get result yearsValue1:'+yearsValue1);

So instead of, for example TV Series (2018-2023), now I'm getting just 2018-2023

7
Support / Re: IMDb [EN][HTTPS](series) issues and support
« on: February 21, 2024, 11:17:31 pm »
Of course, thank you so much!

8
Support / Re: IMDb [EN][HTTPS](series) issues and support
« on: February 21, 2024, 05:49:46 pm »
Thank you, Ivek.

Is there any field that now outdated IMDb series and episodes scripts import that IMDB_[EN][HTTPS]_TEST_2b.psf does not, when updating existing record only, not when importing series for the first time?


Or, to rephrase it: which fields don't work anymore in outdated IMDb series and episodes scripts?

9
Support / Re: IMDb [EN][HTTPS](series) issues and support
« on: February 17, 2024, 04:55:23 am »
Hello Ivek. Since IMDB_Series-year custom field import doesn't work for me anymore, how can I disable overwriting older records of this fields from the times it worked.


Now, while earlier it was imported for example as TV Series (1999–2013) when I import now for that record, it gets overwritten with TV Series ().

How to avoid this, how to disable importing this field in order to preserve at least older records.

10
Talk / AI and PVD
« on: February 07, 2024, 10:56:00 pm »
I admit - I am terrified how wrong it will go with AI at the beginning and it already started. So, I guess we need to think how to minimize the damage starting today, to protect ourselves and our families the way people hide themselves in the basement under tornado strike.


But, I thought maybe something positive can come out of all of this. AI will be very soon able to reverse engineer PVD. Do you agree?

11
Support / Re: Metascore
« on: January 09, 2024, 07:41:39 pm »
Wow! How great you noticed it was about Regional format of Windows, that is decimal! Splendid, thanks! It works flawlessly. I have changed original script, so you don't need to upload it.

12
Support / Re: Metascore
« on: January 09, 2024, 01:27:21 am »
Thank you Ivek, but that didn't help, unfortunately. It was already checked. Re-did everything but no luck. A great mystery...

13
Support / Re: Metascore
« on: January 06, 2024, 12:23:31 am »
Thanks! This is what is weird.

For example movie
https://www.imdb.com/title/tt5827916/

For this movie, metascore is 7.8 (that is 78)

When run in debug mode this is what I found in a log file for metascore part:


Code: [Select]
(1/6/2024 12:14:13 AM)       Get result Tv Mode01:
2019, PG-13, 2h 54m||


(1/6/2024 12:14:13 AM)       Get result Metascore 0:78</||
(1/6/2024 12:14:13 AM)       Get result Metascore (CF~Metascore~):7,8||
(1/6/2024 12:14:13 AM)


(1/6/2024 12:14:13 AM)


(1/6/2024 12:14:13 AM)       AVOIDED ALWAYS1: Get result "Plot_summary" as ~comment~:

So, it finds it properly, but doesn't parse it to base? Any clue now?

14
Support / Re: Metascore
« on: January 04, 2024, 11:01:56 pm »
Custom field, here:
Code: [Select]
//Get ~Metascore~   
    EndPos:=Pos('</span></span><span class="label"><span class="metacritic-score-label">Metascore</span></span></span></a></li></ul>',HTML);
    if EndPos>0 then begin   
      curPos:=PrevPos('">',HTML,EndPos)+Length('">');
        EndPos:=PosFrom('</span></span><span class="label"><span class="metacritic-score-label">Metascore</span></span></span></a></li></ul>',HTML,curPos)+2;   
        //ItemValue:=RemoveTags(Copy(HTML,curPos,endPos-curPos),false);
      ItemValue:=Copy(HTML,curPos,endPos-curPos);
      LogMessage('      Get result Metascore 0:'+ItemValue+'||');   
        ItemValue:=StringReplace(ItemValue,'0</',',0',True,False,True);
        ItemValue:=StringReplace(ItemValue,'1</',',1',True,False,True);
        ItemValue:=StringReplace(ItemValue,'2</',',2',True,False,True);
        ItemValue:=StringReplace(ItemValue,'3</',',3',True,False,True);
        ItemValue:=StringReplace(ItemValue,'4</',',4',True,False,True);
        ItemValue:=StringReplace(ItemValue,'5</',',5',True,False,True);
        ItemValue:=StringReplace(ItemValue,'6</',',6',True,False,True);
        ItemValue:=StringReplace(ItemValue,'7</',',7',True,False,True);
        ItemValue:=StringReplace(ItemValue,'8</',',8',True,False,True);
        ItemValue:=StringReplace(ItemValue,'9</',',9',True,False,True);
        //curPos:=Pos('var ue_t0=ue_t0',ItemValue);                               //WEB_SPECIFIC.
        //If 0<curPos then ItemValue:=Copy(ItemValue,0,curPos-1);   
        if ItemValue <> '' then AddCustomFieldValueByName('Metascore',FloatToStr((StrToFloat(ItemValue) * 1)));
        if ItemValue <> '' then LogMessage('      Get result Metascore (CF~Metascore~):'+ItemValue+'||');     
    End;
   //(*     
      LogMessage(#13+'');

Thank you in advance.

15
Support / Re: Personal Video Database 1.0.2.7 MOD
« on: January 04, 2024, 10:59:39 pm »
Oh, thanks Ivek!. After so many years I totally forgot about the topic where is everything explained actually...

http://www.videodb.info/forum_en/index.php/topic,765.msg1291.html#msg1291

16
Support / Metascore
« on: January 04, 2024, 03:36:56 pm »
Hello Ivek. In a new _2b script. metascore import field doesn't work. But, more importantly, when updating older PVD movie entries where I had metascore imported from the times it worked, now when I update with _2b script, the field is overwritten with empty/zero value. How to prevent this please?

17
Support / Re: Personal Video Database 1.0.2.7 MOD
« on: January 04, 2024, 03:30:44 pm »
Thank you Ivek. It works great! Too bad batch plugins don't work in People view, so we could combine search and people data script at once. It's by unfinished design obviously.

18
Support / Skins
« on: December 23, 2023, 04:02:38 pm »
Here's my small contribution.


I used CG's Dark People skin and Dave C's gallery skin and combined them. I also rearranged some fields. Hopefully someone will find it useful.




19
Support / Re: IMDb
« on: December 23, 2023, 01:32:54 pm »


Thanks afrocuban, I made a bugfix to the script released a few posts earlier.
Now only if the urls are from IMDb are used for data retrieval.

Happy Holidays!


Thank you, NetworkShark and Ivek! Best wishes!


Just to let know NetworkShark, that his fix now works if there is one non-imdb link in it. But, if there are more than one links there (in my case, that would be AllMovie and FilmAffinity links), then it crashes PVD again.

Ivek's -b search script doesn't offer right result when multiple choices are, while -a search script offers the right movie among others.

Example:

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


So, generally it looks -a search script is the best to use in order not to miss the result for the movie we are looking for.

20
Other Topics / Re: At the end of 2023...
« on: December 23, 2023, 12:35:04 pm »
God bless you and your families.

Merry Christmas and a Happy New Year, dear friends!

Pages: [1] 2 3 4 5 6 ... 23
anything