Create CoverSize enum

This commit is contained in:
Rafael Moraes
2024-12-04 20:18:35 -03:00
parent 01ea0e2ebf
commit b8a54246f7
+7
View File
@@ -29,3 +29,10 @@ class RemuxModeAudio(Enum):
class RemuxModeVideo(Enum):
FFMPEG = "ffmpeg"
MP4BOX = "mp4box"
class CoverSize(Enum):
SMALL = "small"
MEDIUM = "medium"
LARGE = "large"
EXTRA_LARGE = "extra-large"