Release plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners
(2019-11-29, 10:11)jurialmunkey Wrote:
(2019-11-28, 09:36)nessus Wrote:
(2019-11-27, 13:49)jurialmunkey Wrote: Good point about language flags. I've added ListItem.Property(Language.X.iso)

Also, N/A values from omdb should now be ignored. 
Nod

Next question... in the standard video info dialog i have all these lists based on director, writer etc. I would like when an item of those lists are in library to be able to play it or browse it if it's tvshow, but atm that's no possible since the ListItem.FilenameAndPath is pointing to the themoviedb.helper path (plugin://plugin.video.themoviedb.helper/?info=details&...). Is it possible to have the local FilenameAndPath... or maybe the script could to that automatically by default?.... or show the videoinfo for that item?. I don't mind. Whatever makes sense to you.

Another one... in TV shows, is the "Creator" of the show available by the API so we can add that in the same placeholder of the director in movies?

Thanks
Nessus

You can already play/browse dbid items:

Play Movie
Code:
<onclick>RunPlugin(plugin://plugin.video.themoviedb.helper/?info=play&amp;tmdb_id=$INFO[ListItem.Property(tmdb_id)]&amp;type=movie)</onclick>

Play Tvshow Episode
Code:
<onclick>RunPlugin(plugin://plugin.video.themoviedb.helper/?info=play&amp;tmdb_id=$INFO[ListItem.Property(tmdb_id)]&amp;season=1&amp;episode=1&amp;type=episode)</onclick>

Browse TvShow Seasons (use Container.Update method instead of ActivateWindow if already in video library).
Code:
<onclick>ActivateWindow(videos,videodb://tvshows/titles/$INFO[ListItem.DBID]/,return)</onclick>
Code:
<onclick>Container.Update(videodb://tvshows/titles/$INFO[ListItem.DBID]/)</onclick>

To Browse TvShow Seasons in TMDb Helper use this path instead:
Code:
plugin://plugin.video.themoviedb.helper/?info=seasons&tmdb_id=$INFO[ListItem.Property(tmdb_id)]&type=tv

You may need to close the video info dialog first using <onclick>Dialog.Close(12003)</onclick>


I've added creators to latest github version:
ListItem.Property(Creator.X.Name)
ListItem.Property(Creator.X.TMDb_ID)
ListItem.Property(Creator) (all creators separated by "/")

The add-on now won't let me authenticate Trakt or open any of the Trakt menus Sad

https://github.com/jurialmunkey/plugin.v.../issues/10
Reply


Messages In This Thread
RE: TheMovieDB Helper - by jurialmunkey - 2019-07-31, 11:47
RE: plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners - by drinfernoo - 2019-11-30, 00:00
Logout Mark Read Team Forum Stats Members Help
plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners2