A collection of tools for music analysis
Project description
aubio-ledfx
Note: This is a maintained fork of the original aubio project by Paul Brossier, maintained by the LedFx team.
Why this fork exists:
- The original aubio project is no longer actively maintained with regular releases
- We provide Python 3.10-3.14 support with pre-built wheels on PyPI
- This fork includes the latest fixes and improvements from aubio's main branch
- LedFx and other projects depend on aubio and need a reliable, up-to-date package
All credit for aubio goes to the original author Paul Brossier and contributors.
Original project: https://github.com/aubio/aubio
This fork: https://github.com/LedFx/aubio-ledfx
PyPI package: https://pypi.org/project/aubio-ledfx/
About aubio
aubio is a collection of tools for music and audio analysis.
This package integrates the aubio library with NumPy to provide a set of efficient tools to process and analyse audio signals, including:
- read audio from any media file, including videos and remote streams
- high quality phase vocoder, spectral filterbanks, and linear filters
- Mel-Frequency Cepstrum Coefficients and standard spectral descriptors
- detection of note attacks (onset)
- pitch tracking (fundamental frequency estimation)
- beat detection and tempo tracking
This fork supports Python 3.8 through 3.14 on Linux (x86_64, ARM64), macOS (Intel, Apple Silicon), and Windows (AMD64).
Installation
Install from PyPI:
pip install aubio-ledfx
Pre-built wheels are available for:
- Linux: x86_64, ARM64 (manylinux)
- macOS: Intel (x86_64), Apple Silicon (ARM64)
- Windows: AMD64
Links
- PyPI package
- module documentation
- installation instructions
- aubio manual
- original aubio homepage
- issue tracker (this fork)
Demos
Some examples are available in the python/demos folder. Each
script is a command line program which accepts one ore more argument.
Notes: installing additional modules is required to run some of the demos.
Analysis
demo_source.pyuses aubio to read audio samples from media filesdemo_onset_plot.pydetects attacks in a sound file and plots the results using matplotlibdemo_pitch.pylooks for fundamental frequency in a sound file and plots the results using matplotlibdemo_spectrogram.py,demo_specdesc.py,demo_mfcc.pyfor spectral analysis.
Real-time
demo_pyaudio.pyanddemo_tapthebeat.pyuse pyaudiodemo_pysoundcard_play.py,demo_pysoundcard.pyuse PySoundCarddemo_alsa.pyuses pyalsaaudio
Others
demo_timestretch.pycan change the duration of an input file and write the new sound to disk,demo_wav2midi.pydetects the notes in a file and uses mido to write the results into a MIDI file
Example
Use demo_timestretch_online.py to slow down loop.wav, write the results in
stretched_loop.wav:
$ python demo_timestretch_online.py loop.wav stretched_loop.wav 0.92
Building from Source
This fork uses the Meson build system and vcpkg for dependency management.
Quick Build
# Install build dependencies
pip install "meson>=1.9.0" meson-python ninja numpy
# Build and install
pip install .
For detailed build instructions, see the main README.
Built with
The core of aubio is written in C for portability and speed. The pre-built wheels on PyPI include the following optional features:
All platforms:
- NumPy integration for efficient array processing
- libsndfile for reading/writing uncompressed audio (WAV, AIFF, etc.)
- fftw3 for fast Fourier transforms
- libsamplerate for high-quality audio resampling
- Audio codec support: FLAC, Vorbis/Ogg
- Built-in WAV reader/writer
Platform-specific features:
- macOS: Accelerate framework (optimized FFT), CoreAudio (native media reading), ffmpeg, [rubberband] (time-stretching)
- Windows: ffmpeg, [rubberband] (time-stretching) - all DLLs bundled in wheel
- Linux: MP3 support (mpg123, lame), Opus codec - static linking for portability
Not included: JACK audio, Intel IPP, BLAS/Atlas (for custom builds, see building from source)
For a detailed breakdown of features by platform, see the Pre-built Wheel Features appendix below.
Pre-built Wheel Features
This appendix provides a complete breakdown of which optional features are included in the pre-built wheels distributed on PyPI.
Features by Platform
| Feature | Linux | macOS | Windows | Description |
|---|---|---|---|---|
| Audio File I/O | ||||
| libsndfile | ✅ | ✅ | ✅ | Read/write uncompressed audio (WAV, AIFF, AU, etc.) |
| ffmpeg/libav | ❌ | ✅ | ✅ | Decode almost any media format (MP4, MKV, WebM, etc.) |
| CoreAudio | — | ✅ | — | Native macOS/iOS audio file reading (all Apple formats) |
| Built-in WAV | ✅ | ✅ | ✅ | Simple WAV support without external libraries |
| Audio Codecs | ||||
| FLAC | ✅ | ✅ | ✅ | FLAC lossless audio codec |
| Vorbis/Ogg | ✅ | ✅ | ✅ | Ogg Vorbis lossy audio codec |
| MP3 (mpg123) | ✅ | ❌ | ❌ | MP3 decoding (Linux only) |
| MP3 (lame) | ✅ | ❌ | ❌ | MP3 encoding (Linux only) |
| Opus | ✅ | ❌ | ❌ | Opus low-latency codec (Linux only) |
| Sample Rate Conversion | ||||
| libsamplerate | ✅ | ✅ | ✅ | High-quality audio resampling (SRC) |
| Time Stretching | ||||
| rubberband | ❌ | ✅ | ✅ | Audio time-stretching and pitch-shifting |
| FFT Implementation | ||||
| fftw3f | ✅ | ✅ | ✅ | Fast Fourier Transform (single precision, recommended) |
| Accelerate | — | ✅ | — | Apple's optimized FFT and DSP framework |
| ooura | ✅ | ✅ | ✅ | Fallback FFT implementation (always included) |
Platform-Specific Notes
Linux (x86_64, ARM64):
- All dependencies are statically linked for maximum portability
- No external
.sofiles required - works on any manylinux-compatible system - Excludes rubberband and ffmpeg due to static linking constraints
- Includes MP3 and Opus codecs as transitive dependencies of libsndfile
macOS (Intel x86_64, Apple Silicon ARM64):
- Uses native Accelerate framework for optimized FFT operations
- Uses CoreAudio for reading all macOS-supported media formats
- Includes rubberband and ffmpeg for maximum format compatibility
- Separate wheel builds for Intel and Apple Silicon architectures
- Minimum deployment target: macOS 10.15 (Intel), macOS 11.0 (Apple Silicon)
Windows (AMD64):
- All dependency DLLs are bundled inside the wheel via delvewheel
- Fully portable - no separate installation of dependencies required
- Includes rubberband and ffmpeg
- Works on Windows 10+ (x64)
Features NOT Included in Wheels
The following optional features are not included in pre-built wheels but can be enabled when building from source:
- JACK audio server: Real-time audio I/O (requires system JACK installation)
- Intel IPP: Intel's performance primitives (commercial license required)
- BLAS/Atlas: Linear algebra acceleration (minimal benefit for aubio's use cases)
- Double precision mode: Single precision (float32) is used by default
Python Version Support
Pre-built wheels are available for:
- Python 3.10, 3.11, 3.12, 3.13, 3.14
- All wheels include the same feature set per platform
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aubio_ledfx-0.4.11.tar.gz.
File metadata
- Download URL: aubio_ledfx-0.4.11.tar.gz
- Upload date:
- Size: 6.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5995b45b45780432a7cd6a6d3d8199a6f8f92adb9503cc5cdc609d3f2e15b54
|
|
| MD5 |
a8b19657031541c9d151e8095b7b7f50
|
|
| BLAKE2b-256 |
087c4474bb4642dc36bc7f8931c04b89aa937f1e06d2a94d1f779e3797ec3525
|
File details
Details for the file aubio_ledfx-0.4.11-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 11.6 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99a4c32b5e418877de0ad95460c1a42fbc9c24c3430431ca200cabfee479f08a
|
|
| MD5 |
f88bb3c07ec2165d276455cdc8ba77f5
|
|
| BLAKE2b-256 |
0100ca2a0268f8d3e61238d405592f509ce1e84c4a90b8cb6f7f54b47544f6d9
|
File details
Details for the file aubio_ledfx-0.4.11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87b5d1c399433fc5e2195b6557db0e34e58c84354dc96c78ba6154ada1ebd706
|
|
| MD5 |
3ed128df86fb305567612d513e30d1c0
|
|
| BLAKE2b-256 |
edfb99e6a74724d7c17b1458b9e9f731fc86d8841035ddb7fbcd8a08c4472165
|
File details
Details for the file aubio_ledfx-0.4.11-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc3d211f86a26ea753dee97a78bf3989f80e4c6a1addbbecfc41f85f34ad1ad4
|
|
| MD5 |
677b9ab70b7de615707dd4d6e6626cfb
|
|
| BLAKE2b-256 |
60198524728087e83f84c86dae26dd2f48ebd2a85b6ef8bfc0362251ab31c080
|
File details
Details for the file aubio_ledfx-0.4.11-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 22.0 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d4e68a17688eadca5d1feeda319da4b14f28a935ee11b1cfe7f3b95839b8fa9
|
|
| MD5 |
dcf392eb6e9e0a550c36bd9b6661e508
|
|
| BLAKE2b-256 |
663fe50b208f04538305cacfaddab67ebac6950b1be010f2efd83caf5d4e85b4
|
File details
Details for the file aubio_ledfx-0.4.11-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 23.6 MB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4f0a20c71c03dc4760df6f638de87b137234b302b2bee605d9506ea82be98e0
|
|
| MD5 |
0f4425416742a2eae617161b7abc4e83
|
|
| BLAKE2b-256 |
1909a154fbdf144d0e12a92f28a631b440261782b8d3436c424f1757dff2af9c
|
File details
Details for the file aubio_ledfx-0.4.11-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
366a91757d38b7c7ea619fc607423ab5239269c5667ebbdcb287b6f66066175f
|
|
| MD5 |
719d33957a48badd21d1cfeae574899f
|
|
| BLAKE2b-256 |
451f9b915ad110725f200f7a3b7ddb7b49138f9ea6b61e352a0829587cb8f3a3
|
File details
Details for the file aubio_ledfx-0.4.11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8d63cabbb1fb2865bdda5858a664d94caebd8a3e9abbe7f5c2efc1b4c1190fb
|
|
| MD5 |
7db6a0291a56856e0201f4deab9dd35b
|
|
| BLAKE2b-256 |
368c4f08539c79d9231493ece54d997d0bc2ae85b8ff6349a6e37000d51e1aa6
|
File details
Details for the file aubio_ledfx-0.4.11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d76212db70b2142410fdf6eb6e74fb591c9c30332e245a0e18c4850bfffab1c4
|
|
| MD5 |
62ba07deddfa82531a2a5a5aacf3c94a
|
|
| BLAKE2b-256 |
e811d83e850415e130c7458e4be4924249a0690109bd0f392d324714209eb173
|
File details
Details for the file aubio_ledfx-0.4.11-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 22.0 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
206b031f300df0fc4d336a4e8c23d9e00c94c13b256c34111f52827d804db63f
|
|
| MD5 |
cfa00ad7d23909d1d3e3695a2286b441
|
|
| BLAKE2b-256 |
1553ec35dc3190bbbc76a420d2e44a62584111dea88a75321023633df02f4165
|
File details
Details for the file aubio_ledfx-0.4.11-cp313-cp313-macosx_10_15_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp313-cp313-macosx_10_15_x86_64.whl
- Upload date:
- Size: 23.6 MB
- Tags: CPython 3.13, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5d039a732ccf133e3f21e73614d06c4e526c97da575fc79ba2d7a3883a65970
|
|
| MD5 |
fd4ac3f168b7a90231a9b8423c38232c
|
|
| BLAKE2b-256 |
e5a8845aa369424433f4e1c690d9cedec03472a09cfda3a77349269f2cd02b7b
|
File details
Details for the file aubio_ledfx-0.4.11-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58cd767692c63b89e7ba156f07d10c6f6ecb5a4102d9b74ceb43dc02c8b6efc5
|
|
| MD5 |
53f5a800d37c710bdc57afd705f7a383
|
|
| BLAKE2b-256 |
87f406a82f9290a889928ec6a61e86469ab29efa1803d0902a41ca6c3a347a91
|
File details
Details for the file aubio_ledfx-0.4.11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b68e5d8e118a4f3fd75c2c2984e8de3d35aafb2b126a5623cc0b1f051994862c
|
|
| MD5 |
d5f565151fce027bf8bfddbdbafa55bf
|
|
| BLAKE2b-256 |
af3ccf1a478593e6084ed056d62eab8917b73ef29d77d7952d6981aaa46a79e5
|
File details
Details for the file aubio_ledfx-0.4.11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04be6ae31e5d10a04ae216ee37a170ad754350c4754321aea0f1c3d4889be33c
|
|
| MD5 |
f161c923bdc4a63fefc78598147cd4c0
|
|
| BLAKE2b-256 |
f90f46a81a5f2ac86fc4a7c0553e1efd61419f32153dc248732464bc2e583df1
|
File details
Details for the file aubio_ledfx-0.4.11-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 22.0 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3b1192dfdac62f719bc29255ce5937683deca4b74e9e39a731e17ccecfb000b
|
|
| MD5 |
2b41c57bdced3f7e2508e8cff386f796
|
|
| BLAKE2b-256 |
31f66253058c805a77e5911ae1242738a761907222a6e723eb64bc36fb3a30c6
|
File details
Details for the file aubio_ledfx-0.4.11-cp312-cp312-macosx_10_15_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp312-cp312-macosx_10_15_x86_64.whl
- Upload date:
- Size: 23.6 MB
- Tags: CPython 3.12, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77da517e2406da17977f71fed933bb890a00553208c2c76b7108af5a2cd296d7
|
|
| MD5 |
13355f6b223bf2e4d8832daff89fb91b
|
|
| BLAKE2b-256 |
1e48ca7705a8f84d4f89401355a07de96f32dd58e81c8a639968cc0ff85c8268
|
File details
Details for the file aubio_ledfx-0.4.11-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dccf705f67ea2873e2189be39b53bb3276d507a2fd442e63da92f301b989e6e
|
|
| MD5 |
27bae77533200b3fbc96fa03671f3155
|
|
| BLAKE2b-256 |
6bf5471a53ff1f72f8ff009c8e40a2cfc3dccfdba1541076ec7e51c937f2780c
|
File details
Details for the file aubio_ledfx-0.4.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f9676b8f20d063ab7eca4d6c2358568d10b92ab7f1be909cfad321757c99186
|
|
| MD5 |
31db034a395d08b3323ce3545f5598b4
|
|
| BLAKE2b-256 |
67e550fbf3499fe224e0216050dd4f6e021a83854f7e4f22a6d79a6aad15f3c4
|
File details
Details for the file aubio_ledfx-0.4.11-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
409cade8c866a34798cb12b166faeb1abae8cfce4de9102826c4dd33a3d2180a
|
|
| MD5 |
2e3fd1f4db8abe899e1d121d17d4a21f
|
|
| BLAKE2b-256 |
b25734fd8d811ab1d4f35dc9afb8f4292b05ece671bbf94433598f9623dd09ae
|
File details
Details for the file aubio_ledfx-0.4.11-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 22.0 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8da7c2e245df62a515e2a3bddea45077548f4ee76106795a26acd569f0c50ad5
|
|
| MD5 |
697f6b1d959124d021e1d1d2415fb345
|
|
| BLAKE2b-256 |
95471ef26da9d08de43bd7d99a471fc3cc6ddec2ab64fc4c8985a72135d42997
|
File details
Details for the file aubio_ledfx-0.4.11-cp311-cp311-macosx_10_15_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp311-cp311-macosx_10_15_x86_64.whl
- Upload date:
- Size: 23.6 MB
- Tags: CPython 3.11, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0914010b0776e5955bee712d5ab0a7c8ea46e7add69cc5de7699276433e3ee4c
|
|
| MD5 |
b27345b212318dc4a6f1e71c3085e818
|
|
| BLAKE2b-256 |
cd59cc3825e837b620b706a066cdfef1bb26e0ea6b874fb134a1cd86da953fdd
|
File details
Details for the file aubio_ledfx-0.4.11-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 11.4 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dfa33d95d0e06d724fbd36c4e2bf227e0502a36af2b5be1c83c284cf2a4999c
|
|
| MD5 |
88f2f4281b3e07a031aec94e3ce382ad
|
|
| BLAKE2b-256 |
7f194d661bfd2ab93bedbc426036713ad146893b847d771403fc8fe04a1af5e5
|
File details
Details for the file aubio_ledfx-0.4.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5ef983954f23092b4c770807cdd05144356a6a6f9a07ecb59ea7877277a3acc
|
|
| MD5 |
59dd29651a6d640f33d178ce94e1ef20
|
|
| BLAKE2b-256 |
988529f92e738a9ce5462fb3c307b8064f91d7d17267603be55f39f190d9884f
|
File details
Details for the file aubio_ledfx-0.4.11-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d99ec5137ae61c4c9ab3d8ef7b79a6203713a2ac7af210c81db3da8095146d94
|
|
| MD5 |
2c41c2f75b5bdd71389d58f4b6c2291d
|
|
| BLAKE2b-256 |
a48a654e6678989a15d5d0f3641f05ae1c83a99c8fc497fe52cf503fc07bbe5a
|
File details
Details for the file aubio_ledfx-0.4.11-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 22.0 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
410fa42b3e5e952c829c040094da5908ceb07e6cfbf20fc480ddeb7ddc6847c7
|
|
| MD5 |
ce1941ab36a7c217be68ae7656a8c7a0
|
|
| BLAKE2b-256 |
adace8d6e48dc097772549bd8c1bc507b35e49a2770d1a5563bd967740e4837e
|
File details
Details for the file aubio_ledfx-0.4.11-cp310-cp310-macosx_10_15_x86_64.whl.
File metadata
- Download URL: aubio_ledfx-0.4.11-cp310-cp310-macosx_10_15_x86_64.whl
- Upload date:
- Size: 23.6 MB
- Tags: CPython 3.10, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c71bc9a7dd7eed97689386725d283feeaf43846699f23cd82e3cb39539f08f8
|
|
| MD5 |
f38bbb888250b4c0e7718cd5e981d4f5
|
|
| BLAKE2b-256 |
1360530c3fd89bac40a1df3bb4313526f7b268292bb0c2dde0412bdc07e07d04
|