add: Custom Format and Regex Additions

This commit is contained in:
kmcclainmt 2025-04-02 08:43:06 -07:00
parent 4eaf5bb618
commit 582ddcb2ac
13 changed files with 117 additions and 0 deletions

10
custom_formats/1080p.yml Normal file
View File

@ -0,0 +1,10 @@
name: 1080p
description: ''
tags: []
conditions:
- name: 1080p
type: resolution
required: true
negate: false
resolution: 1080p
tests: []

15
custom_formats/10bit.yml Normal file
View File

@ -0,0 +1,15 @@
name: 10bit
description: ''
tags: []
conditions:
- name: 10bit
type: release_title
required: false
negate: false
pattern: 10bit
- name: hi10p
type: release_title
required: false
negate: false
pattern: hi10p
tests: []

20
custom_formats/3D.yml Normal file
View File

@ -0,0 +1,20 @@
name: 3D
description: ''
tags: []
conditions:
- name: 3D
type: release_title
required: false
negate: false
pattern: 3D
- name: BD3D
type: release_title
required: false
negate: false
pattern: BD3D
- name: BluRay3D
type: release_title
required: false
negate: false
pattern: BluRay 3D
tests: []

View File

@ -0,0 +1,20 @@
name: 4K Remaster
description: ''
tags: []
conditions:
- name: Remaster
type: release_title
required: false
negate: false
pattern: Remaster
- name: 4K
type: release_title
required: false
negate: false
pattern: 4K
- name: Not 4K Resolution
type: resolution
required: true
negate: true
resolution: 2160p
tests: []

10
custom_formats/720p.yml Normal file
View File

@ -0,0 +1,10 @@
name: 720p
description: ''
tags: []
conditions:
- name: 720p
negate: false
required: true
resolution: 720p
type: resolution
tests: []

5
regex_patterns/10bit.yml Normal file
View File

@ -0,0 +1,5 @@
name: 10bit
pattern: 10[.-]?bit
description: ''
tags: []
tests: []

5
regex_patterns/3D.yml Normal file
View File

@ -0,0 +1,5 @@
name: 3D
pattern: (?<=\b[12]\d{3}\b).*\b(3d|sbs|half[ .-]ou|half[ .-]sbs)\b
description: ''
tags: []
tests: []

5
regex_patterns/4K.yml Normal file
View File

@ -0,0 +1,5 @@
name: 4K
pattern: 4K
description: ''
tags: []
tests: []

5
regex_patterns/BD3D.yml Normal file
View File

@ -0,0 +1,5 @@
name: BD3D
pattern: \b(BD3D)\b
description: ''
tags: []
tests: []

View File

@ -0,0 +1,5 @@
name: BluRay 3D
pattern: \b(BluRay3D)\b
description: ''
tags: []
tests: []

View File

@ -0,0 +1,5 @@
name: Remaster
pattern: Remaster
description: ''
tags: []
tests: []

View File

@ -0,0 +1,7 @@
name: TrueHD ATMOS
pattern: True[ .-]?HD|W4NK3R|HQMUX
description: Dolby Atmos is a surround sound technology developed by Dolby Laboratories.
It expands on existing surround sound systems by adding height channels, allowing
sounds to be interpreted as three-dimensional objects.
tags: []
tests: []

5
regex_patterns/hi10p.yml Normal file
View File

@ -0,0 +1,5 @@
name: hi10p
pattern: hi10p
description: ''
tags: []
tests: []