issue with xbmc storing minimal info in MyVideoXX.db when using addons
#1
i am using the XBMB3C addon so i can manage my media through mediabrowser 3 server.
i am experiencing an issue when trying to use the player.getitem json request.

the first time i play an item, all the available information from the stream gets passed to json. but after i stop the video (and an item has been created in MyVideoXX.db) when i play that video again, it shows much less infomation. im assuming it is trying to get the info from the local db, because there is an entry for it, but it is not complete info. i can remove the MyVideoXX.db, and if i play the same file, all the info is there again.

is there a way to disable adding addon data to the local db?


here is the json output from player.getitem the first time its played
Code:
{"id":"1","jsonrpc":"2.0","result":{"item":{
"dateadded":"",
"director":[],
"episode":1,
"episodeguide":"",
"fanart":"",
"file":"smb://myserver/TV Shows/Orphan Black/Season 02/Orphan Black - 2x01 - Nature Under Constraint and Vexed.mkv",
"firstaired":"",
"genre":[],
"imdbnumber":"",
"label":"Nature Under Constraint and Vexed",
"lastplayed":"",
"mpaa":"",
"originaltitle":"",
"playcount":0,
"plot":"Sarah is out of options, on the run, and pursued by deadly adversaries. Desperate to find her daughter Kira, Sarah suspects ruthless pro-clone Rachel is behind her daughter’s disappearance and sparks an all out war against her. Alison and Donnie attend the funeral of her fallen friend, Aynsley, causing Alison to sink into guilt and despair. Cosima is faced with a perplexing decision that may have dire consequences.",
"plotoutline":"",
"premiered":"",
"productioncode":"",
"rating":0,
"resume":{"position":0,"total":0},
"runtime":0,
"season":2,
"set":"",
"setid":-1,
"showlink":[],
"showtitle":"",
"sorttitle":"",
"streamdetails":{"audio":[],"subtitle":[],"video":[]},
"studio":[],
"tag":[],
"tagline":"",
"thumbnail":"image://http%3a%2f%2flocalhost%3a15001%2f%3fid%3d6f810ae9de86b8bf51c20fdcb92ac855%26type%3dPrimary%26tag%3d1743bb95263846a8798036b703db7198/",
"title":"Nature Under Constraint and Vexed",
"top250":0,
"track":-1,
"trailer":"",
"tvshowid":-1,
"type":"unknown",
"uniqueid":{"unknown":""},
"votes":"",
"writer":[],
"year":0}}}


and here is the json output from player.getitem each time after the first. notice the plot and other information is missing, and the label field has changed.
Code:
{"id":"1","jsonrpc":"2.0","result":{"item":{
"dateadded":"",
"director":[],
"episode":-1,
"episodeguide":"",
"fanart":"",
"file":"smb://myserver/TV Shows/Orphan Black/Season 02/Orphan Black - 2x01 - Nature Under Constraint and Vexed.mkv",
"firstaired":"",
"genre":[],
"imdbnumber":"",
"label":"Orphan Black - 2x01 - Nature Under Constraint and Vexed",
"lastplayed":"2014-04-21 14:58:23",
"mpaa":"",
"originaltitle":"",
"playcount":0,
"plot":"",
"plotoutline":"",
"premiered":"",
"productioncode":"",
"rating":0,
"resume":{"position":0,"total":0},
"runtime":0,
"season":-1,
"set":"",
"setid":-1,
"showlink":[],
"showtitle":"",
"sorttitle":"",
"streamdetails":{"audio":[],"subtitle":[],"video":[]},
"studio":[],
"tag":[],
"tagline":"",
"thumbnail":"image://http%3a%2f%2flocalhost%3a15001%2f%3fid%3d6f810ae9de86b8bf51c20fdcb92ac855%26type%3dPrimary%26tag%3d1743bb95263846a8798036b703db7198/",
"title":"",
"top250":0,
"track":-1,
"trailer":"",
"tvshowid":-1,
"type":"unknown",
"uniqueid":{"unknown":""},
"votes":"",
"writer":[],
"year":0}}}
Reply

Logout Mark Read Team Forum Stats Members Help
issue with xbmc storing minimal info in MyVideoXX.db when using addons0