This commit is contained in:
2025-10-03 13:25:14 +02:00
parent 3b0774686d
commit 3c56a880da
9 changed files with 277 additions and 1 deletions

20
mp4/codec.py Normal file
View File

@ -0,0 +1,20 @@
# RozK
class NullCodec:
@property
def name(self):
return b"<None>"
class Codec:
__slots__ = '_ref'
def __init__(self, ref):
self._ref = ref
@property
def _as_parameter_(self):
return self._ref
@property
def name(self):
return self._ref.contents.name