Plex Id Derive with Edition Tag

All about user-defined episode / movie / file name format expressions
Post Reply
milopalmer
Posts: 7
Joined: 14 Oct 2021, 21:18

Plex Id Derive with Edition Tag

Post by milopalmer »

I'm using the following expression and am wondering how to adjust it to include the edition tag on the folder as well as the filename? Right now it's only included in the filename.

Code: Select all

{ ~plex.id.derive{" {tmdb-$id} "} } { "edition-$edition}" }
Results in:

Code: Select all

/300 (2007) {tmdb-1271}/300 (2007) {tmdb-1271} {edition-Extended Edition}...
Desired:

Code: Select all

/300 (2007) {tmdb-1271} {edition-Extended Edition}/300 (2007) {tmdb-1271} {edition-Extended Edition}...
Thanks!
User avatar
rednoah
The Source
Posts: 23008
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Plex Id Derive with Edition Tag

Post by rednoah »

rednoah wrote: 12 Sep 2016, 10:03 e.g. Avatar (2009) {tmdb-19995} {edition-Extended Edition}/Avatar (2009) {edition-Extended Edition}
Multiple Editions

Format: Select all

{ ~plex.id ** { " {edition-$edition}" } }
:arrow: Plex Naming Schemes › Advanced {plex} operators



e.g. start with the example above, and then add {tmdb-12345} to the file / folder name as well:

Format: Select all

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