Make MusicVideoCodec.fourcc a property

This commit is contained in:
Rafael Moraes
2026-05-24 14:12:46 -03:00
parent 30ca108b80
commit 24fb9bddb9
+1
View File
@@ -80,6 +80,7 @@ class MusicVideoCodec(Enum):
H265 = "h265"
ASK = "ask"
@property
def fourcc(self) -> str | None:
return FOURCC_MAP.get(self.value)