python-soundfile icon indicating copy to clipboard operation
python-soundfile copied to clipboard

SoundFile is an audio library based on libsndfile, CFFI, and NumPy

Results 148 python-soundfile issues
Sort by recently updated
recently updated
newest added

`sf.read(filepath)` works as intended, it successfully finds the file. However, when trying to write to the file (replace its content), this error triggers ``` File "C:\Users\User\Documents\someFolder\src\util\files.py", line 92, in set_fixed_duration...

Fixes: #470 python-soundfile links dynamically against libsndfile, which is a statically-linked library including its dependencies. Modify setup.py to include a new license_notes.md file containing licensing details for each of libsndfile's...

I'm trying to make function that attempts to convert audio file to Vorbis OGG without losing quality, however every time I call `sf.write(format="ogg")` or `sf.write(format="ogg", subtype="vorbis")` on my audio data,...

The [libsndfile](https://github.com/libsndfile/libsndfile) repo lists several different dependencies required, most of which are BSD-licensed: ``` sudo apt install autoconf autogen automake build-essential libasound2-dev \ libflac-dev libogg-dev libtool libvorbis-dev libopus-dev libmp3lame-dev \...

Closes #467 This adds support for Python 3.14 and 3.14t as well as supporting free-threaded Python. I've opted to add a [`threading.RLock`](https://docs.python.org/3/library/threading.html#rlock-objects) member to the `SoundFile` object. I also made...

Added checks to make use of the available libsndfile.dll for windows on arm64. Numpy and cffi can be pip installed on arm64, so this should be available too. Needed for...

CFFI 2.0.0b1 added support for Python 3.14 and the new free-threaded build and NumPy 2.3.2 has cp314t wheels. If I use CFFI 2.0.0b1 I'm able to build python-soundfile and run...

Firstly, wanted to start with saying thanks @bastibe for all your work and dedication I'm trying to run soundfile on Windows on ARM64, I get the following error when calling...

I tried installing python-sound-file by running `python setup.py install` and then installing modules until it worked But when I run my program, I get ``` Traceback (most recent call last):...

Hi, I'm writing to ask about potential support for Windows ARM64 devices in future releases. Currently, the anycpu wheel installed on Windows ARM64 is only around 25KB and lacks the...