Show Posts

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


Messages - Ivek23

Pages: 1 ... 101 102 103 104 105 [106] 107 108 109 110 111 ... 133
2101
Support / Re: IMDb plugin maintenance issues
« on: August 25, 2011, 11:40:03 am »
MPAA answer is here.

Edit:
For Imdb rating:
Please check Download of IMDB rating is broken and tell us if you're getting the new or old style IMDb web page.

2102
Feature Suggestions / Re: Suggestion for IMDB plugin
« on: August 25, 2011, 07:29:45 am »
I wonder, probably, other users of PVD, what it says Nostra on this interpretation.

2103
Support / Re: Amazon.com problem
« on: August 24, 2011, 04:08:16 pm »
Please check your log. It will show exactly what's happening. As I've already reported, there seems to be an issue with a redirection not consistently including the requested search. I have no idea whether anything can be do to the plugin to remedy such a problem.

Same as described here.

2104
Support / Re: Amazon.com problem
« on: August 24, 2011, 04:05:12 pm »
There are changes happening. I see the PVD web search when I search through Amazon.com for DVD UPC code.

Correction:
I see when using Web search in PVD, I'm looking for movie title on the Amazon.com web page, that after using a specific URL address to find 12-digit UPC code for DVD, which is a movie that I have a movie database.

2105
Support / Re: Amazon.com problem
« on: August 24, 2011, 10:15:39 am »
There are changes happening. I see the PVD web search when I search through Amazon.com for DVD UPC code.
Example for Bend Of The River movie.
Here we find the first correct address, in another case only in the second search finds the correct address, in some cases, movie title, which I'm looking for one, do not find it.

2106
Support / Re: Download of IMDB rating is broken
« on: August 24, 2011, 09:46:22 am »
Do you mean restore not re start.

The first restore, re-update with Imdb plugin, if there is no effect (irregular download data or no change data), then first restore and then re start PVD, then again re- update with Imdb plugin.
The result would be correct really correct data transfer.

2107
Support / Re: Download of IMDB rating is broken
« on: August 24, 2011, 06:08:37 am »
If Imdb plugin does not transfer data Imdb rating and IMDB votes then it is necessary to make re-start PVD, then it will almost certainly Imdb plugin transferred data for Imdb rating and IMDB votes, however, is or old or new style page.
So far, this one solution works, it is not necessary to remove imdbconf file and are not required re-make settings for Imdb plugin.

EDIT:
And another thing:
Before you close PVD, it is good to make a backup database, because as already noted above on the re-launch of PVD, there is still a possibility that Imdb plugin will not transfer data for rating and votes, then it needs to be done recovery backup copy, then he should Imdb plugin to do the transfer data for rating and votes.

2108
Support / Re: Download of IMDB rating is broken
« on: August 23, 2011, 06:57:04 pm »
Family Matters (TV Series 1989–1998) already has the new style, Imdb rating and Imdb votes with me functioning normally and without problems.

See attached pictures

It does not work anymore.

Imdb rating and IMDB votes - now work with me again.

2109
Feature Suggestions / Re: Suggestion for IMDB plugin
« on: August 23, 2011, 01:04:47 pm »
Sound Mix and Color is not included in For example Technical specifications for 10 Things I Hate About You (1999) but each one has Technical Specs.

If that were added to the Imdb plugin (custom field), this would be a kind of
alternative or Replacement for AllMovie, where they were Color Type and Sound by, which the new AllRovi page is not there (better put: they are not, maybe in the future will be returned back).

[attachment deleted by admin]

2110
Support / Re: MPAA rating problem
« on: August 21, 2011, 04:50:04 pm »

2111
Feature Suggestions / Re: Suggestion for IMDB plugin
« on: August 21, 2011, 12:42:49 pm »
Do you also would give added Laserdisc details,Filming locations,Soundtrack,Sound Mix and Color,
or any of these are now not in the plugin.

Laserdisc details NOW is not there anymore.

Filming locations would be nice to add the custom field.

Sound Mix and Color is not included in For example Technical specifications for 10 Things I Hate About You (1999) but each one has Technical Specs.

Image attached.

[attachment deleted by admin]

2112
Support / Re: AllRovi movie script
« on: August 19, 2011, 08:23:20 pm »
Well, we're not programmers. If some things didn't work by accident, where would we be? ;)
I agree.

2113
Support / Re: AllRovi movie script
« on: August 19, 2011, 06:05:57 am »
Code: [Select]
//~Crew~curPos := Pos('<div class="profession-box">', HTML);
if curPos < 1 then
Exit;
It was my mistake.

Code: [Select]
//~Crew~

curPos := Pos('<div class="profession-box">', HTML);
if curPos < 1 then
Exit;
Meant it was such a piece of code.

