Search found 10 matches

by OOmatrixOO
14 Nov 2015, 11:17
Forum: Episode / Movie Naming Scheme
Topic: Rename to specific genre AND title folder
Replies: 7
Views: 8005

Re: Rename to specific genre AND title folder

Thank you. I think I've got it right. What do you think? Or you could still improve it? Thanks for your help. {genres =~ /Familie/ && n =~ /Barbie/ ? 'H:/#Kinderfilme/Barbie Reihe/' : genres =~ /Familie/ && n =~ /Tinkerbell/ ? 'H:/#Kinderfilme/Tinkerbell Reihe/' : genres =~ /Familie/ || genres ...
by OOmatrixOO
12 Nov 2015, 15:05
Forum: Episode / Movie Naming Scheme
Topic: Rename to specific genre AND title folder
Replies: 7
Views: 8005

Re: Rename to specific genre AND title folder

Oh thank you that looks good.
How cann i include an OR expression? I would like to include 1 and 3 too.

&& = AND
OR = 'i dont know'

thanks for your help and great tool.
by OOmatrixOO
02 Nov 2015, 18:03
Forum: Episode / Movie Naming Scheme
Topic: Rename to specific genre AND title folder
Replies: 7
Views: 8005

Re: Custom renaming sheme

I spend a lot of time to search for this problem but I've don't found a solution. So I wrote this topic.
by OOmatrixOO
02 Nov 2015, 09:48
Forum: Episode / Movie Naming Scheme
Topic: Rename to specific genre AND title folder
Replies: 7
Views: 8005

Rename to specific genre AND title folder

Hi. Please can anyone help. I want to do this: Rename movies like this: H:/#Ungesehen/{n.upperInitial().replace(':', ' - ')} ({y}) {genres.take(2)} BUT if genre family rename to H:/#Kinderfilme/ {n.upperInitial().replace(':', ' - ')} ({y}) {genres.take(2)} AND if Barbie is in name available rename ...
by OOmatrixOO
01 Nov 2015, 09:23
Forum: Episode / Movie Naming Scheme
Topic: Force same genre folder for all movies of a collection
Replies: 3
Views: 6351

Re: specific genre folder

Code: Select all

{genres.sort()[0]}
This doesnt work for me. Do I need to add anything else?

Code: Select all

{model.findAll{ it.collection == collection }.genres.flatten().countBy{it}.sort{it.value}.keySet().last()}
This is not perfect but ok.

Thanks.
by OOmatrixOO
25 Oct 2015, 18:52
Forum: Episode / Movie Naming Scheme
Topic: Force same genre folder for all movies of a collection
Replies: 3
Views: 6351

Force same genre folder for all movies of a collection

Hi. I want to sort all files according to genre/collection folders with TheMovieDB. I use this: H:/{genres[0]}/{collection.upperInitial().replace('Reihe', 'Collection', 'Filmreihe', 'Collection', 'Serie', 'Collection')}/{n.upperInitial().replace(':', ' - ')} ({y}) {genres} The Problem is, that ...
by OOmatrixOO
25 Aug 2014, 17:26
Forum: Episode / Movie Naming Scheme
Topic: help with collection in german language
Replies: 8
Views: 6994

Re: help with collection in german language

It is not a big problem for me.
I can replace Collection with Reihe for the "german style". :D

Like this: {collection.replace('Collection', 'Reihe')

Greetings.
by OOmatrixOO
25 Aug 2014, 16:45
Forum: Episode / Movie Naming Scheme
Topic: help with collection in german language
Replies: 8
Views: 6994

Re: help with collection in german language

Hi.
I have the same problem with some titles. As an example, see screenshot.

FileBot_4.3_B3 installed and language is german.

Image
by OOmatrixOO
29 Jun 2014, 09:33
Forum: Episode / Movie Naming Scheme
Topic: "Uncut" two times in the name
Replies: 2
Views: 3324

Re: "Uncut" two times in the name

Oh wow its so easy. Thank you, it works perfect.
by OOmatrixOO
29 Jun 2014, 09:21
Forum: Episode / Movie Naming Scheme
Topic: "Uncut" two times in the name
Replies: 2
Views: 3324

"Uncut" two times in the name

Hello. This is my Movie Naming Scheme: H:/{n =~ /^(?i)[a-z]/ ? n[0] : '#'}/{n.upperInitial()}{' (' + file.path.matchAll(/extended|uncensored|remastered|unrated|uncut|directors.cut|special.edition/)*.upperInitial()*.lowerTrail().sort().join(', ').replaceAll(/[._]/, " ") + ')'} ({y}) Sometimes a ...