2009-01-31, 09:11 PM
I've noticed there are two formats for metadata that are recognized in the VideoLibrary Plugin. One is the internal format when the metdata is embedded in the video file as an ADS.
The other is the format when the metadata is exposed via a file with the video filename with a xml extension
There are some fields that are not consistent between the two. Genres for example is only usable in the external file and does not seem to be recognized in the internal format.
Am I missing something or is that truly the case?
Code:
<recording>
<filename>D:\PVR\MyMovies\Movies\12 Monkeys - (2007-10-05).mpg</filename>
<channel>WMDG-1</channel>
<status>READY</status>
<startTime>2009-01-31 13:04:52</startTime>
<endTime>2009-01-31 15:13:52</endTime>
<title>Twelve Monkeys (1995)</title>
<subtitle/>
<description>In a future world devastated by disease, a convict is sent back in time to gather information about the man-made virus that wiped out most of the human population on the planet.</description>
<uid/>
</recording>
The other is the format when the metadata is exposed via a file with the video filename with a xml extension
Code:
<Title>
<FullTitle>Twelve Monkeys (1995)</FullTitle>
<LocalTitle>Twelve Monkeys (1995)</LocalTitle>
<ProductionYear>5 January 1996 (USA)</ProductionYear>
<RunningTime>129 min</RunningTime>
<Description>In a future world devastated by disease, a convict is sent back in time to gather information about the man-made virus that wiped out most of the human population on the planet.</Description>
<DataProvider>IMDB</DataProvider>
<DataProviderId/>
<Rating>8.1/10</Rating>
<Covers> <Front>.\12 Monkeys - (2007-10-05).jpg</Front>
</Covers>
<Genres>Sci-Fi, Thriller</Genres>
</Title>
Am I missing something or is that truly the case?