We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
VXN
1 parent aa1dffa commit 48154f7Copy full SHA for 48154f7
vxn/__init__.py
@@ -11,8 +11,8 @@ def register_filetypes():
11
from filetype import filetype
12
13
class VXNType(filetype.Type):
14
- MIME = 'audio/x-vxn'
15
- EXTENSION = 'vxn'
+ MIME = VXN.MIME
+ EXTENSION = VXN.EXTENSION
16
17
def __init__(self):
18
super().__init__(
vxn/vxn.py
@@ -35,6 +35,7 @@ class SegmStream():
35
class VXN():
36
EXTENSION = 'vxn'
37
MAGIC = b'VoxN'
38
+ MIME = 'audio/x-vxn'
39
40
def __init__(self, file: str | bytes | bytearray | BinaryIO | None = None) -> None:
41
self.header = Header()
0 commit comments