Search found 107 matches

by AbedlaPaille
27 May 2020, 11:13
Forum: Episode / Movie Naming Scheme
Topic: Custom Collections Library
Replies: 0
Views: 3784

Custom Collections Library

You know the Collections page in Plex? Some people tune it with custom collections for an easier access to their media. I did something similar here. The scheme uses 7 top level folder thematics (so far!) and checks for a match in that order : Studios Marvel Pixar Ghibli Collections (If more than 1 ...
by AbedlaPaille
27 May 2020, 07:56
Forum: Help and Support
Topic: info.OriginalLanguage displayLanguage problem
Replies: 6
Views: 2554

info.OriginalLanguage displayLanguage problem

Code: Select all

{info.OriginalLanguage.toLocale().displayLanguage}
Works like a charm except it displays cn instead of Cantonese https://i.imgur.com/JpYovec.png.

Is this on tmdb's end?
by AbedlaPaille
25 May 2020, 05:03
Forum: Episode / Movie Naming Scheme
Topic: Using {model} for dealing with collections holistically
Replies: 16
Views: 6727

Re: Using {model} for dealing with collections holistically

Holy molly this works ! Genius !! Thanks a lot guys this is fantastic :D
by AbedlaPaille
25 May 2020, 04:29
Forum: Help and Support
Topic: Around Filebot
Replies: 4
Views: 1961

Around Filebot

How do you guys take advantage of your Filebot schemes? Do you only browse your files through Plex/Kodi and your OS file explorer or are there programs between both usages? As of right now to play around sorting orders on a file explorer i hardlink with different schemes (size, genre, rating, langua...
by AbedlaPaille
25 May 2020, 04:08
Forum: Episode / Movie Naming Scheme
Topic: Using {model} for dealing with collections holistically
Replies: 16
Views: 6727

Re: Using {model} for dealing with collections holistically

collection with only one movie processed = treat as single movie, collection with more than one = treat as collection
Any help to make this happen?
by AbedlaPaille
17 May 2020, 22:46
Forum: Episode / Movie Naming Scheme
Topic: Using {model} for dealing with collections holistically
Replies: 16
Views: 6727

Re: Using {model} for dealing with collections holistically

I now realize Kim's 2nd expression works, just differently than i assumed. It differenciates based on how many movies are in the processed batch rather than how many movies of the same collection are in the same batch. e.g. collection with only one movie processed = treat as single movie, collection...
by AbedlaPaille
17 May 2020, 00:19
Forum: Episode / Movie Naming Scheme
Topic: Rename and move Subtitles properly?
Replies: 7
Views: 7300

Re: Rename and move Subtitles properly?

French scene releases match that yep, but usually those releases use internal subs so they're matched with a textLanguage. This is my current subs expression: {any{audio.language[0] != /fr/ && textLanguages =~ /fra/ ? 'VOSTFR' : ''} {textLanguages =~ /fra/ ? 'VOSTFR' : ''} {fn.match(/VOSTFR|...
by AbedlaPaille
16 May 2020, 01:40
Forum: Episode / Movie Naming Scheme
Topic: (ask) How to rename movie with filesize in gigabytes
Replies: 8
Views: 6018

Re: (ask) How to rename movie with filesize in gigabytes

Wow we can make stuff happen depending on how many files are in? Cool.

{gigabytes} works great, just wanted 700 MO displayed instead of 0.7 GO in those < 1GO files.
by AbedlaPaille
15 May 2020, 23:52
Forum: Episode / Movie Naming Scheme
Topic: MultiCD naming: {pi} VS {fn.match(/CD\d/)}
Replies: 12
Views: 53871

Re: MultiCD naming: {pi} VS {fn.match(/CD\d/)}

Code: Select all

The file size doesn't matter, but multi-part movie files ideally all have the same video codec, audio codec, same resolution, comparable duration, etc.
That was it in every occurence. Multi part movies that had some of those differing. Had to go manual on them.
by AbedlaPaille
15 May 2020, 23:47
Forum: Episode / Movie Naming Scheme
Topic: [allOf] separators customization
Replies: 5
Views: 2905

Re: [allOf] separators customization

{allOf{1}{2}{3}.joining('-', '[', ']')} Even cleaner, perfect! I was writing just that in my tests before posting but i was using .join instead of .joining .. grumbles [edit] Feel terrible because i realise you had already showed me the way in a previous thread.. :? [/edit] Can it delve further ins...
by AbedlaPaille
15 May 2020, 23:30
Forum: Episode / Movie Naming Scheme
Topic: Rename and move Subtitles properly?
Replies: 7
Views: 7300

Re: Rename and move Subtitles properly?

How would one go about improving a "is there subs and in what languages?" expression for it to catch attached .srt and their language to parse them on the movie folder name? As of now i can only get internal ones with textLanguages. I feel like i'm coming closer by adding {if (ext == 'srt'...
by AbedlaPaille
15 May 2020, 22:41
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527071

Re: MediaInfo Inspector

What's the best way to work with files lacking mediainfo, for example audio languages?

I was thinking i might be able to modify the mediainfo audio language directly with the mediainfo program you linked, seems i can only visualize it though.
by AbedlaPaille
14 May 2020, 22:21
Forum: Episode / Movie Naming Scheme
Topic: [allOf] separators customization
Replies: 5
Views: 2905

Re: Learn how {expressions} work and useful Helper Functions

Thanks works perfectly! Can you explain why the .replaceAll becomes needed and/or what the symbols inside mean and do? Or a relevant link for that kind of syntax. Anyway thanks a lot.
by AbedlaPaille
14 May 2020, 17:31
Forum: Episode / Movie Naming Scheme
Topic: [allOf] separators customization
Replies: 5
Views: 2905

[allOf] separators customization

Struggling with an aspect of allOf, separators customization. By default it limits with brackets and puts a comma and a space in between. .join() custom function acts on comma+space but loses the brackets on both ends. How to keep the brackets with a custom .join() ? The way to combine variables and...
by AbedlaPaille
12 May 2020, 04:29
Forum: Episode / Movie Naming Scheme
Topic: Using {model} for dealing with collections holistically
Replies: 16
Views: 6727

Re: Using {model} for dealing with collections holistically

Thanks guys. Kim the first one works great but does the second one work on your end?
by AbedlaPaille
09 May 2020, 18:47
Forum: Episode / Movie Naming Scheme
Topic: (ask) How to rename movie with filesize in gigabytes
Replies: 8
Views: 6018

Re: (ask) How to rename movie with filesize in gigabytes

So you're switching your format for each file!? Just a condition that formats files differently depending on their file size. {file.length() < 1e6 ? (file.length()/1e6).toFloat().round() + ' MB' : (file.length()/1e9).toFloat().round(1) + ' GB'} Is this supposed to display 0.8 GB ? Thought it'd use ...
by AbedlaPaille
09 May 2020, 18:41
Forum: Episode / Movie Naming Scheme
Topic: Using {model} for dealing with collections holistically
Replies: 16
Views: 6727

Using {model} for dealing with collections holistically

Amazing stuff, delighted about this. Getting euphoria rushes working on my format scheme, filebot comfirmed more thrilling than most AAA games :D Question: {model.episode.containsAll(episodelist) ? '[complete]' : '[incomplete]'} Possible to adapt this to collections? No success so far but i'm sure i...
by AbedlaPaille
07 May 2020, 15:41
Forum: Help and Support
Topic: Collections & Standardising Movies Names
Replies: 5
Views: 2448

Re: Collections & Standardising Movies Names

1. Since the Naming and organizing your Movie files documentation is very specific about folder structure, and doesn't have anything to say about collection folders, adding collection folders will likely break things. :arrow: https://support.plex.tv/articles/naming-and-organizing-your-movie-media-f...
by AbedlaPaille
07 May 2020, 14:50
Forum: Episode / Movie Naming Scheme
Topic: MultiCD naming: {pi} VS {fn.match(/CD\d/)}
Replies: 12
Views: 53871

Re: MultiCD naming: {pi} VS {fn.match(/CD\d/)}

What reasons could there be for the {pi} binding to not catch a few of my multi-part movies that are named the same, processed in the same input and matched to the same movie by theMovieDB? It doesn't display CD123, but the binding otherwise works on about half my multi part movies, bit weird. The h...
by AbedlaPaille
07 May 2020, 14:45
Forum: Help and Support
Topic: rename one subtitle if it has the same name as another one
Replies: 13
Views: 6329

Re: rename one subtitle if it has the same name as another one

Have you tried something like this yet? The {di} duplicate index and {dc} duplicate count should do the job: {if (dc > 1) ".part$di"} https://i.snipboard.io/wIUKDc.jpg {if (dc > 1) " ($di)"} This has been a time savior, thank you so much. But why doesn't it take into considerati...
by AbedlaPaille
04 May 2020, 13:56
Forum: Episode / Movie Naming Scheme
Topic: Original Language tag
Replies: 1
Views: 2147

Original Language tag

Is it possible to display a {info.originalLanguage} tag in full instead of the two letter abreviation? eg KOREAN instead of KO. Something similar to audio.Languages[0].name but idk if themovieDB allows it.
by AbedlaPaille
04 May 2020, 07:01
Forum: Episode / Movie Naming Scheme
Topic: Move and rename files but keep Plex link?
Replies: 2
Views: 2589

Re: Move and rename files but keep Plex link?

Thanks a lot, seems to be working well !

Hardlinks are straight amazing, wow. I can have a windows folder by director and another by title, all that without losing space. Man, this is ridiculously good.
by AbedlaPaille
02 May 2020, 05:18
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527071

Re: Conditional Structures (if-then-else)

Didn't get that sorry, bit of a noob. How do you suggest i write info.OriginalLanguage =~ /en/ ? primaryTitle : n if it's within a {any{'/'/' }{'/'/' }} path? Most syntax i tried don't seem to be working. And what am i missing when it comes to displaying potential attributes on folders like i do wit...
by AbedlaPaille
01 May 2020, 23:55
Forum: Episode / Movie Naming Scheme
Topic: Move and rename files but keep Plex link?
Replies: 2
Views: 2589

Move and rename files but keep Plex link?

I've found out you can use copy instead of rename to keep Plex links. Scan the Plex library to include the new duplicates, remove original files, rescan. After reading this thread https://www.filebot.net/forums/viewtopic.php?t=10976 i'm wondering if you could take advantage of those keeplink, symlin...