Page 1 of 1

naming with multiple audio and codec

Posted: 11 Nov 2025, 13:35
by iamloco
hello,
after years of using my naming scheme around 10 if i believe my email registration :lol: i'm looking to spice it up a bit.

Format: Select all

Video/Movie/{collection+'/'}{n} ({y})/{n} ({y}) [{vc}, {vf}, {ac}, {af}]
is there anyway to add multiple language and their corresponding audio codec

Code: Select all

Moviename (Years) [AVC, 1080p, FR EAC3 6ch , EN AC3 6ch , etc]

Re: naming with multiple audio and codec

Posted: 11 Nov 2025, 15:18
by rednoah
e.g.

Format: Select all

{ audio.collect{ it.Language.upper() + ' ' + it.Format.removeAll(/\W/) + ' ' + it.Channels + 'ch' }.join(', ') }

Code: Select all

EN AC3 2ch, JA AC3 2ch

Re: naming with multiple audio and codec

Posted: 14 Nov 2025, 13:40
by iamloco
thanks rednoah :)