Page 11 of 28

Re: Release Groups {group}

Posted: 09 Oct 2017, 22:36
by steve9000
SUJAIDR

Re: Release Groups {group}

Posted: 13 Oct 2017, 17:21
by steve9000
GeekRG

Re: Release Groups {group}

Posted: 13 Oct 2017, 18:52
by steve9000
Ozlem

Re: Release Groups {group}

Posted: 13 Oct 2017, 21:07
by steve9000
BADASSMEDIA

Re: Release Groups {group}

Posted: 13 Oct 2017, 23:13
by steve9000
-=!Dr.STAR!=-

Re: Release Groups {group}

Posted: 15 Oct 2017, 21:35
by steve9000
BTGM

Re: Release Groups {group}

Posted: 16 Oct 2017, 18:50
by steve9000
FRISKY

Re: Release Groups {group}

Posted: 17 Oct 2017, 17:36
by steve9000
GunGravE

Re: Release Groups {group}

Posted: 17 Oct 2017, 23:16
by steve9000
Judas

Re: Release Groups {group}

Posted: 18 Oct 2017, 00:44
by steve9000
BLiTZKRiEG

Re: Release Groups {group}

Posted: 18 Oct 2017, 17:04
by steve9000
POOP

Re: Release Groups {group}

Posted: 18 Oct 2017, 18:45
by steve9000
GSFTX

Re: Release Groups {group}

Posted: 18 Oct 2017, 20:35
by steve9000
GAZ

Re: Release Groups {group}

Posted: 18 Oct 2017, 21:10
by rednoah
Collecting missing groups locally and only posting the list every Friday would be appreciated. The data files aren't automatically compiled until Saturday anyway. ;)

Re: Release Groups {group}

Posted: 19 Oct 2017, 14:54
by steve9000
Alright I'll try to do that. Just been keeping this page open and adding new ones as I ran into them. I'll try to compile them and submit them Fridayish.
Thanks for your quick additions though. It's great seeing them show up in Filebot.

Re: Release Groups {group}

Posted: 19 Oct 2017, 18:11
by rednoah
Thanks for your help with keeping the list up to date. Your help is much appreciated. :)

Re: Release Groups {group}

Posted: 20 Oct 2017, 16:57
by steve9000
CrEwSaDe
LoRD
FK99
ROIMEZ
TnTvillage
PopHD
M2Tv
SAMUEL98

Re: Release Groups {group}

Posted: 22 Oct 2017, 16:14
by TehBotol
strife

Re: Release Groups {group}

Posted: 24 Oct 2017, 20:33
by steve9000
VISIONPLUSHDR1000
-SDC-
RoB
EmEm
EmeraldEmpire
Dr3adLoX
GOD
ZMachine
n0m1
DTOne

Re: Release Groups {group}

Posted: 24 Oct 2017, 21:29
by angreed
Missing P2P groups:

Ms89
HDVN
Smithers
DHARMA
MULTiPLEX
HvO
4DDL
DnO

Re: Release Groups {group}

Posted: 24 Oct 2017, 23:10
by angreed
kim wrote: 19 Jun 2017, 18:31 You can try my "group" resolver

if in the builtin "group", group-jshdfjhvsdf.ext or sdkjhdvfsdsf-group.ext it will get it ;)
plus some more... "filters"

Code: Select all

{
def dn = call{(file.parentFile.name).match(/(?:\-\w+(?=\[\w+\])|\-\w+$)/)};
def nn = call{fn.match(/(?:(?=(?:19|20)+[0-9]+)\w.+$)/)};
def g = call{(file.parentFile.name+'.'+fn).find(/\-/) ? call{group.replaceAll(/\bDK\b|\bFS\b/,'')} : null};
def gg = '-'+g;
def gb = call{fn.match(/(?:^\w{3,}(?=[-]))/)};
def fm = call{fn.match(/(?:(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+$)|(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+[\.\_]\w+[\-]\w+$)|(?:\-\w+(?=\.cd[0-9]|\-trailer|\.part[0-9]|\.dan|\.eng))|(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+[\-\.\_](?!\b720p\b|\b1080p\b)\w+$)|(?:\-\w+[\.]+\w+(?=\.cd[0-9]))|(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+(?=\[\w+\]$)))/)};
if(g!=null && dn!=null && gg.equalsIgnoreCase(dn)) return '-'+g;
if(g!=null && dn!=null) return dn;
if(nn==null && dn!=null) return dn;
if(g!=null && (fm!=null||gb!=null) && (gg.equalsIgnoreCase(fm) || g.equalsIgnoreCase(gb))) return '-'+g;
if(g!=null && g!= '' && (fm!=null && gb!=null)) return '-'+g;
if(g==null && fm!=null && nn!=null) return ''+fm;
if(gb!=null && fm!=null && nn!=null) return '-'+gb;
if(gb!=null && g==null && fm==null && g==null && dn==null && nn==null) return '-'+gb;
if(g!=null && fm!=null && g!=fm) return fm;
if(g==null && fm==null && gb!=null && dn==null && nn==null) return '-'+gb;
if(g==null && fm!=null && gb!=null && dn==null && nn==null) return '-'+gb;
if(fm!=null) return fm}
This works great for me with only one exception: Groups like "D-Z0N3" or "FTW-HD" are recognized by the {group} binding but your group resolver will remove the part before the "-" - I'll try to fix it when I find some time tomorrow

