Search found 8 matches

by jebbe
21 Jun 2020, 07:39
Forum: Episode / Movie Naming Scheme
Topic: How about sharing our format expressions?
Replies: 33
Views: 492920

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|UNC...
by jebbe
20 May 2019, 20:49
Forum: Episode / Movie Naming Scheme
Topic: Uncensored TV Name Scheme
Replies: 2
Views: 2210

Re: Uncensored TV Name Scheme

kim wrote: 20 May 2019, 04:03

Code: Select all

{info.status}/{n} - {s00e00} - {t}

Code: Select all

{fn.match(/Uncensored|Censored/).upperInitial()}/{n} - {s00e00} - {t}
Much appreciated! I'm slowly learning how to do this :D
by jebbe
20 May 2019, 02:09
Forum: Episode / Movie Naming Scheme
Topic: Uncensored TV Name Scheme
Replies: 2
Views: 2210

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 versio...
by jebbe
06 Feb 2018, 14:19
Forum: Episode / Movie Naming Scheme
Topic: Blank Movie Names
Replies: 3
Views: 2671

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. Than...
by jebbe
05 Feb 2018, 17:20
Forum: Episode / Movie Naming Scheme
Topic: Blank Movie Names
Replies: 3
Views: 2671

Re: Blank Movie Names

Image

This is an example of what I see.
by jebbe
05 Feb 2018, 17:17
Forum: Episode / Movie Naming Scheme
Topic: Blank Movie Names
Replies: 3
Views: 2671

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|THEAT...
by jebbe
25 Dec 2017, 05:13
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527310

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/...
by jebbe
25 Dec 2017, 05:03
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527310

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}\{primarytit...