|
@@ -208,3 +208,32 @@ class MP4(_MutagenTagInterface):
|
|
|
|
|
|
def set_track_uuid(self, uuid):
|
|
def set_track_uuid(self, uuid):
|
|
return self._set_free_uuid(self._UUID_TAG_KEY, uuid)
|
|
return self._set_free_uuid(self._UUID_TAG_KEY, uuid)
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+class OggOpus(_MutagenTagInterface):
|
|
|
|
+
|
|
|
|
+ def __init__(self, mutagen_file):
|
|
|
|
+ assert isinstance(mutagen_file.tags, mutagen.oggopus.OggOpusVComment), \
|
|
|
|
+ (mutagen_file, mutagen_file.tags)
|
|
|
|
+ super().__init__(mutagen_file)
|
|
|
|
+
|
|
|
|
+ def get_comment(self):
|
|
|
|
+ raise NotImplementedError()
|
|
|
|
+
|
|
|
|
+ def set_comment(self, comment):
|
|
|
|
+ raise NotImplementedError()
|
|
|
|
+
|
|
|
|
+ def get_track_uuid(self):
|
|
|
|
+ raise NotImplementedError()
|
|
|
|
+
|
|
|
|
+ def set_track_uuid(self, uuid):
|
|
|
|
+ raise NotImplementedError()
|
|
|
|
+
|
|
|
|
+ def get_free_int(self, tag_label):
|
|
|
|
+ raise NotImplementedError()
|
|
|
|
+
|
|
|
|
+ def set_free_int(self, tag_label, data):
|
|
|
|
+ raise NotImplementedError()
|
|
|
|
+
|
|
|
|
+ def get_free_ints(self, tag_label_prefix):
|
|
|
|
+ raise NotImplementedError()
|