
My question is simple, and maybe i can get away with an homemade script but maybe someone can shed a light with a more fashionable way to do it:
I'm currently passing as argument a directory on my nas, which filebot scans and order, then it will call "synoindex -a " to add it to my own library on DS Video. After that, a curl request is send to Sickrage, to make it stop searching for that episode.
My solution is this:
Code: Select all
filebot -script fn:amc --output "/volume1/video/" --lang it --action move -non-strict "/volume1/video/da_ordinare/" --def pushover="*******" subtitles=it skipExtract=y artwork=y clean=y music=n "seriesFormat=SERIE TV/{n}/{'Stagione '+s}/{n} {sxe} - {t} {ac}-{vc} {vf}({hd})" "movieFormat=FILM/{n} ({y})/{n} {y} {ac}-{vc} {vf} ({hd})" "exec=synoindex -a \"{file}\";curl 'http://localhost:8083/api/apikeyhere?cmd=show.refresh&tvdbid={info.id}'"
Is there any way to make filebot stop doing curl request when it's a movie file? Thanks!