Running FileBot from the console, Groovy scripting, shell scripts, etc
Icefalcon
Posts: 2 Joined: 26 Apr 2013, 06:30
Post
by Icefalcon » 26 Apr 2013, 06:37
Hey, I don't like how anidb doesn't use season numbers so I prefer to use tvdb for fetching, yet I can't seem to force it to use tvdb. I've used db= thetvdb but the script still makes any thing with an anime label use anidb.
Heres my script
Code: Select all
filebot -script fn:utorrent-postprocess --output "\\192.168.100.104/" --db thetvdb --log-file amc.log --action copy --conflict override -non-strict --def xbmc=XBMC-PC clean=y "animeFormat=hdd1/Anime/{n}/Season {s}/{n} {sxe} - {t}" "seriesFormat=hdd2/TV Shows/{n}/Season {s}/{n} {sxe} - {t}" "ut_dir=%D" "ut_file=%F" "ut_kind=%K" "ut_title=%N" "ut_label=%L" "ut_state=%S"
Any help would be great, I've been pulling my hair out getting this far.
rednoah
The Source
Posts: 23953 Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:
Post
by rednoah » 26 Apr 2013, 07:03
You can do --def ut_label=TV but then you'd force TVDB even for movie files, which is very bad.
Currently you can only fix that by editing the script, e.g. by modifying forceAnime() function and just returning false.
Icefalcon
Posts: 2 Joined: 26 Apr 2013, 06:30
Post
by Icefalcon » 26 Apr 2013, 07:30
Your a genius man. Modifying forceAnime did the trick. Thanks for the help.