Kodi Community Forum
[Release] Meta video search addon - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154)
+---- Thread: [Release] Meta video search addon (/showthread.php?tid=263065)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18


RE: [Release] Meta video search addon - umonkey - 2019-03-06

(2019-03-03, 23:14)scofield272 Wrote: "link"      : "c:/TV SHOWS/",
    "steps"     : ["{clearname}.*S{season:02d}E{episode:02d}.*(avi|mp4|mkv|mpg|mov|ts)"],
    "action"    : "PLAY"

try this:

"link"      : "c:/TV SHOWS/",
    "steps"     : ["{clearname}",
                     "{clearname},.*S{season:02d}E{episode:02d}.*(avi|mp4|mkv|mpg|mov|ts)"],
    "action"    : "PLAY"


[Release] Meta video search addon - ed_davidson01 - 2019-03-07

(2019-03-06, 11:14)umonkey Wrote:
(2019-03-03, 23:14)scofield272 Wrote: "link"      : "c:/TV SHOWS/",
    "steps"     : ["{clearname}.*S{season:02d}E{episode:02d}.*(avi|mp4|mkv|mpg|mov|ts)"],
    "action"    : "PLAY"

try this:

"link"      : "c:/TV SHOWS/",
    "steps"     : ["{clearname}",
                     "{clearname},.*S{season:02d}E{episode:02d}.*(avi|mp4|mkv|mpg|mov|ts)"],
    "action"    : "PLAY"


You’re making it to complicated. Just use:


"link"      : "c:/TV SHOWS/",
    "steps"     : [
"{clearname}",
                     ".*S{season:02d}E{episode:02d}.*”
],
    "action"    : "PLAY"


RE: [Release] Meta video search addon - scofield272 - 2019-03-11

thank you for the support Smile

i've manged to do it FINALLY ,  my issue was that the season folder was in hebrew עונה ,
so the steps which are working for me is :

["{clearname}.*" ,"עונה {season}",".*S{season:02d}E{episode:02d}.*(avi|mp4|mkv)"],