Add generated TRaSH-Guides with scripts
This commit is contained in:
parent
8e15e62281
commit
0857ea9dc6
885 changed files with 13936 additions and 34503 deletions
4
regex_patterns/10-mono.yml
Normal file
4
regex_patterns/10-mono.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 1.0 Mono
|
||||
pattern: '[^0-9][5-9][ .][0-1]\b'
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
name: 10bit-HDS
|
||||
pattern: (?<=^|[\s.-])10bit-HDS\b
|
||||
description: 'Matches the release group `10bit-HDS` only if it is:
|
||||
|
||||
|
||||
- Preceded by the start of the string (`^`), a whitespace character (`\s`), a period
|
||||
(`.`), or a hyphen (`-`).
|
||||
|
||||
- Followed by a word boundary (`\b`), ensuring it ends cleanly without being part
|
||||
of a longer word. '
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
4
regex_patterns/10bit.yml
Normal file
4
regex_patterns/10bit.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 10bit
|
||||
pattern: hi10p
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
4
regex_patterns/20-stereo.yml
Normal file
4
regex_patterns/20-stereo.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 2.0 Stereo
|
||||
pattern: '[^0-9]1[ .]0\b|\bMono\b|\[PCM \]'
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
4
regex_patterns/30-sound.yml
Normal file
4
regex_patterns/30-sound.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 3.0 Sound
|
||||
pattern: '[^0-9][5-9][ .][0-1]\b'
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
name: 3D
|
||||
pattern: \b((bluray|bd)?3d|sbs|half[ .-]ou|half[ .-]sbs)\b
|
||||
description: 'Matches terms related to 3D video formats:
|
||||
|
||||
- `bluray3d` or `bd3d` (optional `bluray` or `bd` followed by `3d`).
|
||||
|
||||
- `sbs` (side-by-side).
|
||||
|
||||
- `half ou` or `half sbs` with space (` `), dot (`.`), or hyphen (`-`) as separators.'
|
||||
tags:
|
||||
- Enhancement
|
||||
- Unwanted
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Universal.Soldier.Day.of.Reckoning.2012.1080p.BluRay.3D.H-SBS.DTS.x264-BluRay3D
|
||||
lastRun: '2024-12-13T06:50:15.135830'
|
||||
matchSpan:
|
||||
end: 55
|
||||
start: 53
|
||||
matchedContent: 3D
|
||||
matchedGroups:
|
||||
- 3D
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: Justin.And.The.Knights.Of.Valour.3D.2013.1080p.BluRay.Half-SBS.x264-BluRay3D
|
||||
lastRun: '2024-12-13T06:50:15.135830'
|
||||
matchSpan:
|
||||
end: 35
|
||||
start: 33
|
||||
matchedContent: 3D
|
||||
matchedGroups:
|
||||
- 3D
|
||||
- null
|
||||
passes: true
|
||||
4
regex_patterns/3d.yml
Normal file
4
regex_patterns/3d.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 3D
|
||||
pattern: \b(BD3D)\b
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
4
regex_patterns/40-sound.yml
Normal file
4
regex_patterns/40-sound.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 4.0 Sound
|
||||
pattern: '[^0-9][5-9][ .][0-1]\b'
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
name: 4K4U
|
||||
pattern: (?<=^|[\s.-])4K4U\b
|
||||
description: 'Matches the release group `4K4U` only if it is:
|
||||
|
||||
|
||||
- Preceded by the start of the string (`^`), a whitespace character (`\s`), a period
|
||||
(`.`), or a hyphen (`-`).
|
||||
|
||||
- Followed by a word boundary (`\b`), ensuring it ends cleanly without being part
|
||||
of a longer word. '
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: 4KDVS
|
||||
pattern: (?<=^|[\s.-])4KDVS\b
|
||||
description: 'Matches "4KDVS" when preceded by whitespace, a hyphen or dot'
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
4
regex_patterns/4k-remaster.yml
Normal file
4
regex_patterns/4k-remaster.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 4K Remaster
|
||||
pattern: 4k
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
4
regex_patterns/51-surround.yml
Normal file
4
regex_patterns/51-surround.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 5.1 Surround
|
||||
pattern: (?<!repac)[^0-9][1-4][ .][0-1]\b|\b(Stereo|Mono)\b
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
4
regex_patterns/61-surround.yml
Normal file
4
regex_patterns/61-surround.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 6.1 Surround
|
||||
pattern: (?<!repac)[^0-9][1-4][ .][0-1]\b|\b(Stereo|Mono)\b
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
name: 7.1 Surround
|
||||
pattern: '7\.1'
|
||||
description: ''
|
||||
tags:
|
||||
- Audio
|
||||
- Channel
|
||||
tests: []
|
||||
4
regex_patterns/71-surround.yml
Normal file
4
regex_patterns/71-surround.yml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
name: 7.1 Surround
|
||||
pattern: (?<!repac)[^0-9][1-4][ .][0-1]|\b(Stereo|Mono)\b
|
||||
description: Regex pattern from TRaSH-Guides.
|
||||
tags: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: AAAUHD
|
||||
pattern: (?<=^|[\s.-])AAAUHD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: AAC
|
||||
pattern: \bAAC(\b|\d)
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: ABBIE
|
||||
pattern: (?<=^|[\s.-])ABBIE\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: ADE
|
||||
pattern: (?<=^|[\s.-])ADE\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: AJP69
|
||||
pattern: (?<=^|[\s.-])AJP69\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: APEX
|
||||
pattern: (?<=^|[\s.-])APEX\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
name: AV1
|
||||
pattern: \bAV1\b
|
||||
description: AV1, or AOMedia Video 1, is a video coding format that compresses video
|
||||
files and streams while maintaining high quality.
|
||||
tags:
|
||||
- Codec
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Arcane S01 2160p UHD BluRay DD 5.1 DV HDR AV1-TiZU
|
||||
lastRun: '2024-12-13T07:04:08.442964'
|
||||
matchSpan:
|
||||
end: 45
|
||||
start: 42
|
||||
matchedContent: AV1
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: Up.2009.2160p.Bluray.AC3.HDR.DV.AV1-TiZU.mkv
|
||||
lastRun: '2024-12-13T07:04:08.442964'
|
||||
matchSpan:
|
||||
end: 35
|
||||
start: 32
|
||||
matchedContent: AV1
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: AViATOR
|
||||
pattern: (?<=^|[\s.-])AViATOR\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: Absinth
|
||||
pattern: (?<=^|[\s.-])Absinth\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
name: Amazon Prime
|
||||
pattern: \b(?:amzn|(?:AMZN|Amazon)(?=\s*(?:WEB-?DL|HD)))\b
|
||||
description: Amazon Prime Video, or simply Prime Video, is an American subscription
|
||||
video on-demand over-the-top streaming and rental service of Amazon offered both
|
||||
as a stand-alone service and as part of Amazon's Prime subscription.
|
||||
tags:
|
||||
- Streaming Service
|
||||
- WEB-DL
|
||||
- WEBRip
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Futurama.S03E01.Amazon Women in the Mood.1080p.AMZN.WEB-DL.DDP2.0.H.264-Yatogam1.mkv
|
||||
lastRun: '2024-12-06T01:59:08.829137'
|
||||
matchSpan:
|
||||
end: 51
|
||||
start: 47
|
||||
matchedContent: AMZN
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 2
|
||||
input: Futurama.S03E05.Amazon.Women.in.the.Mood.NF.WEB DL.DDP2.0.x264 CtrlSD.mkv
|
||||
lastRun: '2024-12-06T01:59:08.829137'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 3
|
||||
input: Amazon.Women.on.the.Moon.1987.720p.BluRay.x264-HANDJOB.mkv
|
||||
lastRun: '2024-12-06T01:59:08.829137'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: First.Contact.Lost.Tribe.of.the.Amazon.2016.1080p.AMZN.WEB-DL.DDP2.0.H.264-Q0SWeb.mkv
|
||||
lastRun: '2024-12-06T01:59:08.829137'
|
||||
matchSpan:
|
||||
end: 54
|
||||
start: 50
|
||||
matchedContent: AMZN
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 5
|
||||
input: First.Contact.Lost.Tribe.of.the.Amazon.2016.1080p.WEB-DL.DDP2.0.H.264-Q0SWeb.mkv
|
||||
lastRun: '2024-12-06T01:59:08.829137'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
name: Apple TV+
|
||||
pattern: \b(atvp|aptv|Apple TV\+)\s*\b
|
||||
description: Apple TV+ is an American subscription OTT streaming service owned and
|
||||
operated by Apple Inc. Launched on November 1, 2019, it offers a selection of original
|
||||
production film and television series called Apple Originals.
|
||||
tags:
|
||||
- Streaming Service
|
||||
- WEB-DL
|
||||
- WEBRip
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Palmer.1080p.APTV.WEB-DL.DDP5.1.Atmos.H.264-EVO.mkv
|
||||
lastRun: '2024-12-03T02:31:55.764873'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: Fathom.1080p.APTV.WEB-DL.DDP5.1.Atmos.H.264-CMRG.mkv
|
||||
lastRun: '2024-12-03T02:31:55.764873'
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 3
|
||||
input: You.Are.the.Apple.of.My.Eye.2011.720p.BluRay.DD5.1.x264-EbP.mkv
|
||||
lastRun: '2024-12-03T02:31:55.764873'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: Men in Black 1997 2160p Apple TV+ WEB-DL DDP 5 1 Atmos DV H 265-CHDWEB
|
||||
lastRun: '2024-12-03T02:31:55.764873'
|
||||
passes: true
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
name: Atmos
|
||||
pattern: \bATMOS(\b|\d)
|
||||
description: ''
|
||||
tags:
|
||||
- Audio
|
||||
- Enhancement
|
||||
tests:
|
||||
- expected: false
|
||||
id: 1
|
||||
input: The.Last.of.Us.S01.2160p.UHD.BluRay.Remux.TrueHDA7.1.H.265-PmP
|
||||
lastRun: '2025-01-06T15:07:07.378833'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: The.Last.of.Us.S01.UHD.BluRay.2160p.TrueHD.Atmos.7.1.DV.HEVC.REMUX-FraMeSToR
|
||||
lastRun: '2025-01-06T15:07:07.378833'
|
||||
matchSpan:
|
||||
end: 48
|
||||
start: 43
|
||||
matchedContent: Atmos
|
||||
matchedGroups:
|
||||
- ''
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 3
|
||||
input: The Last of Us S01 2160p MAX WEB-DL DDP 5.1 Atmos DV HDR H.265-FLUX
|
||||
lastRun: '2025-01-06T15:07:07.378833'
|
||||
matchSpan:
|
||||
end: 49
|
||||
start: 44
|
||||
matchedContent: Atmos
|
||||
matchedGroups:
|
||||
- ''
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 4
|
||||
input: The.Last.of.Us.S01.DV.HDR.2160p.MAX.WEB-DL.DDPA5.1.H.265-FLUX
|
||||
lastRun: '2025-01-06T15:07:07.378833'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,96 +0,0 @@
|
|||
name: B&W
|
||||
pattern: \d{4}.*?\bblack\b[\s.]*(?:and|\&|-|\/)?[\s.]*\bwhite\b|\bb\&?w\b
|
||||
description: Black and White colour grading. This regex matches a 4-digit number (optionally
|
||||
surrounded by parentheses), followed by any amount of text, and then detects references
|
||||
to "black and white" in various formats. It supports `blackwhite` (no spaces), `black
|
||||
and white`, `black-white`, "`black & white`, `black/white`, as well as shorthand
|
||||
`BW` and `B&W`, while excluding invalid variations like `b w`, `b-w`, or `b/w`
|
||||
tags:
|
||||
- Enhancement
|
||||
- Unwanted
|
||||
- Colour Grade
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: The Mist Black and White 2007 2160p USA UHD Blu-ray DV HDR HEVC TrueHD 7.1
|
||||
Atmos-BeyondHD
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: false
|
||||
- expected: false
|
||||
id: 2
|
||||
input: Black and White 2002 1080p Blu-ray AVC DTS-HD MA 5.1-CultFilms
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 3
|
||||
input: 'Pokemon the Movie: Black and White-Victini and Reshiram Zekrom 2011 1080p
|
||||
AUS BD50 DTS-HD MA 5.1 AVC-PHOENiX'
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: Madeo 2009 Black & White Version 1080p JPN Blu-ray AVC TrueHD 5.1-kyRLS
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan:
|
||||
end: 24
|
||||
start: 6
|
||||
matchedContent: 2009 Black & White
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 6
|
||||
input: Psycho (1960) B&W
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan:
|
||||
end: 17
|
||||
start: 7
|
||||
matchedContent: (1960) B&W
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 7
|
||||
input: Citizen Kane (1941) Black.and.White
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan:
|
||||
end: 35
|
||||
start: 13
|
||||
matchedContent: (1941) Black.and.White
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 8
|
||||
input: Dracula (1931) Black-White
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan:
|
||||
end: 26
|
||||
start: 8
|
||||
matchedContent: (1931) Black-White
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 11
|
||||
input: Young Frankenstein (1974) BW DVDRip
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan:
|
||||
end: 28
|
||||
start: 19
|
||||
matchedContent: (1974) BW
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 12
|
||||
input: Jack Black & Betty White in a Comedy Special
|
||||
lastRun: '2025-02-14T14:41:22.957835'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BHDStudio
|
||||
pattern: (?<=^|[\s.-])BHDStudio\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BLUEBIRD
|
||||
pattern: (?<=^|[\s.-])BLUEBIRD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BLUTONiUM
|
||||
pattern: (?<=^|[\s.-])BLUTONiUM\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BMF
|
||||
pattern: (?<=^|[\s.-])BMF\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BOREDOR
|
||||
pattern: (?<=^|[\s.-])BOREDOR\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BSTD
|
||||
pattern: (?<=^|[\s.-])BSTD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
name: BTN Atmos
|
||||
pattern: \bTrue[ .-]?HDA[ .-]?[57]\.1|DDPA[57]\.1\b
|
||||
description: Matches BroadcastTheNet Atmos naming convention
|
||||
tags: []
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: The.Last.of.Us.S01.2160p.UHD.BluRay.Remux.TrueHDA7.1.H.265-PmP
|
||||
lastRun: '2025-01-11T23:15:36.540509'
|
||||
matchSpan:
|
||||
end: 52
|
||||
start: 42
|
||||
matchedContent: TrueHDA7.1
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 2
|
||||
input: The.Last.of.Us.S01.UHD.BluRay.2160p.TrueHD.Atmos.7.1.DV.HEVC.REMUX-FraMeSToR
|
||||
lastRun: '2025-01-11T23:15:36.540509'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 3
|
||||
input: The Last of Us S01 2160p MAX WEB-DL DDP 5.1 Atmos DV HDR H.265-FLUX
|
||||
lastRun: '2025-01-11T23:15:36.540509'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: The.Last.of.Us.S01.DV.HDR.2160p.MAX.WEB-DL.DDPA5.1.H.265-FLUX
|
||||
lastRun: '2025-01-11T23:15:36.540509'
|
||||
matchSpan:
|
||||
end: 50
|
||||
start: 43
|
||||
matchedContent: DDPA5.1
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 5
|
||||
input: Loki.S01.2160p.UHD.BluRay.Remux.TrueHDA.7.1.H.265-SiCFoI
|
||||
lastRun: '2025-01-11T23:15:36.540509'
|
||||
matchSpan:
|
||||
end: 43
|
||||
start: 32
|
||||
matchedContent: TrueHDA.7.1
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BTN
|
||||
pattern: (?<=^|[\s.-])BTN\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BV
|
||||
pattern: (?<=^|[\s.-])BV\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BYNDR
|
||||
pattern: (?<=^|[\s.-])BYNDR\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,110 +0,0 @@
|
|||
name: Basic HDR Formats
|
||||
pattern: (?:(?<=^(?!.*\b(HLG|PQ|SDR)(\b|\d)).*?)HDR)|\b(dv(?)|dovi|dolby[
|
||||
.]?vision)\b
|
||||
description: Matches Dolby Vision OR HDR10. Needed to better match UHD Blurays
|
||||
tags:
|
||||
- Enhancement
|
||||
- Colour Grade
|
||||
- HDR
|
||||
tests:
|
||||
- expected: true
|
||||
id: 5
|
||||
input: MovieName.1080p.DV.mkv
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan:
|
||||
end: 18
|
||||
start: 16
|
||||
matchedContent: DV
|
||||
matchedGroups:
|
||||
- null
|
||||
- null
|
||||
- DV
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 6
|
||||
input: MovieName.4K.Dolby Vision.IMAX.mkv
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan:
|
||||
end: 25
|
||||
start: 13
|
||||
matchedContent: Dolby Vision
|
||||
matchedGroups:
|
||||
- null
|
||||
- null
|
||||
- Dolby Vision
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 7
|
||||
input: MovieName.2023.4K.DV.HLG.mkv
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 8
|
||||
input: MovieName.2023.4K.DV.SDR.mkv
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 9
|
||||
input: MovieName.4K.DV.SDR.Dovi.mkv
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan:
|
||||
end: 24
|
||||
start: 20
|
||||
matchedContent: Dovi
|
||||
matchedGroups:
|
||||
- null
|
||||
- null
|
||||
- Dovi
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 10
|
||||
input: Schindler's List (1993) 2160p UHD BluRay Hybrid REMUX HEVC DV HDR10+ TrueHD
|
||||
Atmos 7.1 English-WiLDCAT
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan:
|
||||
end: 61
|
||||
start: 59
|
||||
matchedContent: DV
|
||||
matchedGroups:
|
||||
- null
|
||||
- null
|
||||
- DV
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 11
|
||||
input: 'Avatar: The Way of Water 2022 1080p UHD BluRay DDP 7.1 HDR10 x265-GALAXY'
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan:
|
||||
end: 58
|
||||
start: 55
|
||||
matchedContent: HDR
|
||||
matchedGroups:
|
||||
- null
|
||||
- null
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 12
|
||||
input: 'Avatar: The Way of Water [2022] 2160p HEVC WEB-DL HDR10+ -CMRG'
|
||||
lastRun: '2025-01-13T08:51:12.077354'
|
||||
matchSpan:
|
||||
end: 53
|
||||
start: 50
|
||||
matchedContent: HDR
|
||||
matchedGroups:
|
||||
- null
|
||||
- null
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BeiTa
|
||||
pattern: (?<=^|[\s.-])BeiTa\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BeiTai
|
||||
pattern: (?<=^|[\s.-])BeiTai\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,330 +0,0 @@
|
|||
name: Better Theatricals
|
||||
pattern: ^\b(terminator.?2|alien[^s].*?1979|star.wars.*?(4k|19)(77)|.*?\bempire.strikes.back|.*?\breturn.of.the.jedi|apocalypse.now|the.exorcist.*?1973|donnie.darko|amadeus|payback.*?1999|payback.straight.up.*?2006|almost.famous)\b
|
||||
description: 'Matches movies where the `Theatrical` cut is considered the better version.
|
||||
Subjectively chosen, based on Dictionarry''s personal preferences and major opinion.
|
||||
Needed to override the default special edition preference. Matches:
|
||||
|
||||
- Terminator 2: Judgement Day (1991)
|
||||
|
||||
- Alien (1979)
|
||||
|
||||
- Star Wars OT (1977-1983)
|
||||
|
||||
- Apocalypse Now (1979)
|
||||
|
||||
- The Exorcist (1973)
|
||||
|
||||
- Donnie Darko (2001)
|
||||
|
||||
- Amadeus (1984)
|
||||
|
||||
- Payback (1999)
|
||||
|
||||
- Almost Famous (2000)'
|
||||
tags:
|
||||
- Edition
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Terminator.2.Judgment.Day.Theatrical.Cut.1991.1080p.BluRay.DTS.x264.D-Z0N3
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 12
|
||||
start: 0
|
||||
matchedContent: Terminator.2
|
||||
matchedGroups:
|
||||
- Terminator.2
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 2
|
||||
input: ' Aliens.1986.Special.Edition.1080p.BluRay.DTS.x264-Geek.mkv'
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 3
|
||||
input: Alien.1979.Directors.Cut.2in1.BluRay.1080p.AVC.DTS-HD.MA5.1-CHDBits
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 10
|
||||
start: 0
|
||||
matchedContent: Alien.1979
|
||||
matchedGroups:
|
||||
- Alien.1979
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: star.wars.4K77.2160p.UHD.No-DNR.35mm.x265-v1.4.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 14
|
||||
start: 0
|
||||
matchedContent: star.wars.4K77
|
||||
matchedGroups:
|
||||
- star.wars.4K77
|
||||
- 4K
|
||||
- '77'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 5
|
||||
input: Star.Wars.Episode.IV.A.New.Hope.1977.COMPLETE.UHD.BLURAY-DIZZKNEE
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 36
|
||||
start: 0
|
||||
matchedContent: Star.Wars.Episode.IV.A.New.Hope.1977
|
||||
matchedGroups:
|
||||
- Star.Wars.Episode.IV.A.New.Hope.1977
|
||||
- '19'
|
||||
- '77'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 6
|
||||
input: Star.Wars.1977.Theatrical.Cut.DVDRip.AC3.x264.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 14
|
||||
start: 0
|
||||
matchedContent: Star.Wars.1977
|
||||
matchedGroups:
|
||||
- Star.Wars.1977
|
||||
- '19'
|
||||
- '77'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 7
|
||||
input: 03 Empire.Strikes.Back.4K80.2160p.UHD.no-DNR.35mm.x265-v1.0.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 22
|
||||
start: 0
|
||||
matchedContent: 03 Empire.Strikes.Back
|
||||
matchedGroups:
|
||||
- 03 Empire.Strikes.Back
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 8
|
||||
input: Star.Wars.Episode.V.The.Empire.Strikes.Back.1980.2160p.UHD.BluRay.Remux.HDR.HEVC.Atmos-PmP.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 43
|
||||
start: 0
|
||||
matchedContent: Star.Wars.Episode.V.The.Empire.Strikes.Back
|
||||
matchedGroups:
|
||||
- Star.Wars.Episode.V.The.Empire.Strikes.Back
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 9
|
||||
input: Empire.Strikes.Back.1980.35mm.Renegade.Grindhouse.Scan.480p.DD2.0.x264.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 19
|
||||
start: 0
|
||||
matchedContent: Empire.Strikes.Back
|
||||
matchedGroups:
|
||||
- Empire.Strikes.Back
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 10
|
||||
input: Return.of.the.Jedi.4K83.2160p.UHD.35mm.x265-v1.1.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 18
|
||||
start: 0
|
||||
matchedContent: Return.of.the.Jedi
|
||||
matchedGroups:
|
||||
- Return.of.the.Jedi
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 11
|
||||
input: Star Wars Episode VI - Return of the Jedi (1983) 2160p UHD BluRay TrueHD
|
||||
7.1 HDR x265-Chotab.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 41
|
||||
start: 0
|
||||
matchedContent: Star Wars Episode VI - Return of the Jedi
|
||||
matchedGroups:
|
||||
- Star Wars Episode VI - Return of the Jedi
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 12
|
||||
input: Star.Wars.Episode.IX.The.Rise.of.Skywalker.2019.UHD.BluRay.2160p.TrueHD.Atmos.7.1.HEVC.REMUX-FraMeSToR.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 13
|
||||
input: Apocalypse.Now.1979.Final.Cut.UHD.BluRay.2160p.TrueHD.Atmos.7.1.DV.HEVC.HYBRID.REMUX-FraMeSToR.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 14
|
||||
start: 0
|
||||
matchedContent: Apocalypse.Now
|
||||
matchedGroups:
|
||||
- Apocalypse.Now
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 14
|
||||
input: The.Exorcist.1973.2160p.UHD.Blu-ray.Remux.HDR.HEVC.TrueHD.7.1.Atmos-CiNEPHiLES.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 17
|
||||
start: 0
|
||||
matchedContent: The.Exorcist.1973
|
||||
matchedGroups:
|
||||
- The.Exorcist.1973
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 15
|
||||
input: The Pope's Exorcist 2023 1080p WEBRip DD+5.1 x264-HiDt.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 16
|
||||
input: The Exorcist III 1990 Theatrical 1080p BluRay DTS x264-VietHD.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 17
|
||||
input: Donnie.Darko.2001.2160p.UHD.Blu-ray.Remux.HEVC.HDR.DoVi.DTS-HD.MA.5.1-ARROW4KDV.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 12
|
||||
start: 0
|
||||
matchedContent: Donnie.Darko
|
||||
matchedGroups:
|
||||
- Donnie.Darko
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 18
|
||||
input: Amadeus.1984.Blu-Ray.1080p.DTSHD-MA.VC-1.Remux-HiFi.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 7
|
||||
start: 0
|
||||
matchedContent: Amadeus
|
||||
matchedGroups:
|
||||
- Amadeus
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 19
|
||||
input: National Theatre Live- Amadeus (2017).mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 20
|
||||
input: Payback.Straight.Up.Directors.Cut.1999.Bluray-PTP
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 38
|
||||
start: 0
|
||||
matchedContent: Payback.Straight.Up.Directors.Cut.1999
|
||||
matchedGroups:
|
||||
- Payback.Straight.Up.Directors.Cut.1999
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 21
|
||||
input: Payback.1999.Theatrical.Cut.BluRay.1080p.TrueHD.5.1.VC-1.REMUX-FraMeSToR.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 12
|
||||
start: 0
|
||||
matchedContent: Payback.1999
|
||||
matchedGroups:
|
||||
- Payback.1999
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 22
|
||||
input: Payback Straight Up 2006 DC 1080p HDDVD DD5.1 x264-RightSiZE.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 24
|
||||
start: 0
|
||||
matchedContent: Payback Straight Up 2006
|
||||
matchedGroups:
|
||||
- Payback Straight Up 2006
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 23
|
||||
input: Payback.Theatrical.Cut.1999.1080p.BluRay.DD5.1.x264-REPTiLE.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 27
|
||||
start: 0
|
||||
matchedContent: Payback.Theatrical.Cut.1999
|
||||
matchedGroups:
|
||||
- Payback.Theatrical.Cut.1999
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 24
|
||||
input: ' Payback.2021.1080p.WEB.h264-RUMOUR.mkv'
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 25
|
||||
input: Payback.DVDRip.AVC.AC3.(1995).mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 26
|
||||
input: Almost.Famous.2000.Bootleg.Cut.UHD.BluRay.2160p.DTS-HD.MA.5.1.DV.HEVC.HYBRID.REMUX-FraMeSToR.mkv
|
||||
lastRun: '2025-02-24T21:16:01.912349'
|
||||
matchSpan:
|
||||
end: 13
|
||||
start: 0
|
||||
matchedContent: Almost.Famous
|
||||
matchedGroups:
|
||||
- Almost.Famous
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
name: BeyondHD
|
||||
pattern: (?<=^|[\s.-])BeyondHD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Game of Thrones (2012) S02 2160p UHD Blu-ray HEVC DV HDR TrueHD Atmos 7.1
|
||||
English-BeyondHD
|
||||
lastRun: '2024-12-13T17:46:48.251985'
|
||||
matchSpan:
|
||||
end: 90
|
||||
start: 82
|
||||
matchedContent: BeyondHD
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BiTOR
|
||||
pattern: (?<=^|[\s.-])BiTOR\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
name: Bloated Remux Groups
|
||||
pattern: \b(LEGi0N|FGT|RARBG)\b
|
||||
description: Matches groups that add multiple audio tracks to remuxes
|
||||
tags:
|
||||
- Release Group
|
||||
tests:
|
||||
- expected: true
|
||||
id: 3
|
||||
input: Blade Runner 2049 2017 1080p BluRay REMUX AVC DTS-HD MA TrueHD 7 1 Atmos-FGT
|
||||
lastRun: '2025-01-19T17:27:12.895135'
|
||||
matchSpan:
|
||||
end: 76
|
||||
start: 73
|
||||
matchedContent: FGT
|
||||
matchedGroups:
|
||||
- FGT
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: Blade Runner 2049 2017 REMUX 1080p Blu-ray AVC DTS-HD MA 7 1-LEGi0N
|
||||
lastRun: '2025-01-19T17:27:12.895135'
|
||||
matchSpan:
|
||||
end: 67
|
||||
start: 61
|
||||
matchedContent: LEGi0N
|
||||
matchedGroups:
|
||||
- LEGi0N
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: BlzT
|
||||
pattern: (?<=^|[\s.-])BlzT\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
name: Bracketed Year
|
||||
pattern: \[\d{4}\]
|
||||
description: Match a year moniker inside square brackets
|
||||
tags: []
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Loki S01 [2021] 2160p HEVC Blu-Ray Remux HDR10 -SiCFoI
|
||||
lastRun: '2025-01-12T00:57:33.563808'
|
||||
matchSpan:
|
||||
end: 15
|
||||
start: 9
|
||||
matchedContent: '[2021]'
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CHAOS
|
||||
pattern: (?<=^|[\s.-])CHAOS\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CHD
|
||||
pattern: (?<=^|[\s.-])CHD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CJ
|
||||
pattern: (?<=^|[\s.-])CJ\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CMCT
|
||||
pattern: (?<=^|[\s.-])CMCT\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
name: CMRG
|
||||
pattern: (?<=^|[\s.-])CM(a)?R(io)?G\b
|
||||
description: 'Prolific WEB-DL group. '
|
||||
tags:
|
||||
- Release Group
|
||||
- iPT
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: 12 Dares of Christmas 2023 1080p AMZN WEB-DL DDP 2.0 H.264-CMRG
|
||||
lastRun: '2024-12-06T05:58:57.443985'
|
||||
matchSpan:
|
||||
end: 63
|
||||
start: 59
|
||||
matchedContent: CMRG
|
||||
matchedGroups:
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: The.Super.Mario.Bros.Movie.2023.1080p.MA.WEB-DL.DDP5.1.Atmos.H.264-CMaRioG.mkv
|
||||
lastRun: '2024-12-06T05:58:57.443985'
|
||||
matchSpan:
|
||||
end: 74
|
||||
start: 67
|
||||
matchedContent: CMaRioG
|
||||
matchedGroups:
|
||||
- a
|
||||
- io
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CRFW
|
||||
pattern: (?<=^|[\s.-])CRFW\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CRX
|
||||
pattern: (?<=^|[\s.-])CRX\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CRiSC
|
||||
pattern: (?<=^|[\s.-])CRiSC\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: ChopperHitler
|
||||
pattern: (?<=^|[\s.-])ChopperHitler\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: Chotab
|
||||
pattern: (?<=^|[\s.-])Chotab\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,81 +0,0 @@
|
|||
name: Colourisation
|
||||
pattern: \bcolou?r(i[sz]ed?|ed)?\b
|
||||
description: 'Colourisation (or colorization in American English) is the process of
|
||||
adding colour to black-and-white, sepia, or other monochrome images. Matches variations
|
||||
of `color` in both American and British spellings, including:
|
||||
|
||||
|
||||
- **Base forms:** `color`, `colour`
|
||||
|
||||
- **Past tense/adjective forms:** `colored`, `coloured`
|
||||
|
||||
- **Verb forms:** `colorize`, `colourize`, `colorise`, `colourise`
|
||||
|
||||
- **Past participles:** `colorized`, `coloured`, `colourized`, `colourised`'
|
||||
tags:
|
||||
- Colour Grade
|
||||
- Enhancement
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: colour
|
||||
lastRun: '2025-02-22T19:10:06.067266'
|
||||
matchSpan:
|
||||
end: 6
|
||||
start: 0
|
||||
matchedContent: colour
|
||||
matchedGroups:
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 3
|
||||
input: coloured
|
||||
lastRun: '2025-02-22T19:10:06.067266'
|
||||
matchSpan:
|
||||
end: 8
|
||||
start: 0
|
||||
matchedContent: coloured
|
||||
matchedGroups:
|
||||
- ed
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: colourise
|
||||
lastRun: '2025-02-22T19:10:06.067266'
|
||||
matchSpan:
|
||||
end: 9
|
||||
start: 0
|
||||
matchedContent: colourise
|
||||
matchedGroups:
|
||||
- ise
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 7
|
||||
input: colourised
|
||||
lastRun: '2025-02-22T19:10:06.067266'
|
||||
matchSpan:
|
||||
end: 10
|
||||
start: 0
|
||||
matchedContent: colourised
|
||||
matchedGroups:
|
||||
- ised
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 8
|
||||
input: colored
|
||||
lastRun: '2025-02-22T19:10:06.067266'
|
||||
matchSpan:
|
||||
end: 7
|
||||
start: 0
|
||||
matchedContent: colored
|
||||
matchedGroups:
|
||||
- ed
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 9
|
||||
input: discolor
|
||||
lastRun: '2025-02-22T19:10:06.067266'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
name: Criterion Channel
|
||||
pattern: \bCRiT\b
|
||||
description: The Criterion Channel is a subscription-based streaming service launched
|
||||
on April 8, 2019, by The Criterion Collection. Available in the United States and
|
||||
Canada, it features a rich library of films, including Criterion Collection releases
|
||||
with special features, curated playlists, temporarily licensed titles, and original
|
||||
content such as academic overviews and introductions. The Channel also showcases
|
||||
Janus-owned titles not yet available on physical media and maintains a collaborative
|
||||
relationship with Warner Bros. Discovery's Max platform. Perfect for cinephiles,
|
||||
the service brings a curated cinematic experience to the digital space.
|
||||
tags:
|
||||
- Streaming Service
|
||||
- WEB-DL
|
||||
- WEBRip
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Wild 90 1968 480p CRiT WEB-DL AAC2 0 x264-AT3N
|
||||
lastRun: '2024-12-06T05:17:39.382994'
|
||||
matchSpan:
|
||||
end: 22
|
||||
start: 18
|
||||
matchedContent: CRiT
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: Night Mother 1986 1080p CRiT WEB-DL AAC2 0 x264-AT3N
|
||||
lastRun: '2024-12-06T05:17:39.382994'
|
||||
matchSpan:
|
||||
end: 28
|
||||
start: 24
|
||||
matchedContent: CRiT
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 3
|
||||
input: Please Speak Continuously and Describe Your Experiences as They Come to You
|
||||
2019 1080p CRIT WEB-DL AAC2 0 x264-SiGLA
|
||||
lastRun: '2024-12-06T05:17:39.382994'
|
||||
matchSpan:
|
||||
end: 91
|
||||
start: 87
|
||||
matchedContent: CRIT
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 4
|
||||
input: John Malkovich in The Music Critic 2021 720p WEB H264-LiQUiD
|
||||
lastRun: '2024-12-06T05:17:39.382994'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: CtrlHD
|
||||
pattern: (?<=^|[\s.-])CtrlHD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: D-Z0N3
|
||||
pattern: (?<=^|[\s.-])D-Z0N3\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: DEFLATE
|
||||
pattern: (?<=^|[\s.-])DEFLATE\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: DEPTH
|
||||
pattern: (?<=^|[\s.-])DEPTH\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: DESPACiTO
|
||||
pattern: (?<=^|[\s.-])DESPACiTO\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: DON
|
||||
pattern: (?<=^|[\s.-])DON\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: DTS-HD HRA ES
|
||||
pattern: dts[-. ]?(es|(hd[. ]?)?(hr|hi))
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: DTS-HD MA
|
||||
pattern: \b(dts[-_. ]?(ma|hd([-_. ]?ma)?|xll))(\b|\d)
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: DTS-HD
|
||||
pattern: \b(dts[-_. ]?(ma|hd([-_. ]?ma)?|xll))\b
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
name: DTS-X
|
||||
pattern: \b(dts[-_. :]?x)\b(?!\d)
|
||||
description: ''
|
||||
tags: []
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: 2 Fast 2 Furious (2003) 2160p MA WEB-DL H265 HDR DTS:X 7.1 English-FLUX
|
||||
lastRun: '2025-01-16T15:29:55.783259'
|
||||
matchSpan:
|
||||
end: 54
|
||||
start: 49
|
||||
matchedContent: DTS:X
|
||||
matchedGroups:
|
||||
- DTS:X
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: 2.Fast.2.Furious.2003.2160p.MA.WEB-DL.DTS-X.7.1.H.265-FLUX.mkv
|
||||
lastRun: '2025-01-16T15:29:55.783259'
|
||||
matchSpan:
|
||||
end: 43
|
||||
start: 38
|
||||
matchedContent: DTS-X
|
||||
matchedGroups:
|
||||
- DTS-X
|
||||
passes: true
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: DTS
|
||||
pattern: \bDTS(\b|\d)
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: Dariush
|
||||
pattern: (?<=^|[\s.-])Dariush\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: DiNAMiC
|
||||
pattern: (?<=^|[\s.-])DiNAMiC\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
name: Disney+
|
||||
pattern: \b(dsnp|dsny(p)?|disney\+)\s*\b
|
||||
description: Disney+ is an American subscription video on-demand over-the-top streaming
|
||||
media service that primarily distributes films and television shows produced by
|
||||
Walt Disney Studios and Disney Television Studios, with dedicated content hubs for
|
||||
Disney's flagship brands; Disney, Pixar, Marvel, Star Wars, National Geographic,
|
||||
ESPN, Hulu and Star.
|
||||
tags:
|
||||
- Streaming Service
|
||||
- WEB-DL
|
||||
- WEBRip
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Star Wars - The Clone Wars (2008) S06 (1080p DSNP WEB-DL H264 SDR DDP 5 1
|
||||
English - HONE)
|
||||
lastRun: '2024-12-03T16:25:40.465487'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: Pupstruction S02E09E10 The Funniest Pup in Petsburg Beddy Bye Build 720p
|
||||
DSNY WEB-DL AAC 2.0 H.264-4f8c4100292
|
||||
lastRun: '2024-12-03T16:25:40.465487'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 3
|
||||
input: Once Upon a Snowman 2020 DSNYP 1080p WEBRip X264 Atmos-EVO
|
||||
lastRun: '2024-12-03T16:25:40.465487'
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 4
|
||||
input: How.Disney.Built.America.S01E01.1080p.WEB.h264-EDITH
|
||||
lastRun: '2024-12-03T16:25:40.465487'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 5
|
||||
input: High School Musical - The Musical - The Series S00E01 The Special 2160p HDR
|
||||
Disney+ WEBRip DD+ 5 1 x265-TrollUHD
|
||||
lastRun: '2024-12-03T16:25:40.465487'
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 6
|
||||
input: Air Crash Investigation S18 2018 Disney+ WEB-DL 1080p H264 DDP-HDCTV
|
||||
lastRun: '2024-12-03T16:25:40.465487'
|
||||
passes: true
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: Dolby Digital +
|
||||
pattern: \bDD[P+]|\b(e[-_. ]?ac3)\b
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: Dolby Digital
|
||||
pattern: \bDD[^a-z+]|(?<!e)ac3
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
name: Dolby Vision (Without Fallback)
|
||||
pattern: (?<=^(?!.*(HDR|HULU|REMUX|BLURAY)).*?)\b(DV|Dovi|Dolby[- .]?V(ision)?)\b
|
||||
description: Matches Dolby Vision when it doesn't come with regular HDR Fallback (A
|
||||
Bluray Remux or a Hulu WEB-DL)
|
||||
tags:
|
||||
- Enhancement
|
||||
- Colour Grade
|
||||
- HDR
|
||||
tests:
|
||||
- expected: false
|
||||
id: 1
|
||||
input: Barbie.2023.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX
|
||||
lastRun: '2024-12-13T09:54:37.318637'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 2
|
||||
input: "\t Barbie (2023) (2160p AMZN WEB-DL Hybrid H265 DV HDR10+ DDP Atmos 5.1\
|
||||
\ English - HONE)"
|
||||
lastRun: '2024-12-13T09:54:37.318637'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 3
|
||||
input: Barbie.2023.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX
|
||||
lastRun: '2024-12-13T09:54:37.318637'
|
||||
matchSpan:
|
||||
end: 43
|
||||
start: 41
|
||||
matchedContent: DV
|
||||
matchedGroups:
|
||||
- null
|
||||
- DV
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: Barbie.2023.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX.mkv
|
||||
lastRun: '2024-12-13T09:54:37.318637'
|
||||
matchSpan:
|
||||
end: 43
|
||||
start: 41
|
||||
matchedContent: DV
|
||||
matchedGroups:
|
||||
- null
|
||||
- DV
|
||||
- null
|
||||
passes: true
|
||||
|
|
@ -1,112 +0,0 @@
|
|||
name: Dolby Vision
|
||||
pattern: \b(dv(?)|dovi|dolby[ .]?vision)\b
|
||||
description: Dolby Vision is a high dynamic range (HDR) video format that uses dynamic
|
||||
metadata to deliver enhanced brightness, contrast, and color on a scene-by-scene
|
||||
or frame-by-frame basis, providing superior picture quality. This pattern excludes
|
||||
matches where Dolby Vision is associated with SDR (Standard Dynamic Range) or HLG
|
||||
(Hybrid Log-Gamma), ensuring it focuses on Dolby Vision-specific terms.
|
||||
tags:
|
||||
- Enhancement
|
||||
- Colour Grade
|
||||
- HDR
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: MovieName.2023.4K.DV.HDR.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan:
|
||||
end: 20
|
||||
start: 18
|
||||
matchedContent: DV
|
||||
matchedGroups:
|
||||
- DV
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: MovieName.2023.4K.Dovi.HDR10+.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan:
|
||||
end: 22
|
||||
start: 18
|
||||
matchedContent: Dovi
|
||||
matchedGroups:
|
||||
- Dovi
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 3
|
||||
input: MovieName.2023.4K.Dolby.Vision.HDR.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan:
|
||||
end: 30
|
||||
start: 18
|
||||
matchedContent: Dolby.Vision
|
||||
matchedGroups:
|
||||
- Dolby.Vision
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: MovieName.2023.4K.DolbyVision.HDR10+.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan:
|
||||
end: 29
|
||||
start: 18
|
||||
matchedContent: DolbyVision
|
||||
matchedGroups:
|
||||
- DolbyVision
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 5
|
||||
input: MovieName.1080p.DV.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan:
|
||||
end: 18
|
||||
start: 16
|
||||
matchedContent: DV
|
||||
matchedGroups:
|
||||
- DV
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 6
|
||||
input: MovieName.4K.Dolby Vision.IMAX.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan:
|
||||
end: 25
|
||||
start: 13
|
||||
matchedContent: Dolby Vision
|
||||
matchedGroups:
|
||||
- Dolby Vision
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 7
|
||||
input: MovieName.2023.4K.DV.HLG.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 8
|
||||
input: MovieName.2023.4K.DV.SDR.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 9
|
||||
input: MovieName.4K.DV.SDR.Dovi.mkv
|
||||
lastRun: '2024-12-13T09:06:01.845546'
|
||||
matchSpan:
|
||||
end: 24
|
||||
start: 20
|
||||
matchedContent: Dovi
|
||||
matchedGroups:
|
||||
- Dovi
|
||||
- null
|
||||
passes: true
|
||||
|
|
@ -1,116 +0,0 @@
|
|||
name: Dual Audio
|
||||
pattern: \b((multi[^a-zA-Z]*)|(dual[\s.-](audio|complete)))\b
|
||||
description: Matches releases with Dual Audio; Media releases that contain two language
|
||||
tracks - typically the original language (such as Japanese) along with an English
|
||||
dub, allowing viewers to switch between either audio track while watching the same
|
||||
video content.
|
||||
tags: []
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: "\t The.Hunger.Games.2012.MULTi.1080p.BluRay.DTS.HD.MA.x264-HeavyWeight"
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan:
|
||||
end: 30
|
||||
start: 24
|
||||
matchedContent: MULTi.
|
||||
matchedGroups:
|
||||
- MULTi.
|
||||
- MULTi.
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: The.Hunger.Games.2012.1080p.AMZN.WEB-DL.Multi.DDP5.1.H.264-DHRUB_DXD
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan:
|
||||
end: 46
|
||||
start: 40
|
||||
matchedContent: Multi.
|
||||
matchedGroups:
|
||||
- Multi.
|
||||
- Multi.
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 3
|
||||
input: 'We Don''t Die, We Multiply: The Robin Harris Story'
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 4
|
||||
input: Cyberpunk 2077 Phantom Liberty MULTi19 v2 2 DINOByTES
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan:
|
||||
end: 39
|
||||
start: 31
|
||||
matchedContent: 'MULTi19 '
|
||||
matchedGroups:
|
||||
- 'MULTi19 '
|
||||
- 'MULTi19 '
|
||||
- null
|
||||
- null
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 5
|
||||
input: Attack on Titan S04 2020 1080p USA Blu-ray AVC TrueHD 5.1 Dual Audio -ZR-
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan:
|
||||
end: 68
|
||||
start: 58
|
||||
matchedContent: Dual Audio
|
||||
matchedGroups:
|
||||
- Dual Audio
|
||||
- null
|
||||
- Dual Audio
|
||||
- Audio
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 6
|
||||
input: DanMachi Sword Oratoria Vol 01-04 2017 ANiME DUAL COMPLETE BLURAY-iFPD
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan:
|
||||
end: 58
|
||||
start: 45
|
||||
matchedContent: DUAL COMPLETE
|
||||
matchedGroups:
|
||||
- DUAL COMPLETE
|
||||
- null
|
||||
- DUAL COMPLETE
|
||||
- COMPLETE
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 7
|
||||
input: Bleach.S12.1080p.BluRay.REMUX.AVC.Dual-Audio.DTS-HD.MA.2.0-ZR-
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan:
|
||||
end: 44
|
||||
start: 34
|
||||
matchedContent: Dual-Audio
|
||||
matchedGroups:
|
||||
- Dual-Audio
|
||||
- null
|
||||
- Dual-Audio
|
||||
- Audio
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 8
|
||||
input: Dual.2022.1080p.BluRay.DDP5.1.x264-iFT.mkv
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: false
|
||||
id: 9
|
||||
input: uality.A.Graffiti.Story.2022.1080p.WEB.H264-AEROHOLiCS.mkv
|
||||
lastRun: '2024-12-18T11:58:49.979470'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: E.N.D
|
||||
pattern: (?<=^|[\s.-])E.N.D\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: E1
|
||||
pattern: (?<=^|[\s.-])E1\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: EA
|
||||
pattern: (?<=^|[\s.-])EA\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: EDPH
|
||||
pattern: (?<=^|[\s.-])EDPH\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: EMERALD
|
||||
pattern: (?<=^|[\s.-])EMERALD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: ENDSTATiON
|
||||
pattern: (?<=^|[\s.-])ENDSTATiON\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: ESiR
|
||||
pattern: (?<=^|[\s.-])ESiR\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
name: EVO
|
||||
pattern: (?<=^|[\s.-])EVO\b
|
||||
description: 'iPT Internal known for releasing pre-releases before anyone else. Also
|
||||
releases encodes of varying quality. '
|
||||
tags:
|
||||
- Release Group
|
||||
- iPT
|
||||
- Disbanded
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Aisha 2022 1080p WEB-DL DDP5 1 H 264-EVO
|
||||
lastRun: '2024-12-06T05:54:51.925977'
|
||||
matchSpan:
|
||||
end: 40
|
||||
start: 37
|
||||
matchedContent: EVO
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: 'Dune AKA Dune: Part One 2021 1080p EUR Blu-ray AVC TrueHD 7.1 Atmos-EVO'
|
||||
lastRun: '2024-12-06T05:54:51.925977'
|
||||
matchSpan:
|
||||
end: 71
|
||||
start: 68
|
||||
matchedContent: EVO
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: EX-R
|
||||
pattern: (?<=^|[\s.-])EX-R\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: EXCiSION
|
||||
pattern: (?<=^|[\s.-])EXCiSION\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: EbP
|
||||
pattern: (?<=^|[\s.-])EbP\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
name: Extended Clip
|
||||
pattern: \b(extended.?clip)\b
|
||||
description: Matches preview releases labelled as `Extended Clip`
|
||||
tags:
|
||||
- Preview
|
||||
- Unwanted
|
||||
tests:
|
||||
- expected: true
|
||||
id: 1
|
||||
input: Killers Of The Flower Moon 2023 Extended Clip 1080p AMZN WEB-DL DDP 5.1 H
|
||||
264-FLUX
|
||||
lastRun: '2025-02-25T22:09:00.135768'
|
||||
matchSpan:
|
||||
end: 45
|
||||
start: 32
|
||||
matchedContent: Extended Clip
|
||||
matchedGroups:
|
||||
- Extended Clip
|
||||
passes: true
|
||||
- expected: true
|
||||
id: 2
|
||||
input: Killers.of.The.Flower.Moon.2023.Extended.Clip.1080p.AMZN.WEB-DL.DDP5.1.H.264-FLUX
|
||||
lastRun: '2025-02-25T22:09:00.135768'
|
||||
matchSpan:
|
||||
end: 45
|
||||
start: 32
|
||||
matchedContent: Extended.Clip
|
||||
matchedGroups:
|
||||
- Extended.Clip
|
||||
passes: true
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
name: Extras
|
||||
pattern: (?i)(?<=\b[12]\d{3}\b).*(\b|\.)\b(Extras?|Bonus|Extended[ ._-]Clip|Special
|
||||
Feature[s]?)\b
|
||||
description: Extras, Special Features, Featurettes, etc
|
||||
tags:
|
||||
- Unwanted
|
||||
- Extras
|
||||
tests:
|
||||
- expected: false
|
||||
id: 1
|
||||
input: E.T..el.ExtraTerrestre.30.Aniversario.1982.mHD.10Bits.1080p.BluRay.DD5.1.HEVC-TMd.mkv
|
||||
lastRun: '2025-02-07T06:19:53.936128'
|
||||
matchSpan: null
|
||||
matchedContent: null
|
||||
matchedGroups: []
|
||||
passes: true
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
name: FLAC
|
||||
pattern: \bFLAC(\b|\d)
|
||||
description: ''
|
||||
tags: []
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: FLAME
|
||||
pattern: (?<=^|[\s.-])FLAME\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: FLUX
|
||||
pattern: (?<=^|[\s.-])FLUX\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: FRDS
|
||||
pattern: (?<=^|[\s.-])FRDS\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: FTW-HD
|
||||
pattern: (?<=^|[\s.-])FTW-HD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: FZHD
|
||||
pattern: (?<=^|[\s.-])FZHD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: null
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: FilmHD
|
||||
pattern: (?<=^|[\s.-])FilmHD\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
name: FoRM
|
||||
pattern: (?<=^|[\s.-])FoRM\b
|
||||
description: ''
|
||||
tags:
|
||||
- Release Group
|
||||
tests: []
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue