Hi,
I'm using json in order to get the original title of the tv show.
But when checking the tvshow table in the 'MyVideos107.db", column c09 (=originaltitle), all the column values are empty.
My settings are get info in Hebrew and fallback in English.
But I need the originaltitle for other purpose, so why this addon (metadata.tvdb.com) doesn't get and set the original title also?
I'm using json in order to get the original title of the tv show.
But when checking the tvshow table in the 'MyVideos107.db", column c09 (=originaltitle), all the column values are empty.
My settings are get info in Hebrew and fallback in English.
But I need the originaltitle for other purpose, so why this addon (metadata.tvdb.com) doesn't get and set the original title also?
Code:
request = {"jsonrpc": "2.0", "id": 1 , "method": "VideoLibrary.GetTVShowDetails", "params": {"tvshowid": int(tvshowid), "properties": ["originaltitle"]}}
results = json.loads(xbmc.executeJSONRPC(json.dumps(request)))
tvshowFile = results["result"]["tvshowdetails"]["originaltitle"]