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 ... 11 12 13 14 15 [16] 17 18 19 20 21 ... 23
301
Support / Re: Can I avoid the links?
« on: August 09, 2016, 11:30:17 pm »
Hello Peter,

I'm happy that one more user discovered how superior PVD is. Unfortunately, for now, PVD is abandoned by his creator. Ivek23 is the only person/user that can help so far to maintain certain level of usability. Such a shame for such a great piece of software.

Kind regards

302
Support / Re: Poster Import errors
« on: July 01, 2016, 06:54:05 am »
Thank you so much Ivek!

303
Support / Re: Poster Import errors
« on: June 29, 2016, 08:44:36 pm »
Quote
Use kinopoisk script to download posters

I'm not sure on which file you meant here? What's the name of the file?

Do I have to put kinopoisk_poster.cfg and kinopoisk.cfg file in Scripts folder, and to delete kinopoisk_poster.psf files? I did this and nothing happens (except status "Downloading from http://www.kinopoisk.ru/...")

Thanks!

304
Support / Re: Poster Import errors
« on: June 27, 2016, 04:51:10 pm »
Thank you Ivek for your further help. I assumed that I had to put .cfg files to Script folder. Now, PVD doesn't crash, but nothing is imported. I just see status "downloading from http://www.kinopoisk.ru/..." and nothing happens after status disappears.

Also, I didn't found any line of the code you posted in kinopoisk_poster.cfg file. No "pgPosters :=Enabled", no "optPosters :=Enabled". None of these lines are present in file?

Any tip? Thank you in advance

305
Support / Re: Poster Import errors
« on: June 26, 2016, 06:15:35 pm »
Thanks Ivek,

Since I never used any poster importing, this is all new to me, so I don't understand where to insert your piece of code, and what for to use .cfg files you uploaded, and in which folder I should put them. May I kindly ask for additional help, please?

306
Support / Re: Poster Import errors
« on: June 25, 2016, 12:38:41 pm »
Does kinopoisk.ru poster import works? I receive regular updates of the script but never succedded to import any poster. PVD crashes when running the script?

Thank you in advance

307
Feature Suggestions / Re: Suggestion for Ivek23
« on: June 10, 2016, 07:13:12 pm »
Well, https case with Rottent Tomatoes, as well. :(

308
Talk / Re: Videodb.info news
« on: May 09, 2016, 09:33:00 pm »
Great!!!

309
Support / Re: IMDB Error
« on: April 16, 2016, 08:18:09 pm »
Oh. silly me! Thank you, Ivek and excuse me for being forgetfull. Too much scripts to maintain with too much custom fields :)

So, can you please confirm that there is an issue with awards, definitely?

Kind regards

310
Support / Re: IMDB Error
« on: April 16, 2016, 06:34:58 pm »
Thank you, Ivek


But I meant on that specific script. I can't import Tech specs and awards with it?

311
Support / Re: IMDB Error
« on: April 16, 2016, 01:13:08 pm »
Hello,

Is it just with me, or Tech specs and Awards don't work?

Best regards

312
Talk / Re: Videodb.info news
« on: March 06, 2016, 05:16:44 pm »


        Ruben Gonzales <afrocuban01@yahoo.com>
        Today at 5:14 PM
        To: nostradamus68@gmx.net

Nostra,

"... I would like to kindly ask you something. Please give PVD chance to survive. Give the code to community, or whatever is most suitable for you. Definitely there is no software out there that is more funcional than your phenomenal PVD.

Gratefuly,
Afrocuban

313
Talk / Re: Videodb.info news
« on: March 06, 2016, 05:07:49 pm »
Nostra,

Please give PVD chance to survive. Give the code to community. Definitely there is no software out there that is more funcional than your phenomenal PVD.

314
Feature Suggestions / Re: Suggestion for Ivek23
« on: October 28, 2015, 06:51:05 pm »
Hello Ivek,
What I see now, the script searches by url if there's any, and if there's no url then by: 1. Title and if there's no title, or script cannot find in on RT, it searches by 2. origtitle

One more possible use of it arrised. Is it possible to set this script to search for a movie details by this order: 1. Custom title; 2. Title; 3. origtitle.

So, if theres no Custom title, it would search by Title, and if there's no results by these 2, to search by origtitle?

Thanks in advance! :)


