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
German + English does not work
Re: German + English does not work
Things have changed.
Here's a hint:
Here's a hint:
Code: Select all
{e.pad(2)} - {t} - {database.getEpisodeList(series, null, Locale.GERMAN).find{ episode.numbers == it.numbers }.title}
-
- Posts: 4
- Joined: 06 Jul 2014, 15:22
Re: German + English does not work
works great, thank you!