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_2d
fromTrue
toFalse
. - Changed the argument order of the
write
function fromwrite(data, file, ...)
towrite(file, data, ...)
Apart from that, here are the highlights of this release:
- Numpy is now optional, and only loaded for
read
andwrite
. - Added
SoundFile.buffer_read
andSoundFile.buffer_read_into
andSoundFile.buffer_write
, which read/write raw data without involving Numpy. - Added
info
function that returns metadata of a sound file.