mirror of
https://github.com/devine-dl/devine.git
synced 2025-04-30 10:09:42 +00:00
This language tag/code mapping table is no longer needed as of MKVToolNix v67, which has been the minimum supported version for some time now already.
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
from threading import Event
|
|
from typing import TypeVar, Union
|
|
|
|
DOWNLOAD_CANCELLED = Event()
|
|
DOWNLOAD_LICENCE_ONLY = Event()
|
|
|
|
DRM_SORT_MAP = ["ClearKey", "Widevine"]
|
|
TERRITORY_MAP = {
|
|
"Hong Kong SAR China": "Hong Kong"
|
|
}
|
|
LANGUAGE_MAX_DISTANCE = 5 # this is max to be considered "same", e.g., en, en-US, en-AU
|
|
VIDEO_CODEC_MAP = {
|
|
"AVC": "H.264",
|
|
"HEVC": "H.265"
|
|
}
|
|
DYNAMIC_RANGE_MAP = {
|
|
"HDR10": "HDR",
|
|
"HDR10+": "HDR",
|
|
"Dolby Vision": "DV"
|
|
}
|
|
AUDIO_CODEC_MAP = {
|
|
"E-AC-3": "DDP",
|
|
"AC-3": "DD"
|
|
}
|
|
|
|
context_settings = dict(
|
|
help_option_names=["-?", "-h", "--help"], # default only has --help
|
|
max_content_width=116, # max PEP8 line-width, -4 to adjust for initial indent
|
|
)
|
|
|
|
# For use in signatures of functions which take one specific type of track at a time
|
|
# (it can't be a list that contains e.g. both Video and Audio objects)
|
|
TrackT = TypeVar("TrackT", bound="Track") # noqa: F821
|
|
|
|
# For general use in lists that can contain mixed types of tracks.
|
|
# list[Track] won't work because list is invariant.
|
|
# TODO: Add Chapter?
|
|
AnyTrack = Union["Video", "Audio", "Subtitle"] # noqa: F821
|