Return optional fourcc for MusicVideoCodec

This commit is contained in:
Rafael Moraes
2026-05-24 12:59:38 -03:00
parent 1d00e74ec6
commit 30ca108b80
+2 -3
View File
@@ -80,9 +80,8 @@ class MusicVideoCodec(Enum):
H265 = "h265"
ASK = "ask"
@property
def fourcc(self) -> str:
return FOURCC_MAP[self.value]
def fourcc(self) -> str | None:
return FOURCC_MAP.get(self.value)
class MusicVideoResolution(Enum):