Code: [Select]
//~Crew~

if curPos < 1 then
Exit;
Even this piece of code works great, I have a feeling that the script works even better with this part of code than with the part above the proper codes meant, and it was quite right that it was this one piece of code
Code: [Select]
curPos := Pos('<div class="profession-box">', HTML);removed. I tested with this part of the code
Code: [Select]
//~Crew~

if curPos < 1 then
Exit;
test movies, series and documentaries, is really perfect works. so sorry if I just now spoke up and answered the question.


2114
Support / Re: AllRovi movie script
« on: August 18, 2011, 02:58:41 pm »
This movies
Stargate Universe [TV Series] (2009)
Stargate Atlantis [TV Series] (2004)
Stargate Infinity [Animated TV Series] (2002)
have something in common in the Cast & Crew tab, there is only the Crew section, but is not there Cast section, so AllRovi script did not pass the info data with Section Crew.

So I ParseCast adding pieces of code
Code: [Select]
//~Cast~ or ~ctActors~
//save entire Cast tab to custom memo field, as well as individual actors.

procedure ParseCast(HTML : String);
var
curPos, endPos : Integer;
TmpStr : String;
Name, Role, URL : String;
begin
curPos := Pos('<div class="tabset-content main-tab-pane">', HTML);
if curPos < 1 then

curPos := Pos('<div class="description-box">', HTML);
if curPos < 1 then
Exit;
 
TmpStr := '';
 ...

 ...
AddCustomFieldValueByName('Cast', TmpStr);


//~Crew~
curPos := Pos('<div class="profession-box">', HTML);
if curPos < 1 then
Exit;

TmpStr := '';
 ...

 ...
end;

AddCustomFieldValueByName('Crew', TmpStr);

end;


//~Releases~


and now pass the info data with Section Crew,
(edit:) or if the Cast section and Crew section both there.

EDIT
AllRovi 1.3 candidate 1 attached.

[attachment deleted by admin]

2115
Support / Re: AllRovi movie script
« on: August 17, 2011, 02:30:14 pm »
For many problems medicine is so, so it was also a problem with AllRovi script is also found medicine to solve problems.

So when I was looking for solutions and work tests for this one Edgar Allen Poe's Darkness movie, which has caused me many problems and I almost gave up on this , I came up thought, what if I try the current AllRovi script only copy ~Characteristics~ and added to the end ParseMovie.
I was first surprised that the script is working at all, even greater surprise was when I have the above-mentioned film, as well as Lost Lake movie transferred all info available data.
Tested about 30 movie and fine work.

See images.
AllRovi test2 script attached.

[attachment deleted by admin]

2116
Support / Re: AllRovi movie script
« on: August 17, 2011, 08:00:17 am »
The test script fixed the problem for some movies, but not all.  Example: Edgar Allen Poe's Darkness.

How in this case the current version works.

Thanks. I think we need to figure out what's actually going wrong with the logic of the script before releasing further changes. I assume the current version (0.1.1.2) is no worse than the previous version or Ivek's test version—that it only fails for some movies for which AllRovi does not have complete information).

Will cost us a few brain cells to figure out what is actually wrong with the logic of the script.

BTW:
I suggest that until we find solutions to these problems, current version is used, if it does not transfer all info data which are available for a particular movie, then a test version.

I hope that this combination is currently a solution for the time being to problems.

2117
Support / Re: AllRovi movie script
« on: August 16, 2011, 09:04:35 pm »
Part1

Still finding the occasional movie where Characteristics aren't being downloaded.  Lost Lake, for example.

Hm, same problem as in the Synopsis, as well as the same solution:
~Characteristics~ and ~Themes~ or optionally ~mfCategory~  will be postponed until the end ParseMovie, follows attempts:
View AllRovi TEST Script

EDIT:
Sorry.

Since I was unable to load code (limit exceeded by more than 20.000 lines), for examples of how and what changes, attached AllRovi test script for testing.

EDIT2:
AllRovi test2 script attached, but the details are described here.


[attachment deleted by admin]

2118
Support / Re: IMDb plugin maintenance issues
« on: August 14, 2011, 05:54:58 pm »
Imdb votes does not work or to update the information, votes are deleted.

2119
Support / Re: Download of IMDB rating is broken
« on: August 14, 2011, 05:49:12 pm »
Family Matters (TV Series 1989–1998) already has the new style, Imdb rating and Imdb votes with me functioning normally and without problems.

See attached pictures

It does not work anymore.

2120
Support / Re: IMDb plugin maintenance issues
« on: August 14, 2011, 01:07:44 pm »
New Imdb web style is not transferred to MPAA data, at least for me it is.

Pages: 1 ... 101 102 103 104 105 [106] 107 108 109 110 111 ... 133