source: README.md @ fce5bcd7

feature/cnnfeature/crepefix/ffmpeg5
Last change on this file since fce5bcd7 was fce5bcd7, checked in by Paul Brossier <piem@piem.org>, 2 years ago

[README] add pypi and conda download badges

  • Property mode set to 100644
File size: 4.3 KB
Line 
1aubio
2=====
3
4[![CircleCI build status](https://circleci.com/gh/aubio/aubio.svg?style=shield)](https://circleci.com/gh/aubio/aubio "CircleCI build status")
5[![Azure Pipelines](https://dev.azure.com/aubio/aubio/_apis/build/status/aubio.aubio)](https://dev.azure.com/aubio/aubio "Azure build status")
6[![Appveyor build status](https://img.shields.io/appveyor/ci/piem/aubio/master.svg)](https://ci.appveyor.com/project/piem/aubio "Appveyor build status")
7[![Pypi Downloads](https://img.shields.io/pypi/dm/aubio.svg?label=Pypi%20downloads)](https://pypi.org/project/aubio/)
8[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/aubio.svg?label=Conda%20downloads)](https://anaconda.org/conda-forge/aubio)
9[![Commits since last release](https://img.shields.io/github/commits-since/aubio/aubio/latest.svg)](https://github.com/aubio/aubio "Commits since last release")
10
11[![Documentation](https://readthedocs.org/projects/aubio/badge/?version=latest)](http://aubio.readthedocs.io/en/latest/?badge=latest "Latest documentation")
12[![DOI](https://zenodo.org/badge/396389.svg)](https://zenodo.org/badge/latestdoi/396389)
13
14aubio is a library to label music and sounds. It listens to audio signals and
15attempts to detect events. For instance, when a drum is hit, at which frequency
16is a note, or at what tempo is a rhythmic melody.
17
18Its features include segmenting a sound file before each of its attacks,
19performing pitch detection, tapping the beat and producing midi streams from
20live audio.
21
22aubio provide several algorithms and routines, including:
23
24  - several onset detection methods
25  - different pitch detection methods
26  - tempo tracking and beat detection
27  - MFCC (mel-frequency cepstrum coefficients)
28  - FFT and phase vocoder
29  - up/down-sampling
30  - digital filters (low pass, high pass, and more)
31  - spectral filtering
32  - transient/steady-state separation
33  - sound file read and write access
34  - various mathematics utilities for music applications
35
36The name aubio comes from _audio_ with a typo: some errors are likely to be
37found in the results.
38
39Python module
40-------------
41
42A python module for aubio is provided. For more information on how to use it,
43please see the file [`python/README.md`](python/README.md) and the
44[manual](https://aubio.org/manual/latest/) .
45
46Tools
47-----
48
49The python module comes with the following command line tools:
50
51 - `aubio` extracts informations from sound files
52 - `aubiocut` slices sound files at onset or beat timestamps
53
54Additional command line tools are included along with the library:
55
56 - `aubioonset` outputs the time stamp of detected note onsets
57 - `aubiopitch` attempts to identify a fundamental frequency, or pitch, for
58   each frame of the input sound
59 - `aubiomfcc` computes Mel-frequency Cepstrum Coefficients
60 - `aubiotrack` outputs the time stamp of detected beats
61 - `aubionotes` emits midi-like notes, with an onset, a pitch, and a duration
62 - `aubioquiet` extracts quiet and loud regions
63
64Documentation
65-------------
66
67  - [manual](https://aubio.org/manual/latest/), generated with sphinx
68  - [developer documentation](https://aubio.org/doc/latest/), generated with Doxygen
69
70The latest version of the documentation can be found at:
71
72  https://aubio.org/documentation
73
74Build Instructions
75------------------
76
77aubio compiles on Linux, Mac OS X, Windows, Cygwin, and iOS.
78
79To compile aubio, you should be able to simply run:
80
81    make
82
83To compile the python module:
84
85    ./setup.py build
86
87See the [manual](https://aubio.org/manual/latest/) for more information about
88[installing aubio](https://aubio.org/manual/latest/installing.html).
89
90Citation
91--------
92
93Please use the DOI link above to cite this release in your publications. For
94more information, see also the [about
95page](https://aubio.org/manual/latest/about.html) in [aubio
96manual](https://aubio.org/manual/latest/).
97
98Homepage
99--------
100
101The home page of this project can be found at: https://aubio.org/
102
103License
104-------
105
106aubio is free software: you can redistribute it and/or modify it under the
107terms of the GNU General Public License as published by the Free Software
108Foundation, either version 3 of the License, or (at your option) any later
109version.
110
111Contributing
112------------
113
114Patches are welcome: please fork the latest git repository and create a feature
115branch. Submitted requests should pass all continuous integration tests.
Note: See TracBrowser for help on using the repository browser.