Implement multiple versions of the same movie

All your suggestions, requests and ideas for future development
Post Reply
samsonwilliams
Posts: 1
Joined: 08 May 2024, 09:29

Implement multiple versions of the same movie

Post by samsonwilliams »

Hi.

Any ability to implement multiple versions of the same movie?

I.e. Blade Runner - Director's cut, Blade Runner - Theatrical Version, Star Wars - Original, Star Wars - Remastered, Any Version - Extended Version? It's often difficult to have variants of the movie in the library.

I may have missed the search when looking for this.
User avatar
rednoah
The Source
Posts: 23063
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Implement multiple versions of the same movie

Post by rednoah »

:idea: Your custom format simply needs to generate a unique target file path for each unique input file.



e.g. use the {tags} binding to match known editions / tags from the file name to generate a unique file path:

Format: Select all

{ ny } { tags }


e.g. copy & paste arbitrary patterns from the original file name to generate a unique file path:

Format: Select all

{ ny }{ ' - ' + fn.match(/Director's Cut|Theatrical Version|Extended Version/) }


e.g. use the {plex} binding and the {edition} binding to generate a unique file path:

Format: Select all

{ ~plex.id ** { " {edition-$edition}" } }
:idea: Please read the FAQ and How to Request Help.
Post Reply