From bfa4264d96437befbea5d1c0d2c30fdf277d71a5 Mon Sep 17 00:00:00 2001 From: ryoon Date: Thu, 6 Oct 2011 11:45:47 +0000 Subject: Import aubio-0.3.2 from wip/aubio aubio is a tool designed for the extraction of annotations from audio signals. 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. Because these tasks are difficult, we thought it was important to gather them in a dedicated library. To increase the fun, we have made these algorithms work in a causal way, so as to be used in real time applications with as low delay as possible. Functions can be used offline in sound editors and software samplers, or online in audio effects and virtual instruments. aubio currently provides the following features: - digital filters - phase vocoder - onset detection (several methods) - pitch tracking (several methods) - beat and tempo tracking - mel frequency cepstrum coefficients (MFCC) - transient / steady-state separation --- audio/aubio/options.mk | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 audio/aubio/options.mk (limited to 'audio/aubio/options.mk') diff --git a/audio/aubio/options.mk b/audio/aubio/options.mk new file mode 100644 index 00000000000..5cc04d02d94 --- /dev/null +++ b/audio/aubio/options.mk @@ -0,0 +1,17 @@ +# $NetBSD: options.mk,v 1.1.1.1 2011/10/06 11:45:48 ryoon Exp $ +# + +PKG_OPTIONS_VAR= PKG_OPTIONS.aubio +PKG_SUPPORTED_OPTIONS= jack alsa +PKG_SUGGESTED_OPTIONS= jack alsa + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mjack) +. include "../../audio/jack/buildlink3.mk" +.endif + +.if !empty(PKG_OPTIONS:Malsa) +. include "../../audio/alsa-lib/buildlink3.mk" +. include "../../audio/jack/buildlink3.mk" +.endif -- cgit v1.2.3