Search found 4 matches

by Fussifuss
07 May 2020, 20:35
Forum: Episode / Movie Naming Scheme
Topic: Adding "three spaces" and a (1080p) after every filename
Replies: 7
Views: 3404

Re: Adding "three spaces" and a (1080p) after every filename

e.g. {n.upperInitial()} - {'S'+s.pad(2)} E{e.pad(2)} - {t.upperInitial()} (1080p) Wow, THANK YOU VERY MUCH !!! It did work. The thing is, that i tried this exact addition but it didn't give me any positive results earlier. That's the reason i opened a thread here. I maybe forgot to apply the new co...
by Fussifuss
07 May 2020, 20:19
Forum: Episode / Movie Naming Scheme
Topic: Adding "three spaces" and a (1080p) after every filename
Replies: 7
Views: 3404

Re: Adding "three spaces" and a (1080p) after every filename

FileBot will strip away any sequence of space-like characters and replace them with a single space character irregardless of what your code produces. It's therefore not possible to add three spaces. OK, i see. But it doesn't either give me the " (1080p)" at the end with a single " sp...
by Fussifuss
07 May 2020, 19:43
Forum: Episode / Movie Naming Scheme
Topic: Adding "three spaces" and a (1080p) after every filename
Replies: 7
Views: 3404

Re: Adding "three spaces" and a (1080p) after every filename

something like this {n.upperInitial()}{' - S' + s.pad(2)}{' E' + e.pad(2)}{' - ' + t.upperInitial()}{' ('+ fn.match(/1080p|720p/) + ')'} I copypasted your code and it didn't do any changes. It says: "Pattern not found" So it's still on: The Series Name - S01 E02 - The Episode Name.mkv
by Fussifuss
07 May 2020, 17:53
Forum: Episode / Movie Naming Scheme
Topic: Adding "three spaces" and a (1080p) after every filename
Replies: 7
Views: 3404

Adding "three spaces" and a (1080p) after every filename

Hello, i'm new to FileBot and the forum (purchased a lifetime license) today and have some questions regarding the file name format i use for my TV-Series collection since years. From what i have figured out, the following code comes close to what i use in my TV-Series collection: {n.upperInitial()}...