if i open the GUI to tvshows/titles/Arrow/season1,
and i have on my screen all the episodes i currently have of season one.
Is there a JSON command to get the information of the current active gui window?
and return for example:
tvshowid
showtitle
episodeid
i know all these can be found if i have the showid or something to start with, but i'd like to collect that information off a currently open window.
Is this possible?
Another question where is episodeid found in the SQL database? This one only shows idEpisode and that's different than the episodeid returned from
how do these correspond to each other?
Thank you
and i have on my screen all the episodes i currently have of season one.
Is there a JSON command to get the information of the current active gui window?
and return for example:
tvshowid
showtitle
episodeid
i know all these can be found if i have the showid or something to start with, but i'd like to collect that information off a currently open window.
Is this possible?
Another question where is episodeid found in the SQL database? This one only shows idEpisode and that's different than the episodeid returned from
Code:
{ "jsonrpc": "2.0", "method": "VideoLibrary.GetEpisodes", "params": { "tvshowid": 66, "properties": [ "episodeid" ] }, "id": 1 }
Thank you