2021-10-18, 16:32
(2021-10-18, 08:33)gujal Wrote:Yes, this works, Thank you!(2021-10-18, 01:16)jdig4240 Wrote:The search endpoint is now for displaying the keyboard and getting an input. It then calls another action search_word with parameter keywordHey Gujal, maybe you can help? So I had an IMDB Trailers player working with The Movie Database Helper. Its a really useful player. It stopped working in the last couple days. The IMDB Trailers addon still works and so does the search. Maybe somebody can help get this player working again. Thanks, heres the imdbtrailers.json player code:Code:{ "name": "Watch Trailer Now", "plugin": "plugin.video.imdb.trailers", "priority": 1, "play_movie": [ "plugin://plugin.video.imdb.trailers/?action=search", { "keyboard": "{title}" }, { "title": "{title}" } ], "is_resolvable": "false" }
For your use case now please try with
plugin://plugin.video.imdb.trailers/?action=search_word&keyword=title
{ "name": "Watch Trailer Now", "plugin": "plugin.video.imdb.trailers", "priority": 1, "play_movie": [ "plugin://plugin.video.imdb.trailers/?action=search_word&keyword={title}", { "keyboard": "{title}" }, { "title": "{title}" } ], "is_resolvable": "True" }