Page 1 of 1

German + English does not work

Posted: 06 Jul 2014, 15:29
by Chrompower
Hello Guys!

I am not able to set Filebot so that it puts English + German Episode-Title to the Filename.
Using this Code:
{e.pad(2)} - {t} - {def db = net.sourceforge.filebot.WebServices.TheTVDB; db.getEpisodeList(db.search(n)[0], null, Locale.ENGLISH).find{ episode.season == it.season && episode.episode == it.episode}.title}

Filebot only gives me the {t} (in English / German, depends wich preference language I am using) - but not the English Episode-Name.
It says "BindingException "net": undefined" and it looks like this:
"01 - Pilot - "

Could an expert help me please? What can I do?

Best Regards
Chrompower

Re: German + English does not work

Posted: 06 Jul 2014, 16:39
by rednoah
Things have changed.

Here's a hint:

Code: Select all

{e.pad(2)} - {t} - {database.getEpisodeList(series, null, Locale.GERMAN).find{ episode.numbers == it.numbers }.title}

Re: German + English does not work

Posted: 07 Jul 2014, 19:46
by Chrompower
works great, thank you!