Hi everyone,
I'm trying to understand how the MP gets the metadata (e.g. genre) out of a transport stream into a xml file.
This is what I've got:
- with #TV.RecordedTV.Genre in a xml-file the genre is shown
- Class GUIPropertyManager holds _properties["#TV.RecordedTV.Genre"] = string.Empty;
- TvRecorded.cs sets the properties in SetProperty() >> GUIPropertyManager.SetProperty("#TV.RecordedTV.Genre", rec.Genre)
- rec.Genre belongs to Recording.cs which creates the table Recording with the coloumn genre
Did I get it right?
This is what I miss:
- primary: the point where the table gets filled with data
- secondary: the point where the xml-file gets teached where to look up for #TV.RecordedTV.Genre
I would be grateful for any hint...
I'm trying to understand how the MP gets the metadata (e.g. genre) out of a transport stream into a xml file.
This is what I've got:
- with #TV.RecordedTV.Genre in a xml-file the genre is shown
- Class GUIPropertyManager holds _properties["#TV.RecordedTV.Genre"] = string.Empty;
- TvRecorded.cs sets the properties in SetProperty() >> GUIPropertyManager.SetProperty("#TV.RecordedTV.Genre", rec.Genre)
- rec.Genre belongs to Recording.cs which creates the table Recording with the coloumn genre
Did I get it right?
This is what I miss:
- primary: the point where the table gets filled with data
- secondary: the point where the xml-file gets teached where to look up for #TV.RecordedTV.Genre
I would be grateful for any hint...