source: README.md @ f4dbf64b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampler
Last change on this file since f4dbf64b was f4dbf64b, checked in by Paul Brossier <piem@piem.org>, 7 years ago

README.md: simplify badges

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