id3v1 property

id3v1 property

Gets or sets the ID3v1 metadata tag. Please find more information at http://id3.org/ID3v1.

Remarks

The ID3(v1) tag is a small chunk of extra data at the end of an MP3 file.

Example

This code sample shows how to update the ID3v1 tag in an MP3 file.

Definition:

@property
def id3v1(self):
    ...
@id3v1.setter
def id3v1(self, value):
    ...

See Also