Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aubio/aubio
a library for audio and music analysis
https://github.com/aubio/aubio
analysis annotation audio beat c extraction mfcc music onset pitch python sound tempo-tracking
Last synced: 7 days ago
JSON representation
a library for audio and music analysis
- Host: GitHub
- URL: https://github.com/aubio/aubio
- Owner: aubio
- License: gpl-3.0
- Created: 2009-12-04T21:07:44.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2024-08-03T07:04:44.000Z (3 months ago)
- Last Synced: 2024-10-15T22:41:20.429Z (21 days ago)
- Topics: analysis, annotation, audio, beat, c, extraction, mfcc, music, onset, pitch, python, sound, tempo-tracking
- Language: C
- Homepage: https://aubio.org
- Size: 11.3 MB
- Stars: 3,291
- Watchers: 83
- Forks: 379
- Open Issues: 169
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-python-audio - aubio
- awesome-python-machine-learning-resources - GitHub - 41% open · ⏱️ 25.01.2022): (音频处理)
README
aubio
=====[![CircleCI build status](https://circleci.com/gh/aubio/aubio.svg?style=shield)](https://circleci.com/gh/aubio/aubio "CircleCI build status")
[![Azure Pipelines](https://dev.azure.com/aubio/aubio/_apis/build/status/aubio.aubio)](https://dev.azure.com/aubio/aubio "Azure build status")
[![Appveyor build status](https://img.shields.io/appveyor/ci/piem/aubio/master.svg)](https://ci.appveyor.com/project/piem/aubio "Appveyor build status")
[![Pypi Downloads](https://img.shields.io/pypi/dm/aubio.svg?label=Pypi%20downloads)](https://pypi.org/project/aubio/)
[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/aubio.svg?label=Conda%20downloads)](https://anaconda.org/conda-forge/aubio)[![Documentation](https://readthedocs.org/projects/aubio/badge/?version=latest)](http://aubio.readthedocs.io/en/latest/?badge=latest "Latest documentation")
[![DOI](https://zenodo.org/badge/396389.svg)](https://zenodo.org/badge/latestdoi/396389)
[![Commits since last release](https://img.shields.io/github/commits-since/aubio/aubio/latest.svg)](https://github.com/aubio/aubio "Commits since last release")aubio is a library to label music and sounds. It listens to audio signals and
attempts to detect events. For instance, when a drum is hit, at which frequency
is a note, or at what tempo is a rhythmic melody.Its features include segmenting a sound file before each of its attacks,
performing pitch detection, tapping the beat and producing midi streams from
live audio.aubio provide several algorithms and routines, including:
- several onset detection methods
- different pitch detection methods
- tempo tracking and beat detection
- MFCC (mel-frequency cepstrum coefficients)
- FFT and phase vocoder
- up/down-sampling
- digital filters (low pass, high pass, and more)
- spectral filtering
- transient/steady-state separation
- sound file read and write access
- various mathematics utilities for music applicationsThe name aubio comes from _audio_ with a typo: some errors are likely to be
found in the results.Python module
-------------A python module for aubio is provided. For more information on how to use it,
please see the file [`python/README.md`](python/README.md) and the
[manual](https://aubio.org/manual/latest/) .Tools
-----The python module comes with the following command line tools:
- `aubio` extracts informations from sound files
- `aubiocut` slices sound files at onset or beat timestampsAdditional command line tools are included along with the library:
- `aubioonset` outputs the time stamp of detected note onsets
- `aubiopitch` attempts to identify a fundamental frequency, or pitch, for
each frame of the input sound
- `aubiomfcc` computes Mel-frequency Cepstrum Coefficients
- `aubiotrack` outputs the time stamp of detected beats
- `aubionotes` emits midi-like notes, with an onset, a pitch, and a duration
- `aubioquiet` extracts quiet and loud regionsDocumentation
-------------- [manual](https://aubio.org/manual/latest/), generated with sphinx
- [developer documentation](https://aubio.org/doc/latest/), generated with DoxygenThe latest version of the documentation can be found at:
https://aubio.org/documentation
Build Instructions
------------------aubio compiles on Linux, Mac OS X, Windows, Cygwin, and iOS.
To compile aubio, you should be able to simply run:
make
To compile the python module:
./setup.py build
See the [manual](https://aubio.org/manual/latest/) for more information about
[installing aubio](https://aubio.org/manual/latest/installing.html).Citation
--------Please use the DOI link above to cite this release in your publications. For
more information, see also the [about
page](https://aubio.org/manual/latest/about.html) in [aubio
manual](https://aubio.org/manual/latest/).Homepage
--------The home page of this project can be found at: https://aubio.org/
License
-------aubio is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.Contributing
------------Patches are welcome: please fork the latest git repository and create a feature
branch. Submitted requests should pass all continuous integration tests.