

What could I do to rename the episodes?
Could you please do it with this lines(?):You can modify your custom format to take care of this (i.e. strip trailing dots) during format time.
Code: Select all
I:/Eigene Dateien/Videos/Serien/{n}/Season {s}/{n} ({s00e00.lower()}) - {t} ({airdate}, {y}){tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}{fn.match(/.forced/)}
Code: Select all
I:\Eigene Dateien\Videos\Filme\{n.replace(':', ' -')} ({y}){tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}\{n.replace(':', ' -')} ({y}){' Teil '+pi}{'.'+lang}{tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}{fn.match(/.forced/)}
Code: Select all
{ n.replace('..?', '') }
Does it cause any problems / drawbacks being in those lines anyway?That said, this particular issue likely doesn't effect any other series in existence, so you probably won't be needing this customisation for any other use case.
Code: Select all
{ n.replace(':', ' -').replace('..?', '') }
I do not have any idea of how it works / the code, sorry.You already know how it works, since it's conceptually no different from the other replacement operation you already have there, so you just do what you already know again:
I will show you 2-3 times so that you can learn from my example, so you can then do it yourself. What you're asking for is simple, and the only reason you haven't done it yourself is because you expect me to do it for you. However, you absolutely could do it if you bothered to try.
Code: Select all
I:\Eigene Dateien\Videos\Filme\{ n.replace(':', ' -').replace('..?', '') } ({y}){tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}\{n.replace(':', ' -')} ({y}){' Teil '+pi}{'.'+lang}{tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}{fn.match(/.forced/)}
Code: Select all
I:/Eigene Dateien/Videos/Serien/{ n.replace(':', ' -').replace('..?', '') }/Season {s}/{n} ({s00e00.lower()}) - {t} ({airdate}, {y}){tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}{fn.match(/.forced/)}
Code: Select all
I:\Eigene Dateien\Videos\Filme\{ n.replace(':', ' -').replace('..?', '') } ({y}){tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}\{n.replace(':', ' -')} ({y}){' Teil '+pi}{'.'+lang}{tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}{fn.match(/.forced/)}
Code: Select all
I:/Eigene Dateien/Videos/{plex}
Yes. Or simply ask in a forum. Actually.If you want to make use of custom formatting, then you need to learn custom formatting, so that you can rename your episodes / movies in your custom way tailor-made by you for your specific requirements:
But it does not look like, as if there was nothing to learn, a lot of code there, obviously.If you don't want to understand or learn how to write custom format to tailor naming to your needs, and that's perfectly fine, then you'll want to just stick to the {plex} format instead of using a custom format that you don't understand and thus cannot modify:
This would be enough to use for all movies, all series? Nothing more needed?I:/Eigene Dateien/Videos/{plex}
Code: Select all
$ filebot -list --q "wetten dass" --db TheTVDB --lang German --format "{plex}"
TV Shows/Wetten, dass/Season 01/Wetten, dass.. - S01E01 - Wetten, dass.. aus Düsseldorf
Oops, why is that? So I will always have a wrong format there? What sense does that make?Unfortunately, you cannot change the list of recently used formats. It will always show the last 5 recently used formats.
Code: Select all
I:/Eigene Dateien/Videos/Serien/{ n.replace(':', ' -').replace('..?', '') }/Season {s}/{n} ({s00e00.lower()}) - {t} ({airdate}, {y}){tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}{fn.match(/.forced/)}
Code: Select all
I:\Eigene Dateien\Videos\Filme\{ n.replace(':', ' -').replace('..?', '') } ({y}){tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}\{n.replace(':', ' -')} ({y}){' Teil '+pi}{'.'+lang}{tags}{file.path =~ /Kinofassung/ ? '[Theatrical Cut]' : ''}{fn.match(/.forced/)}