create: Added IMAX and iTunes formats

This commit is contained in:
kmcclainmt 2025-04-02 12:30:05 -07:00
parent 9417994469
commit 00b76b3125
8 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,10 @@
name: IMAX Enhanced
description: ''
tags: []
conditions:
- name: IMAX Enhanced
negate: false
pattern: IMAX Enhanced
required: true
type: release_title
tests: []

15
custom_formats/IMAX.yml Normal file
View File

@ -0,0 +1,15 @@
name: IMAX
description: ''
tags: []
conditions:
- name: IMAX
type: release_title
required: true
negate: false
pattern: IMAX
- name: IMAX Enhanced
type: release_title
required: true
negate: true
pattern: IMAX Enhanced
tests: []

10
custom_formats/MA.yml Normal file
View File

@ -0,0 +1,10 @@
name: MA
description: ''
tags: []
conditions:
- name: Movies Anywhere
type: release_title
required: true
negate: false
pattern: Movies Anywhere
tests: []

20
custom_formats/iT.yml Normal file
View File

@ -0,0 +1,20 @@
name: iT
description: ''
tags: []
conditions:
- name: iTunes
type: release_title
required: true
negate: false
pattern: iTunes
- name: WEBDL
type: source
required: false
negate: false
source: web_dl
- name: WEBRip
type: source
required: false
negate: false
source: webrip
tests: []

View File

@ -0,0 +1,6 @@
name: IMAX Enhanced
pattern: ^(?=.*\b((DSNP|Disney\+|BC|B?CORE)(?=[ ._-]web[ ._-]?(dl|rip)\b)))(?=.*\b((?<!NON[
._-])IMAX)\b)|^(?=.*\b(IMAX[ ._-]Enhanced)\b)
description: ''
tags: []
tests: []

5
regex_patterns/IMAX.yml Normal file
View File

@ -0,0 +1,5 @@
name: IMAX
pattern: \b((?<!NON[ ._-])IMAX)\b
description: ''
tags: []
tests: []

View File

@ -0,0 +1,5 @@
name: Movies Anywhere
pattern: (?<!dts[ .-]?hd[ .-]?)\bma\b(?=.*\bweb[ ._-]?(dl|rip)\b)
description: ''
tags: []
tests: []

View File

@ -0,0 +1,5 @@
name: iTunes
pattern: \b(it|itunes)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)
description: ''
tags: []
tests: []