Mercurial > hg > audio-features-catalogue
comparison rdfonto/af-aubio.n3 @ 18:d5012016bf64 tip
added rdfpy and rdfonto directories
author | nothing@tehis.net |
---|---|
date | Tue, 23 Apr 2013 11:49:20 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
17:2b5c292ad12f | 18:d5012016bf64 |
---|---|
1 @prefix aubio: <file:///Users/alo/MusicOntology/features/rdf/> . | |
2 @prefix dc: <http://purl.org/dc/elements/1.1/> . | |
3 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
4 | |
5 aubio:AWeightingFilterCoefficients a rdfs:Resource ; | |
6 aubio:type "DigitalFilter" ; | |
7 dc:description "An A-weighting digital filter, which reduces low and high frequencies and enhance the middle ones to reflect the ability of the human hearing." . | |
8 | |
9 aubio:BeatTracking a rdfs:Resource ; | |
10 aubio:type "Tempo" ; | |
11 dc:description "Beat tracking using a context dependant model." . | |
12 | |
13 aubio:BiquadFilter a rdfs:Resource ; | |
14 aubio:type "DigitalFilter" ; | |
15 dc:description "Second order Infinite Impulse Response filter." . | |
16 | |
17 aubio:ComplexDomainMethodOnsetDetectionFunction a rdfs:Resource ; | |
18 aubio:type "OnsetDetection" ; | |
19 dc:description "Complex Domain Method onset detection function." . | |
20 | |
21 aubio:CWeightingFilterCoefficients a rdfs:Resource ; | |
22 aubio:type "DigitalFilter" ; | |
23 dc:description "A C-weighting digital filter, which reduces low and high frequencies and enhance the middle ones to reflect the ability of the human hearing." . | |
24 | |
25 aubio:DigitalFilter a rdfs:Resource ; | |
26 aubio:type "DigitalFilter" ; | |
27 dc:description "This object stores a digital filter of order N." . | |
28 | |
29 aubio:EnergyBasedOnsetDetectionFunction a rdfs:Resource ; | |
30 aubio:type "OnsetDetection" ; | |
31 dc:description "This function calculates the local energy of the input spectral frame." . | |
32 | |
33 aubio:FilterbankMel a rdfs:Resource ; | |
34 aubio:type "SpectralFeature" ; | |
35 dc:description "Mel frequency filter bank coefficients. Set filter bank coefficients to Mel frequency bands" . | |
36 | |
37 aubio:HighFrequencyContentOnsetDetectionFunction a rdfs:Resource ; | |
38 aubio:type "OnsetDetection" ; | |
39 dc:description "This method computes the High Frequency Content (HFC) of the input spectral frame. The resulting function is efficient at detecting percussive onsets" . | |
40 | |
41 aubio:KullbackLieblerOnsetDetectionFunction a rdfs:Resource ; | |
42 aubio:type "OnsetDetection" ; | |
43 dc:description "Kullback-Liebler onset detection function." . | |
44 | |
45 aubio:MFCC a rdfs:Resource ; | |
46 aubio:type "SpectralFeature" ; | |
47 dc:description "Mel-frequency cepstrum coefficients object" . | |
48 | |
49 aubio:ModifiedKullbackLieblerOnsetDetectionFunction a rdfs:Resource ; | |
50 aubio:type "OnsetDetection" ; | |
51 dc:description "Modified Kullback-Liebler onset detection function." . | |
52 | |
53 aubio:Onset a rdfs:Resource ; | |
54 aubio:type "OnsetDetection" ; | |
55 dc:description "Computes the onset detection function and detect peaks in these functions. When onsets are found above a given silence threshold, and after a minimum inter-onset interval, the output vector returned by aubio_onset_do is filled with 1. Otherwise, the output vector remains 0" . | |
56 | |
57 aubio:OnsetDetectionFunction a rdfs:Resource ; | |
58 aubio:type "OnsetDetection" ; | |
59 dc:description "These functions are designed to raise at notes attacks in music signals." . | |
60 | |
61 aubio:PeakPicker a rdfs:Resource ; | |
62 aubio:type "OnsetDetection" ; | |
63 dc:description "Peak picking utilities function" . | |
64 | |
65 aubio:PhaseBasedMethodOnsetDetectionFunction a rdfs:Resource ; | |
66 aubio:type "OnsetDetection" ; | |
67 dc:description "Phase Based Method onset detection function." . | |
68 | |
69 aubio:PhaseVocoder a rdfs:Resource ; | |
70 aubio:type "SpectralFeature" ; | |
71 dc:description "This object implements a phase vocoder. The spectral frames are computed using a HanningZ window and a swapped version of the signal to simplify the phase relationships across frames. The window sizes and overlap are specified at creation time." . | |
72 | |
73 aubio:Pitch a rdfs:Resource ; | |
74 aubio:type "PitchDetection" ; | |
75 dc:description "Generic method for pitch detection" . | |
76 | |
77 aubio:PitchFastComb a rdfs:Resource ; | |
78 aubio:type "PitchDetection" ; | |
79 dc:description "Pitch detection using a fast harmonic comb filter" . | |
80 | |
81 aubio:PitchFftYin a rdfs:Resource ; | |
82 aubio:type "PitchDetection" ; | |
83 dc:description "Pitch detection using a spectral implementation of the YIN algorithm" . | |
84 | |
85 aubio:PitchMultiComb a rdfs:Resource ; | |
86 aubio:type "PitchDetection" ; | |
87 dc:description "Pitch detection using multiple-comb filter" . | |
88 | |
89 aubio:PitchSchmitt a rdfs:Resource ; | |
90 aubio:type "PitchDetection" ; | |
91 dc:description "Pitch detection using a Schmitt trigger" . | |
92 | |
93 aubio:PitchYin a rdfs:Resource ; | |
94 aubio:type "PitchDetection" ; | |
95 dc:description "Pitch detection using the YIN algorithm" . | |
96 | |
97 aubio:Resampler a rdfs:Resource ; | |
98 aubio:type "DigitalFilter" ; | |
99 dc:description "This object resamples an input vector into an output vector using libsamplerate." . | |
100 | |
101 aubio:SpectralCentroid a rdfs:Resource ; | |
102 aubio:type "SpectralFeature" ; | |
103 dc:description "The spectral centroid represents the barycenter of the spectrum." . | |
104 | |
105 aubio:SpectralDecrease a rdfs:Resource ; | |
106 aubio:type "SpectralFeature" ; | |
107 dc:description "The spectral decrease is another representation of the decreasing rate, based on perceptual criteria." . | |
108 | |
109 aubio:SpectralDifferenceMethodOnsetDetectionFunction a rdfs:Resource ; | |
110 aubio:type "PitchDetection" ; | |
111 dc:description "Spectral difference method onset detection function." . | |
112 | |
113 aubio:SpectralFlux a rdfs:Resource ; | |
114 aubio:type "SpectralFeature" ; | |
115 dc:description "Spectral Flux" . | |
116 | |
117 aubio:SpectralKurtosis a rdfs:Resource ; | |
118 aubio:type "SpectralFeature" ; | |
119 dc:description "The kurtosis is a measure of the flatness of the spectrum, computed from the fourth order moment." . | |
120 | |
121 aubio:SpectralRolloff a rdfs:Resource ; | |
122 aubio:type "SpectralFeature" ; | |
123 dc:description "This function returns the bin number below which 95% of the spectrum energy is found." . | |
124 | |
125 aubio:SpectralShapeDescriptors a rdfs:Resource ; | |
126 aubio:type "SpectralFeature" ; | |
127 dc:description "Spectral shape descriptors" . | |
128 | |
129 aubio:SpectralSkewness a rdfs:Resource ; | |
130 aubio:type "SpectralFeature" ; | |
131 dc:description "The skewness is computed from the third order moment of the spectrum. A negative skewness indicates more energy on the lower part of the spectrum. A positive skewness indicates more energy on the high frequency of the spectrum." . | |
132 | |
133 aubio:SpectralSlope a rdfs:Resource ; | |
134 aubio:type "SpectralFeature" ; | |
135 dc:description "The spectral slope represents decreasing rate of the spectral amplitude, computed using a linear regression." . | |
136 | |
137 aubio:SpectralSpread a rdfs:Resource ; | |
138 aubio:type "SpectralFeature" ; | |
139 dc:description "The spectral spread is the variance of the spectral distribution around its centroid." . | |
140 | |
141 aubio:Tempo a rdfs:Resource ; | |
142 aubio:type "Tempo" ; | |
143 dc:description "Tempo detection driver. This object stores all the memory required for tempo detection algorithm and returns the estimated beat locations." . | |
144 | |
145 aubio:TransientSteadyStateSeparation a rdfs:Resource ; | |
146 aubio:type "SpectralFeature" ; | |
147 dc:description "Transient / Steady-state Separation (TSS)" . |