Search found 23 matches

by RudyBzh
21 Sep 2021, 20:58
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 682
Views: 1582960

Re: Release Groups {group}

Code: Select all

AXLBEN
AZAZE
Barbie
baron
BONBON
BraD
DUSTiN
FCK
FLOP
FRATERNiTY
FrIeNdS
Frosties
KALiPSO
LAZARUS
LOST
NoTag
P4Tri0T
PlanetX
Portos
Sicario
Slay3R
telemO
TASTED
THREESOME
TOXIC
by RudyBzh
07 Feb 2021, 22:26
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151709

Re: Multiple audio tracks with different codecs and languages

Thank you so much & sorry for the disturb on the forum :oops: As you told, I'm all set with this : audioStreams.findAll{ it.bitrate == audioStreams.bitrate.max() || it.lang == preferredLang }.sort{ a, b -> b.bitrate <=> a.bitrate }.sort{ it.lang != preferredLang }.unique{ it.lang }.unique{ it.co...
by RudyBzh
07 Feb 2021, 12:38
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151709

Re: Multiple audio tracks with different codecs and languages

Here is the result with this formula : ( audioStreams.findAll{ it.lang == preferredLang }.sort{ a, b -> b.bitrate <=> a.bitrate } + audioStreams.findAll{ it.bitrate == audioStreams.bitrate.max() }.sort{ a, b -> b.default <=> a.default }.unique{ it.bitrate } ).unique{ it.lang }.collect{ filter(it) }*...
by RudyBzh
05 Feb 2021, 07:17
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151709

Re: Multiple audio tracks with different codecs and languages

