Search found 8 matches
- 21 Jun 2020, 07:39
- Forum: Episode / Movie Naming Scheme
- Topic: How about sharing our format expressions?
- Replies: 37
- Views: 606027
Re: How about sharing our format expressions?
{['F:', 'G:', 'I:', 'J:', 'L:', 'V:', 'W:', 'Y:'].collect{ (it+'/Movies') as File }.sort{ a, b -> a.exists() <=> b.exists() ?: a.diskSpace <=> b.diskSpace }.last()} ({vf})\{n} ({y}){' ['+fn.replaceAll(/(?i)directors|theatrical|ultimate/,'$0 Cut').matchAll(/OPEN.MATTE|UNRATED|REMASTERED|EXTENDED ...
- 20 May 2019, 20:49
- Forum: Episode / Movie Naming Scheme
- Topic: Uncensored TV Name Scheme
- Replies: 2
- Views: 3543
Re: Uncensored TV Name Scheme
Much appreciated! I'm slowly learning how to do thiskim wrote: ↑20 May 2019, 04:03Code: Select all
{info.status}/{n} - {s00e00} - {t}
Code: Select all
{fn.match(/Uncensored|Censored/).upperInitial()}/{n} - {s00e00} - {t}

- 20 May 2019, 02:09
- Forum: Episode / Movie Naming Scheme
- Topic: Uncensored TV Name Scheme
- Replies: 2
- Views: 3543
Uncensored TV Name Scheme
I'm looking for a fairly basic setup for tv show naming but lack the knowledge, or I just can't quite get it right. I sort my tv shows into two folders "Ended" and "Ongoing" and I've started to find some tv shows that have uncensored versions floating around such as the US version of Kitchen ...
- 06 Feb 2018, 14:19
- Forum: Episode / Movie Naming Scheme
- Topic: Blank Movie Names
- Replies: 3
- Views: 3523
Re: Blank Movie Names
I'd start by opening the Format Editor and then dissecting the format you're using bit by bit. Presumably, bindings such as {primaryTitle} are only available when you're using TheMovieDB that has the corresponding information. Try using common binding such as {n} which work for both databases ...
- 05 Feb 2018, 17:20
- Forum: Episode / Movie Naming Scheme
- Topic: Blank Movie Names
- Replies: 3
- Views: 3523
Re: Blank Movie Names

This is an example of what I see.
- 05 Feb 2018, 17:17
- Forum: Episode / Movie Naming Scheme
- Topic: Blank Movie Names
- Replies: 3
- Views: 3523
Blank Movie Names
{['Y:', 'W:', 'F:'].collect{ (it+'/Movies') as File }.sort{ a, b -> a.exists() <=> b.exists() ?: a.diskSpace <=> b.diskSpace }.last()} ({vf})\{genre}\{primarytitle} ({y}){' ['+fn.replaceAll(/(?i)directors|theatrical|ultimate/,'$0 Cut').matchAll(/UNRATED|REMASTERED|EXTENDED|UNCUT|DIRECTORS.CUT ...
- 25 Dec 2017, 05:13
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1036
- Views: 1100540
Re: How about sharing our format expressions?
Literally after sharing this, I tinkered with it a bit more and discovered this. {['Y:', 'W:'].collect{ (it+'/Movies') as File }.sort{ a, b -> a.exists() <=> b.exists() ?: a.diskSpace <=> b.diskSpace }.last()} ({vf})\{genre}\{primarytitle} ({y}){' ['+fn.replaceAll(/(?i)directors|theatrical|ultimate ...
- 25 Dec 2017, 05:03
- Forum: Help and Support
- Topic: POSTBUCKET - where random posts in unrelated topics go
- Replies: 1036
- Views: 1100540
Re: How about sharing our format expressions?
I am absolutely no expert when it comes doing this, but am slowly learning and not trying to over complicate it for myself. I mainly use FileBot for movies and nothing else. I've essentially used bits from already posted and kind of made it work for my own needs. W:\Movies ({vf})\{genre ...