Dear XBMC-Community,
I am trying to write an addon to create a list of watched movies.
I am getting all movies via JSON-RPC with
The result is a long list of movies like
My problem is, that the field "lastplayed" is always empty, even if there is a timestamp in the mysql-table myvideos75/files ("2012-10-12 10:57:51.0").
The query with VideoLibrary.GetMovieDetails also gives the empty lastplayed-entry
does someone have a clue?
thanks
I am trying to write an addon to create a list of watched movies.
I am getting all movies via JSON-RPC with
Code:
{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "params": {"properties": ["title", "imdbnumber", "lastplayed", "playcount"], "sort": { "order": "ascending", "method": "title" }, "filter": {"field": "playcount", "operator": "greaterthan", "value": "0"}}, "id": 1}
Code:
... {"imdbnumber":"tt0322259","label":"2 Fast 2 Furious","lastplayed":"","movieid":2892,"playcount":1,"title":"2 Fast 2 Furious"} ...
The query with VideoLibrary.GetMovieDetails also gives the empty lastplayed-entry
Code:
{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovieDetails", "params": {"movieid": 2892, "properties": ["imdbnumber", "lastplayed"]}, "id": 1}
does someone have a clue?
thanks