Page 1 of 1

Forcing anime to use tvdb

Posted: 26 Apr 2013, 06:37
by Icefalcon
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.

Re: Forcing anime to use tvdb

Posted: 26 Apr 2013, 07:03
by rednoah
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.

Re: Forcing anime to use tvdb

Posted: 26 Apr 2013, 07:30
by Icefalcon
Your a genius man. Modifying forceAnime did the trick. Thanks for the help.