Thanks a lot. Looking at the lines, it's effectively not easy :o Also, unfortunately, it's not working. With 1st expression audioStreams.findAll{ it.bitrate == audioStreams.bitrate.max() || it.lang == preferredLang }.sort{ a, b -> b.bitrate <=> a.bitrate }.sort{ it.lang != preferredLang }.unique{ it...
by RudyBzh
04 Feb 2021, 16:09
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151709

Re: Multiple audio tracks with different codecs and languages

Well, it's not working as expected... Because "audioStreams.findAll{ it.bitrate == audioStreams.bitrate.max()" can contain multiple results (if differents bitrates are equals) And also because "audioStreams.findAll{ it.lang == preferredLang }" can contain multiple results and, no...
by RudyBzh
03 Feb 2021, 22:40
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151709

Re: Multiple audio tracks with different codecs and languages

Thanks a lot. My bad. I was just using "{}" and the results was not as expected... and I'm not dealing with limit cases where order can be discussed. Exemple when comparing "FR AC3@384kb/s" vs "EN EAC3@1024kb/s" : https://snipboard.io/vCtaDr.jpg Strange result when usin...
by RudyBzh
03 Feb 2021, 09:01
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151709

Re: Multiple audio tracks with different codecs and languages

Thanks a lot kim. Seems to perfectly makes the job. I tried to change the last line : any{addToList}{bestPreferredLang}{defaultStream}{bestBitRate}{preferredStream} with this : {[bestPreferredLang, bestBitRate].findAll().unique().join(' & ')} But it's not working (I only get 1 result even if the...
by RudyBzh
02 Feb 2021, 13:09
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

Well, finally
{ [source, vf].join('-') } is not good for me.
I prefer
{allOf {source}{vf}.join('-')}
Because if source is null, I still get {vf}
by RudyBzh
02 Feb 2021, 08:04
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 110
Views: 151709

Re: Multiple audio tracks with different codecs and languages

Hi, I'm trying to include this complex piece of code but have some movies not matching (NO_AUDIO). How can I troubleshoot this ? Here are some exemples with "mediainfo -f" results of audio parts. Exemple 1 Audio #1 Count : 294 Count of stream of this kind : 3 Kind of stream : Audio Kind of...
by RudyBzh
02 Feb 2021, 07:00
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

Thanks Kim for this. But it's not exactly the same. It splits source/vf & repack/proper/extended in different '[xxx]' blocks.
By the while, I take the "{ [source, vf].join('-') }" part.
by RudyBzh
01 Feb 2021, 08:57
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

OK, here is what I have now. Working even without beta throwing error on inexistent imdb. I guess code could by simplified a bit with beta with something like "any{imdbid}{tmdbid}". /mnt/NAS/{genres =~ /Animation/ ? 'Animés' : 'Films'}/{plex.name} {imdbid=~/tt\s+null/? '[tmdb-'+tmdbid+']' ...
by RudyBzh
01 Feb 2021, 06:20
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

Thanks for your response. I assume I have to install the beta version to get this correction ? If so, is there a way to install it through apt ? (to keep auto upgrades) I'm currently using this line : deb [arch=all] https://get.filebot.net/deb/ universal main What is the source for beta or dev versi...
by RudyBzh
31 Jan 2021, 20:57
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

Ok, thanks for this. That’s what I made, but not as efficient as this... have to change ;) Having a look at the link you provided, honestly, I’m not sure I understood how it’s supposed to work : 356 @Define("imdbid") 357 public String getImdbId() { 358 if (getMovie().getImdbId() > 0) 359 r...
by RudyBzh
31 Jan 2021, 15:06
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

OK, I've just discovered that imdbid, if not found, is displayed as "tt null" but really contains "tt null" (with 3 blank spaces)...
by RudyBzh
31 Jan 2021, 11:59
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

Thanks kim for these inputs. Will have a look to the simplifications you propose. Unfortunately, for the "tt null" issue, it's not working for me : This code : /mnt/NAS/{genres =~ /Animation/ ? 'Animés' : 'Films'}/*/*/*{plex.derive{" {${imdbid.minus(null)}}"}.name}/*/*/*{plex.nam...
by RudyBzh
30 Jan 2021, 18:11
Forum: Help and Support
Topic: Renaming movies, {any}method with values + strings troubles
Replies: 18
Views: 11104

Re: Renaming movies, {any}method with values + strings troubles

Hi, I’m having this issue (« tt null ») but it’s on the folder’s name, so I can not use « plex.derive » (as I know). Here is my format : /mnt/NAS/{genres =~ /Animation/ ? 'Animés' : 'Films'}/{plex.name} {'{'+imdbid+'}'}/{plex.name} {'{'+imdbid+'}'}{'['+{source+'-'}+vf+']'+{fn.matchAll(/repack|proper...
by RudyBzh
07 Aug 2015, 11:30
Forum: Scripting and Automation
Topic: Difference between --action duplicate and --action copy
Replies: 6
Views: 8510

Re: Difference between --action duplicate and --action copy

Ok, i think i understood.
I'll try for a few days and see what happens.
Hardlink was the older way i was using filebot but due to lack of space, i have to split movies and tv shows on different drive. So i can't use anymore hardlink (for my tv shows...)
Thanks a lot !
by RudyBzh
07 Aug 2015, 09:00
Forum: Scripting and Automation
Topic: Difference between --action duplicate and --action copy
Replies: 6
Views: 8510

Re: Difference between --action duplicate and --action copy

Hi, Thanks for your fast answer but it's not the case. Here are some logs : Run script [fn:amc] at [Thu Aug 06 23:16:17 CEST 2015] Parameter: subtitles = n Parameter: music = n Parameter: artwork = n Parameter: ut_dir = D:\Downloads\Terminé Parameter: ut_file = TheMovieHere.2015.MULTi.1080p.BluRay.x...
by RudyBzh
06 Aug 2015, 19:21
Forum: Scripting and Automation
Topic: Difference between --action duplicate and --action copy
Replies: 6
Views: 8510

Re: Difference between --action duplicate and --action copy

Hi, That was exactly what i was looking for.... BUT unfortunately it's not working as described. Using duplicate is trying, for me, to do a "rename", which is not working because the file is in seed and used by vuze. How can i "hardlink" if i can and "copy" if not ? Tha...
by RudyBzh
01 Apr 2013, 15:26
Forum: Scripting and Automation
Topic: [RESOLVED] Utilisation of µtorrent parameters ?
Replies: 8
Views: 6793

[RESOLVED] Re: Utilisation of µtorrent parameters ?

Your a boss ! I was using "filebot -clear-cache" without success But after doing this : filebot -script fn:xattr --action clear "D:\Downloads\Terminé\[www.Cpasbien.me] Django.Unchained.2012.FRENCH.BDRip.XviD-AYMO" D:\Downloads\Script>filebot -script fn:xattr --action clear "...
by RudyBzh
01 Apr 2013, 14:48
Forum: Scripting and Automation
Topic: [RESOLVED] Utilisation of µtorrent parameters ?
Replies: 8
Views: 6793

Re: Utilisation of µtorrent parameters ?

Exact, seems to be working for you even for subs...!?!
I did a clear cache before doing it...
Well, I'm going to look deeper on this point.
Thanks for your time.
by RudyBzh
01 Apr 2013, 14:37
Forum: Scripting and Automation
Topic: [RESOLVED] Utilisation of µtorrent parameters ?
Replies: 8
Views: 6793

Re: Utilisation of µtorrent parameters ?

Hi Rednoah & thank you so much for your fast answer ! I confirm you that its much more better than before ! Nevertheless it's still generating the old fashion directory for the subtitles already included in the download resulting in the creation of 2 folders (one with the 1966 movie containing t...
by RudyBzh
31 Mar 2013, 14:28
Forum: Scripting and Automation
Topic: [RESOLVED] Utilisation of µtorrent parameters ?
Replies: 8
Views: 6793

[RESOLVED] Utilisation of µtorrent parameters ?

Hi all and thanks a lot for this amazing tool FileBot is ! I trying to configure everything for an Automated Media Center as far as I can but it's not very easy... ;) Well, the first misunderstood I have is about the way amc script is using paramaters from µtorrent... Seems only file name as I can s...