python-soundfile
python-soundfile copied to clipboard
SoundFile is an audio library based on libsndfile, CFFI, and NumPy
Especially `SFC_SET_NORM_DOUBLE`, `SFC_SET_NORM_FLOAT` (as needed in #20), but probably others, too. See http://www.mega-nerd.com/libsndfile/command.html for reference.
Hi, in Wav Extensible format struct, there is dwChannelMask to ensure correct channel layouts for multichannels wav. Looks like this variable is handled by the following function in wavlike.c in...
Hi it seems the binaries produced by this are not using the latest version 1.0.26. This is required to use some new methods to extract certain chunks that this project...
I need to get the number of frames in a file before calling `blocks`. That would be nice to either have `info.duration` as a `float` or add a `num_frames` attribute.
It is impossible to read a `wav` file contained in a `SoundFile` object without specify a length, even though it is possible for the `read` function. Consider this (using the...
... instead of reading it with `read()`. See discussion in #55. [`filecmp.cmp()`](https://docs.python.org/3.4/library/filecmp.html) should probably be used for that. And we have to add a 'peak' chunk to the file `stereo.wav`...
After merging #119, the `file` argument should support `str` and `unicode` in Python 2 and `str` and `bytes` in Python 3. The arguments `mode`/`format`/`subtype`/`endian` should support `str` and `unicode` in...
This might be hard because the pipe has to be written to and read from simultaneously. Probably this has to be done with threads. Also, I don't know if/how this...
When I originally started working on PySoundCard, I expressly did not want to wrap portaudio verbatim. Instead, my aim was to create a pythonic way to talk to sound cards...