Re: Release Groups {group}

Posted: 25 Oct 2017, 06:44
by ChoosenEye
HQC
Smithers
ATAX
CDP
ACED

Re: Release Groups {group}

Posted: 27 Oct 2017, 04:15
by steve9000
RavenCrow
SiGMA
HEVC.CLUB

Re: Release Groups {group}

Posted: 27 Oct 2017, 18:22
by steve9000
HDReactor
KOSHARA
ZeiZ
BT4K

Re: Release Groups {group}

Posted: 28 Oct 2017, 18:10
by kim
This is by design because "group" give false positives... so my code:
group most be backed up by something with "-" at the start
so "-D-Z0N3" in filename match "-D-Z0N3" and e.g. ".D-Z0N3" = "-Z0N3"

if you can make group/my code not give false positives then PLEASE do so and SHARE it ;)
angreed wrote: 24 Oct 2017, 23:10
kim wrote: 19 Jun 2017, 18:31 You can try my "group" resolver

if in the builtin "group", group-jshdfjhvsdf.ext or sdkjhdvfsdsf-group.ext it will get it ;)
plus some more... "filters"

Code: Select all

{
def dn = call{(file.parentFile.name).match(/(?:\-\w+(?=\[\w+\])|\-\w+$)/)};
def nn = call{fn.match(/(?:(?=(?:19|20)+[0-9]+)\w.+$)/)};
def g = call{(file.parentFile.name+'.'+fn).find(/\-/) ? call{group.replaceAll(/\bDK\b|\bFS\b/,'')} : null};
def gg = '-'+g;
def gb = call{fn.match(/(?:^\w{3,}(?=[-]))/)};
def fm = call{fn.match(/(?:(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+$)|(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+[\.\_]\w+[\-]\w+$)|(?:\-\w+(?=\.cd[0-9]|\-trailer|\.part[0-9]|\.dan|\.eng))|(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+[\-\.\_](?!\b720p\b|\b1080p\b)\w+$)|(?:\-\w+[\.]+\w+(?=\.cd[0-9]))|(?:\-(?!\bDL\b|\bRip\b|\bES\b|\bHD\b)\w+(?=\[\w+\]$)))/)};
if(g!=null && dn!=null && gg.equalsIgnoreCase(dn)) return '-'+g;
if(g!=null && dn!=null) return dn;
if(nn==null && dn!=null) return dn;
if(g!=null && (fm!=null||gb!=null) && (gg.equalsIgnoreCase(fm) || g.equalsIgnoreCase(gb))) return '-'+g;
if(g!=null && g!= '' && (fm!=null && gb!=null)) return '-'+g;
if(g==null && fm!=null && nn!=null) return ''+fm;
if(gb!=null && fm!=null && nn!=null) return '-'+gb;
if(gb!=null && g==null && fm==null && g==null && dn==null && nn==null) return '-'+gb;
if(g!=null && fm!=null && g!=fm) return fm;
if(g==null && fm==null && gb!=null && dn==null && nn==null) return '-'+gb;
if(g==null && fm!=null && gb!=null && dn==null && nn==null) return '-'+gb;
if(fm!=null) return fm}
This works great for me with only one exception: Groups like "D-Z0N3" or "FTW-HD" are recognized by the {group} binding but your group resolver will remove the part before the "-" - I'll try to fix it when I find some time tomorrow