315
Feature Suggestions / Re: Suggestion for Ivek23
« on: October 27, 2015, 08:04:23 pm »
Ivek, you're the best!  :)

And if someone wants only title without a year, then this:
Code: [Select]
EndPos := PosFrom('</span></h1>', HTML, curPos)-6;

316
Feature Suggestions / Re: Suggestion for Ivek23
« on: October 27, 2015, 04:28:56 pm »
Ok, I got it!

One (right) bracket missing, and one sufficient "end". This was what I asked for

Code: [Select]
procedure ParseMovie(MovieURL : String; HTML : String);
var
curPos, endPos : Integer;
Date, Title, URL, Month, Month1, Months, TmpStr, TmpStr0, TmpStr1,

TmpStr2  : String;
DateParts : TWideArray;
begin

//Date ~Updated~ (choose simple or verbose version)
Date := DateToStr(CurrentDateTime);
if Date <> '' then
  begin
    ExplodeString(Date, DateParts, '-');
Date := DateParts[2] +'.'+ DateParts[1] +'.'+ DateParts[0];
AddCustomFieldValueByName('RTUpdated', Date + ' at ' + TimeToStr

(CurrentDateTime) + ' • ' + RATING_NAME + ' ' + SCRIPT_VERSION); //

Annoying
  end else
    LogMessage('date not found');


//Get ~mfURL~ or ~RT Url~
endPos := Pos('" rel="canonical" itemprop="url"/>', HTML);
if endPos > 0 then begin
curPos := PrevPos('</title> <link href="', HTML, endPos);
AddFieldValue(mfURL, Copy(HTML, curPos + 21, endPos - curPos - 21));
end else
AddFieldValue(mfURL, MovieURL);
AddCustomFieldValueByName('Rottentomatoes.com', '<link url="' + MovieURL +

'">Rottentomatoes.com</link>');


////// ---- ~Movie~ ---- //////

//~Title~
curPos := Pos('" itemprop="name"> ', HTML) + Length('" itemprop="name"> ');
EndPos := PosFrom('</span></h1>', HTML, curPos);
    TmpStr := RemoveTags(Trim(Copy(HTML, curPos, endPos - curPos)), false);
TmpStr := StringReplace(TmpStr, '                 ', ' ', True, True, False);
if TmpStr <> '' then
AddCustomFieldValueByName('Title',TmpStr);

Once again, thanks a lot, Ivek!

317
Feature Suggestions / Re: Suggestion for Ivek23
« on: October 27, 2015, 03:47:19 pm »
Thanks Ivek, for the quick response.

Whe I paste this code, PVD doesn't recognize the script. The part about "Updated" is ok, but, the part about "Title" isn't. When I delete only part of code about "Title" (////// ---- ~Movie~ ---- //////

//~Title~...), and leave the rest as you wrote ("Updated").

PVD recognize the script.

Thanks a lot!

318
Feature Suggestions / Re: Suggestion for Ivek23
« on: October 26, 2015, 11:29:36 pm »
Hello Ivek,

Is it possible with this script to import Title to a Custom Field also named "Title"? What piece of code it would be? Thanks in advance.

I have already added this piece of code
AddCustomFieldValueByName('Rottentomatoes.com', '<link url="' + MovieURL + '">Rottentomatoes.com</link>');
:
Code: [Select]
//Get ~mfURL~ or ~RT Url~
endPos := Pos('" rel="canonical" itemprop="url"/>', HTML);
if endPos > 0 then begin
curPos := PrevPos('</title> <link href="', HTML, endPos);
AddFieldValue(mfURL, Copy(HTML, curPos + 21, endPos - curPos - 21));
end else
AddFieldValue(mfURL, MovieURL);
AddCustomFieldValueByName('Rottentomatoes.com', '<link url="' + MovieURL + '">Rottentomatoes.com</link>');

319
This is to relate to an update to this forum topic, starting this message, if someone is interested in with it.

320
Scripts and Templates / Re: AllMovie.com_new movie script
« on: October 17, 2015, 10:18:55 am »
Ivek,

Great tip and work as usual! Thank you so much for being there for us!  :D

Wish you all the best.

Note: This is to relate to this forum topic, if someone is interested in with it.

Pages: 1 ... 11 12 13 14 15 [16] 17 18 19 20 21 ... 23
anything