feat(format): implement resolution custom formats

- SD
- HD
- UHD
This commit is contained in:
root
2024-12-01 17:59:47 +10:50
parent 66876e2e23
commit cf0d672924
7 changed files with 94 additions and 0 deletions

12
custom_formats/1080p.yml Normal file
View File

@@ -0,0 +1,12 @@
name: 1080p
description: Full high definition resolution providing sharp detail and clarity.
tags:
- Full High Definition
- Resolution
conditions:
- name: 1080p
negate: false
required: true
resolution: 1080p
type: resolution
tests: []

13
custom_formats/2160p.yml Normal file
View File

@@ -0,0 +1,13 @@
name: 2160p
description: Ultra high definition resolution offering maximum detail and clarity
tags:
- Ultra High Definition
- 4K
- Resolution
conditions:
- name: 2160p
type: resolution
required: true
negate: false
resolution: 2160p
tests: []

15
custom_formats/360p.yml Normal file
View File

@@ -0,0 +1,15 @@
name: 360p
description: Low resolution video format typically used in older or highly compressed
content.
tags:
- Standard Definition
- Mobile
- Legacy
- Resolution
conditions:
- name: 360p
negate: false
required: true
resolution: 360p
type: resolution
tests: []

15
custom_formats/480p.yml Normal file
View File

@@ -0,0 +1,15 @@
name: 480p
description: Standard definition resolution commonly used in DVD and early web video
content.
tags:
- Standard Definition
- Web
- Legacy
- Resolution
conditions:
- name: 480p
negate: false
required: true
resolution: 480p
type: resolution
tests: []

13
custom_formats/540p.yml Normal file
View File

@@ -0,0 +1,13 @@
name: 540p
description: Intermediate standard definition resolution commonly used in compressed
Blu-ray encodes to save space while maintaining acceptable quality.
tags:
- Standard Definition
- Resolution
conditions:
- name: 540p
negate: false
required: true
resolution: 540p
type: resolution
tests: []

13
custom_formats/576p.yml Normal file
View File

@@ -0,0 +1,13 @@
name: 576p
description: PAL standard definition resolution found in European DVD releases and
compressed Blu-ray encodes optimized for legacy display compatibility
tags:
- Standard Definition
- Resolution
conditions:
- name: 576p
negate: false
required: true
resolution: 576p
type: resolution
tests: []

13
custom_formats/720p.yml Normal file
View File

@@ -0,0 +1,13 @@
name: 720p
description: High definition resolution offering improved clarity over standard definition
formats
tags:
- High Definition
- Resolution
conditions:
- name: 720p
type: resolution
required: true
negate: false
resolution: 720p
tests: []