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

Fast and high quality sample-rate conversion library for Python

Results 9 python-soxr issues
Sort by recently updated
recently updated
newest added

:wave: @dofuuz are you at all interested in providing a conda-forge package for this library? libsoxr itself is already available https://anaconda.org/conda-forge/soxr so there shouldn't be any significant barrier here. The...

#### Not complete libsoxr API Some of libsoxr API is missing, like ~~error handling,~~ filter and phase setting. #### ~~No *-manylinux_i686 wheel~~ https://github.com/dofuuz/python-soxr/runs/2588306191 Adding `-msse` to compiler option will fix...

#### No SIMD64 support (relatively slow VHQ mode) It's not easy to solve because not every system supports AVX. This needs different compiler flags for each source files and systems....

``` cc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -fPIC -Ilibsoxr/src -Isrc/soxr -I/usr/local/lib/python3.9/site-packages/numpy/core/include -I/usr/local/lib/python3.9/site-packages/numpy/core/include -I/usr/local/include/python3.9 -c libsoxr/src/cr.c -o build/temp.freebsd-15.0-CURRENT-arm64-cpython-39/libsoxr/src/cr.o -DSOXR_LIB -mfpu=neon -std=gnu99 -Werror=implicit cc: error:...

### Problem Description Encountered an installation issue while attempting to install Python-Soxr using the provided setup script. The installation process fails with the following error: ```bash AttributeError: module 'soxr' has...

Python-SoXR now supports x86 and ARM processors. (ppc64le is also supported but it's not being intensively tested.) In other platforms, an error like below can occur during pip installation or...

Hello i get this error while install using pip3 install soxr on my raspberry pi 3 ``` arm-linux-gnueabihf-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro build/temp.linux-armv7l-cpython-37/libsoxr/src/cr.o build/temp.linux-armv7l-cpython-37/libsoxr/src/cr32.o build/temp.linux-armv7l-cpython-37/libsoxr/src/cr32s.o build/temp.linux-armv7l-cpython-37/libsoxr/src/cr64.o build/temp.linux-armv7l-cpython-37/libsoxr/src/data-io.o build/temp.linux-armv7l-cpython-37/libsoxr/src/dbesi0.o build/temp.linux-armv7l-cpython-37/libsoxr/src/fft4g32.o...

I want to cache the original audio, but I don't know how to get the soxr_delay of cysoxr?

I'm going to introduce NumPy 2 in next release. Next release will be major overhaul for python-soxr. - Change C binding to [nanobind](https://github.com/wjakob/nanobind) - SIMD64 support (faster VHQ mode) -...