naming with multiple audio and codec

Any questions? Need some help?
Post Reply
iamloco
Posts: 9
Joined: 26 Jun 2015, 11:59

naming with multiple audio and codec

Post 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]
User avatar
rednoah
The Source
Posts: 24281
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: naming with multiple audio and codec

Post 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
:idea: Please read the FAQ and How to Request Help.
iamloco
Posts: 9
Joined: 26 Jun 2015, 11:59

Re: naming with multiple audio and codec

Post by iamloco »

thanks rednoah :)
Post Reply