Search found 6 matches

by haveabreak
30 Jul 2020, 22:43
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 111
Views: 287233

Re: Multiple audio tracks with different codecs and languages


very easy just replace the
{ac}{channels}

like so:
{plex.derive{' ' + tags.join(' ')}{' [' + allOf{vs}{vf}{hdr}{
def preferredLang = 'Eng'
def useChFilter = false
def filter = { [it.codec, it.ch, it.objects, it.lang] }

def codecList =
[
'MP3' : 'MP3',
'PCM' : 'PCM',
'AAC LC' : 'AAC ...
by haveabreak
30 Jul 2020, 13:49
Forum: Episode / Movie Naming Scheme
Topic: Multiple audio tracks with different codecs and languages
Replies: 111
Views: 287233

Re: Multiple audio tracks with different codecs and languages


Added addToList = to make it more user friendly ( output e.g. [Add to "DTS XBR" codecList] )
Added useChFilter = to make it more user friendly ( true or false, makes it more "scene" like )

{
def preferredLang = 'Eng'
def useChFilter = false
def filter = { [it.codec, it.ch, it.objects, it.lang ...
by haveabreak
08 Jul 2020, 16:43
Forum: Episode / Movie Naming Scheme
Topic: newbie help - naming UHD or 4K or 2160p and REMUX plus more
Replies: 20
Views: 28805

Re: newbie help - naming UHD or 4K or 2160p and REMUX plus more

Thanks so much for your help man. I ran into a problem:

Do you know why it renames TrueHD to MLPFBA Microsoft and how I can fix this?

Sherlock.S01.REPACK.1080p.BluRay.REMUX.VC-1.TrueHD.5.1-EPSiLON

Sherlock - S01E01 - Pilot [BluRay 1080p MLPFBA 5.1 Microsoft REMUX]-EPSiLON.mkv


same happens ...
by haveabreak
06 Jul 2020, 14:52
Forum: Episode / Movie Naming Scheme
Topic: newbie help - naming UHD or 4K or 2160p and REMUX plus more
Replies: 20
Views: 28805

Re: newbie help - naming UHD or 4K or 2160p and REMUX plus more


{plex.derive{' ' + tags.join(' ')}{' [' + allOf{vs}{vf}{hdr}{ac}{channels}{vc.replace('AVC','x264').replace('HEVC','x265')}{fn.match(/REMUX/).upper()}.join(' ') + ']' + {'-' + group}}.tail}


This worked perfectly! Would love to send some beer money if you dont mind. Are you on the filebot ...
by haveabreak
06 Jul 2020, 09:01
Forum: Episode / Movie Naming Scheme
Topic: newbie help - naming UHD or 4K or 2160p and REMUX plus more
Replies: 20
Views: 28805

Re: newbie help - naming UHD or 4K or 2160p and REMUX plus more

kim wrote: 05 Jul 2020, 23:21

Code: Select all

{plex.derive{' ' + tags.join(' ')}{' [' + allOf{vs}{vf}{hdr}{ac}{channels}{vc.replace('AVC','x264').replace('HEVC','x265')}{fn.match(/REMUX/).upper()}.join(' ') + ']' + {'-' + group}}.tail}
Thank you so much!
by haveabreak
05 Jul 2020, 21:38
Forum: Episode / Movie Naming Scheme
Topic: newbie help - naming UHD or 4K or 2160p and REMUX plus more
Replies: 20
Views: 28805

Re: newbie help - naming UHD or 4K or 2160p and REMUX plus more

movieFormat={plex.derive{' '+tags.join(' ')}{' ['+allOf{vf}{vs}{ac}{vc.replace('AVC':'x264','HEVC':'x265')}{group}.join(' ')+']'}.tail}

This is my movie naming format at the moment. How would I go about adding Remux and HDR to this? Thanks for the help :)

Would this work? Sorry, I am a complete ...