Philipp Wolfer
Philipp Wolfer
There is also #186 for this. Closing this issue to reduce duplicates.
It's worth noting that the actual issue can no longer be reproduced directly with the provided file since it raises a controlled exception on loading after the fixes in #429....
Fixed in #462
The file has a constant bitrate set to 320 kbps. But there is also a Xing frame, and information from there (audio data size * sample rates / sampes) calculates...
I provided an alternative implementation in #597
https://github.com/quodlibet/mutagen/pull/597 got merged with a bit different approach. Thanks for getting this rolling
#462 seems to be the improved version of this PR
@jvoisin Do I see this correctly that we can close this PR since https://github.com/quodlibet/mutagen/pull/462 got merged?
This was also discussed in #559. Overall regarding the issue here the proposed patch by @postlund looks mostly good for read support. Encoding support could be improved maybe. Also this...
@StealthyExpertX WAVE in general is supported. The easiest way to load a file into mutagen independent of format is: ```python from mutagen import File file_path = "./test.wav" f = File(file_path)...