Thanks for this great addon, I was wondering if a few changes might be considered:
I don't see another thread related to issues/additions to this addon, so I am posting here.
First, I am using kodi JSON to gather details from the pvr (for a kodi addon related to PVR in general that I am working on) where I see missing data:
http://127.0.0.1:8080/jsonrpc?request={
"jsonrpc": "2.0",
"id": 1,
"method": "PVR.GetBroadcasts",
"params": {"channelid": 35, "properties": ["thumbnail","episodename","title","plot","runtime","year","isseries","cast","genre","director"]}
}
- For movies, I see that "title" includes the year, could this be adjusted to not include the year and instead use the "year" EPG tag setting:
SetYear()
- There is a series flag (isseries in JSON above), which seems to be set even for movies, could this be fixed:
Per: Kodi Development: enum EPG_TAG_FLAG
EPG_TAG_FLAG_IS_SERIES
- Optional (but more details are always welcome), add:
SetDirector()
SetCast()
Thanks again and have a wonderful holiday weekend!