You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to mutagen documentation, the WavePack(.wav,.wv) files use APEv2 tags. But on trying to read the tag:
#!python
from mutagen.apev2 import APEv2
from mutagen.wavpack import WavPack
# file_path is absolute path to the wave file
print(APEv2(file_path))
# print(WavPack(file_path))
This gives the error:
#!python
mutagen.apev2.APENoHeaderError: No APE tag found
I get similar error with the WavPack class.
The code works for .wv extensions. I tried reading with every other tag class but it gave errors. Looking at audio files in VLC and foobar2000, they do have the metadata.
I have attached the .wav file which I used. There are some more sample files here. For few samples I had to tag them with foobar2000 myself but results remain same.
Originally reported by: Abhimanyu Pathania (Bitbucket: abhimanyuPathania, GitHub: abhimanyuPathania)
According to mutagen documentation, the WavePack(
.wav
,.wv
) files use APEv2 tags. But on trying to read the tag:This gives the error:
I get similar error with the
WavPack
class.The code works for
.wv
extensions. I tried reading with every other tagclass
but it gave errors. Looking at audio files in VLC and foobar2000, they do have the metadata.I have attached the
.wav
file which I used. There are some more sample files here. For few samples I had to tag them with foobar2000 myself but results remain same.I am using
mutagen 1.31
The text was updated successfully, but these errors were encountered: