Page 1 of 1

Add {1080p,x265,AAC} to the season folder name

Posted: 14 May 2025, 18:44
by smokindevil
Hello, ive done as much searching as i can handle and i don't think i can find anything as specific as im wanting.

this is the current code i use for tv shows.

Format: Select all

{Drive}/TV Shows/{ ~plex.id ** { " {$vf,$vc,$ac}" } }
which gives me this result.

Code: Select all

E:/TV Shows/1923 {tmdb-157744} {1080p,x265,AAC}/Season 01/1923 - S01E01 - 1923 {1080p,x265,AAC}
I was wondering if somehow i can move the vf,vc,ac to seasons folder instead of name folder like this

Code: Select all

E:/TV Shows/1923 {tmdb-157744}/Season 01 {1080p,x265,AAC}/1923 - S01E02 - Nature's Empty Throne {1080p,x265,AAC}
the vf,vc,ac tags dont necessarily have to be on the end of the file itself. just the season folder name. thank you in advanced.

Re: renaming help

Posted: 14 May 2025, 20:02
by rednoah
e.g. use << to append values to the season folder name:

Format: Select all

{drive}/{ plex.id << { " {$vf,$vc,$ac}" } }

Code: Select all

X:/TV Shows/Alias {tmdb-2046}/Season 01 {480p,x264,AC3}/Alias - S01E01 - Truth Be Told

Re: Add {1080p,x265,AAC} to the season folder name

Posted: 14 May 2025, 21:11
by smokindevil
wow thats annoying that its that simple. i never saw any references to ** or <<. Thank you very much!