Release plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners
(2019-11-26, 04:52)nessus Wrote: @jurialmunkey 
Thanks... will check it out. I am in middle of something else atm from which comes my next question.

The plugin:// path for movies from a writer it's not working if there is more than one writer or am i missing something ?

This is the code that i use...
plugin://plugin.video.themoviedb.helper/?info=crew_in_movies&type=person&filter_key=job&filter_value=Writer&query=$INFO[ListItem.Writer]

Sorry if this is already mentioned because i didn't had the time to read the whole thread.

Cheers
Nessus

The latest github update should fix this issue. If a query has multiple items separated by "/" the plugin will now split them and use the first one.

For more complex calls there is also the ?info=discover method:
https://github.com/jurialmunkey/plugin.v...r#discover

For instance, discover can allow you to get a list of any movie that has ANY of the current movie's writers as a crew member (i.e. not just one of the writers) -
Code:
plugin://plugin.video.themoviedb.helper?info=discover&type=movie&with_crew=$INFO[ListItem.Writer]&with_separator=OR

With discover you can also stack multiple with_* params. For instance, if you want to find movies that share at least one genre and one writer you can do:
Code:
plugin://plugin.video.themoviedb.helper?info=discover&type=movie&with_crew=$INFO[ListItem.Writer]&with_genres=$INFO[ListItem.Genre]&with_separator=OR&exclude_key=title&exclude_value=$INFO[ListItem.Title]
^ The exclude params will ensure that the current movie is not included in the list.
Arctic Fuse - Alpha now available. Support me on Ko-fi.
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 jurialmunkey - 2019-11-26, 11:16
Logout Mark Read Team Forum Stats Members Help
plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners2