Forcing anime to use tvdb

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
Icefalcon
Posts: 2
Joined: 26 Apr 2013, 06:30

Forcing anime to use tvdb

Post 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.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Forcing anime to use tvdb

Post 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.
:idea: Please read the FAQ and How to Request Help.
Icefalcon
Posts: 2
Joined: 26 Apr 2013, 06:30

Re: Forcing anime to use tvdb

Post by Icefalcon »

Your a genius man. Modifying forceAnime did the trick. Thanks for the help.
Post Reply