0.8.0
This latest release of SoundFile fixes many small issues, in particular with the handling of file-like objects.
There are two breaking changes:
- Changed the default value of
always_2dfromTruetoFalse. - Changed the argument order of the
writefunction fromwrite(data, file, ...)towrite(file, data, ...)
Apart from that, here are the highlights of this release:
- Numpy is now optional, and only loaded for
readandwrite. - Added
SoundFile.buffer_readandSoundFile.buffer_read_intoandSoundFile.buffer_write, which read/write raw data without involving Numpy. - Added
infofunction that returns metadata of a sound file.