annotate plugins/mvamp.n3 @ 100:c0afe853924a tip

Use common name
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 29 Jun 2021 12:11:48 +0100
parents 31f00b5e3a5f
children
rev   line source
Chris@9 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@9 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@9 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@9 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/mvamp#> .
Chris@9 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@9 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@9 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@9 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@9 9 @prefix cc: <http://web.resource.org/cc/> .
Chris@11 10 @prefix : <#> .
Chris@9 11
Chris@9 12 <> a vamp:PluginDescription ;
Chris@9 13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@9 14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/mvamp> .
Chris@9 15
Chris@47 16 :maker
Chris@47 17 foaf:name "Marsyas Plugins" ;
Chris@47 18 foaf:page <http://marsyas.info/> .
Chris@47 19
Chris@98 20 plugbase:library a vamp:PluginLibrary ;
Chris@47 21 vamp:identifier "mvamp" ;
Chris@47 22 dc:title "MARSYAS Vamp plugins" ;
Chris@81 23 foaf:maker :maker ;
Chris@47 24 dc:description "Low-level feature extraction plugins containing functionality from the MARSYAS batch feature extractor" ;
Chris@47 25
Chris@9 26 vamp:available_plugin plugbase:marsyas_bextract_centroid ;
Chris@9 27 vamp:available_plugin plugbase:marsyas_bextract_lpcc ;
Chris@9 28 vamp:available_plugin plugbase:marsyas_bextract_lsp ;
Chris@9 29 vamp:available_plugin plugbase:marsyas_bextract_mfcc ;
Chris@9 30 vamp:available_plugin plugbase:marsyas_bextract_rolloff ;
Chris@9 31 vamp:available_plugin plugbase:marsyas_bextract_scf ;
Chris@9 32 vamp:available_plugin plugbase:marsyas_bextract_sfm ;
Chris@9 33 vamp:available_plugin plugbase:marsyas_bextract_zero_crossings ;
Chris@47 34 vamp:has_source true ;
Chris@47 35 vamp:has_binary "linux32" ;
Chris@79 36 foaf:page <http://marsyas.info/downloads/vamp-plugins.html> ;
Chris@9 37 .
Chris@9 38
Chris@9 39 plugbase:marsyas_bextract_centroid a vamp:Plugin ;
Chris@9 40 dc:title "Marsyas - Batch Feature Extract - Centroid" ;
Chris@9 41 vamp:name "Marsyas - Batch Feature Extract - Centroid" ;
Chris@9 42 dc:description """Marsyas - Batch Feature Extract - Centroid""" ;
Chris@47 43 foaf:maker :maker ;
Chris@9 44 dc:rights """GPL v3 license""" ;
Chris@9 45 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 46 vamp:identifier "marsyas_bextract_centroid" ;
Chris@9 47 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 48 owl:versionInfo "2" ;
Chris@9 49 vamp:input_domain vamp:TimeDomain ;
Chris@10 50 vamp:output plugbase:marsyas_bextract_centroid_output_centroid_value ;
Chris@9 51 .
Chris@10 52 plugbase:marsyas_bextract_centroid_output_centroid_value a vamp:DenseOutput ;
Chris@10 53 vamp:identifier "centroid_value" ;
Chris@9 54 dc:title "Centroid value" ;
Chris@9 55 dc:description "The value of the centroid" ;
Chris@9 56 vamp:fixed_bin_count "true" ;
Chris@9 57 vamp:unit "value" ;
Chris@9 58 vamp:bin_count 1 ;
Chris@9 59 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 60 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 61 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 62 .
Chris@9 63 plugbase:marsyas_bextract_lpcc a vamp:Plugin ;
Chris@9 64 dc:title "Marsyas - Batch Feature Extract - Linear Prediction Cepstral Coefficients" ;
Chris@9 65 vamp:name "Marsyas - Batch Feature Extract - Linear Prediction Cepstral Coefficients" ;
Chris@9 66 dc:description """Marsyas - Batch Feature Extract - Linear Prediction Cepstral Coefficients""" ;
Chris@47 67 foaf:maker :maker ;
Chris@9 68 dc:rights """GPL v3 license""" ;
Chris@9 69 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 70 vamp:identifier "marsyas_bextract_lpcc" ;
Chris@9 71 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 72 owl:versionInfo "2" ;
Chris@9 73 vamp:input_domain vamp:TimeDomain ;
Chris@9 74 vamp:output plugbase:marsyas_bextract_lpcc_output_linear_prediction_cepstral_coefficients ;
Chris@9 75 .
Chris@9 76 plugbase:marsyas_bextract_lpcc_output_linear_prediction_cepstral_coefficients a vamp:DenseOutput ;
Chris@9 77 vamp:identifier "linear_prediction_cepstral_coefficients" ;
Chris@9 78 dc:title "Linear Prediction Cepstral Coefficients" ;
Chris@9 79 dc:description "The value of the Linear Prediction Cepstral Coefficients" ;
Chris@9 80 vamp:fixed_bin_count "true" ;
Chris@9 81 vamp:unit "value" ;
Chris@9 82 vamp:bin_count 12 ;
Chris@9 83 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 84 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 85 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 86 .
Chris@9 87 plugbase:marsyas_bextract_lsp a vamp:Plugin ;
Chris@9 88 dc:title "Marsyas - Batch Feature Extract - Line Spectral Pairs" ;
Chris@9 89 vamp:name "Marsyas - Batch Feature Extract - Line Spectral Pairs" ;
Chris@9 90 dc:description """Marsyas - Batch Feature Extract - Line Spectral Pairs""" ;
Chris@47 91 foaf:maker :maker ;
Chris@9 92 dc:rights """GPL v3 license""" ;
Chris@9 93 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 94 vamp:identifier "marsyas_bextract_lsp" ;
Chris@9 95 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 96 owl:versionInfo "2" ;
Chris@9 97 vamp:input_domain vamp:TimeDomain ;
Chris@9 98 vamp:output plugbase:marsyas_bextract_lsp_output_line_spectral_pairs ;
Chris@9 99 .
Chris@9 100 plugbase:marsyas_bextract_lsp_output_line_spectral_pairs a vamp:DenseOutput ;
Chris@9 101 vamp:identifier "line_spectral_pairs" ;
Chris@9 102 dc:title "Line Spectral Pairs" ;
Chris@9 103 dc:description "The Line Spectral Pairs per sample" ;
Chris@9 104 vamp:fixed_bin_count "true" ;
Chris@9 105 vamp:unit "value" ;
Chris@9 106 vamp:bin_count 18 ;
Chris@9 107 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 108 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 109 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 110 .
Chris@9 111 plugbase:marsyas_bextract_mfcc a vamp:Plugin ;
Chris@9 112 dc:title "Marsyas - Batch Feature Extract - Mel-Frequency Cepstral Coefficients" ;
Chris@9 113 vamp:name "Marsyas - Batch Feature Extract - Mel-Frequency Cepstral Coefficients" ;
Chris@9 114 dc:description """Marsyas - Batch Feature Extract - Mel-Frequency Cepstral Coefficients""" ;
Chris@47 115 foaf:maker :maker ;
Chris@9 116 dc:rights """GPL v3 license""" ;
Chris@9 117 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 118 vamp:identifier "marsyas_bextract_mfcc" ;
Chris@9 119 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 120 owl:versionInfo "2" ;
Chris@9 121 vamp:input_domain vamp:TimeDomain ;
Chris@9 122 vamp:output plugbase:marsyas_bextract_mfcc_output_mfcc ;
Chris@9 123 .
Chris@9 124 plugbase:marsyas_bextract_mfcc_output_mfcc a vamp:DenseOutput ;
Chris@9 125 vamp:identifier "mfcc" ;
Chris@9 126 dc:title "Mel-Frequency Cepstral Coefficients" ;
Chris@9 127 dc:description "The value of the Mel-Frequency Cepstral Coefficients" ;
Chris@9 128 vamp:fixed_bin_count "true" ;
Chris@9 129 vamp:unit "value" ;
Chris@9 130 vamp:bin_count 12 ;
Chris@9 131 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 132 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 133 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 134 .
Chris@9 135 plugbase:marsyas_bextract_rolloff a vamp:Plugin ;
Chris@9 136 dc:title "Marsyas - Batch Feature Extract - Spectral Rolloff" ;
Chris@9 137 vamp:name "Marsyas - Batch Feature Extract - Spectral Rolloff" ;
Chris@9 138 dc:description """Marsyas - Batch Feature Extract - Spectral Rolloff""" ;
Chris@47 139 foaf:maker :maker ;
Chris@9 140 dc:rights """GPL v3 license""" ;
Chris@9 141 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 142 vamp:identifier "marsyas_bextract_rolloff" ;
Chris@9 143 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 144 owl:versionInfo "2" ;
Chris@9 145 vamp:input_domain vamp:TimeDomain ;
Chris@9 146 vamp:output plugbase:marsyas_bextract_rolloff_output_rolloff ;
Chris@9 147 .
Chris@9 148 plugbase:marsyas_bextract_rolloff_output_rolloff a vamp:DenseOutput ;
Chris@9 149 vamp:identifier "rolloff" ;
Chris@9 150 dc:title "Spectral Rolloff" ;
Chris@9 151 dc:description "The value of the Spectral Rolloff" ;
Chris@9 152 vamp:fixed_bin_count "true" ;
Chris@9 153 vamp:unit "value" ;
Chris@9 154 vamp:bin_count 1 ;
Chris@9 155 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 156 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 157 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 158 .
Chris@9 159 plugbase:marsyas_bextract_scf a vamp:Plugin ;
Chris@9 160 dc:title "Marsyas - Batch Feature Extract - Spectral Crest Factor" ;
Chris@9 161 vamp:name "Marsyas - Batch Feature Extract - Spectral Crest Factor" ;
Chris@9 162 dc:description """Marsyas - Batch Feature Extract - Spectral Crest Factor""" ;
Chris@47 163 foaf:maker :maker ;
Chris@9 164 dc:rights """GPL v3 license""" ;
Chris@9 165 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 166 vamp:identifier "marsyas_bextract_scf" ;
Chris@9 167 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 168 owl:versionInfo "2" ;
Chris@9 169 vamp:input_domain vamp:TimeDomain ;
Chris@9 170 vamp:output plugbase:marsyas_bextract_scf_output_scf ;
Chris@9 171 .
Chris@9 172 plugbase:marsyas_bextract_scf_output_scf a vamp:DenseOutput ;
Chris@9 173 vamp:identifier "scf" ;
Chris@9 174 dc:title "Spectral Crest Factor" ;
Chris@9 175 dc:description "The value of the Spectral Crest Factor" ;
Chris@9 176 vamp:fixed_bin_count "true" ;
Chris@9 177 vamp:unit "value" ;
Chris@9 178 vamp:bin_count 24 ;
Chris@9 179 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 180 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 181 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 182 .
Chris@9 183 plugbase:marsyas_bextract_sfm a vamp:Plugin ;
Chris@9 184 dc:title "Marsyas - Batch Feature Extract - Spectral Flatness Measure" ;
Chris@9 185 vamp:name "Marsyas - Batch Feature Extract - Spectral Flatness Measure" ;
Chris@9 186 dc:description """Marsyas - Batch Feature Extract - Spectral Flatness Measure""" ;
Chris@47 187 foaf:maker :maker ;
Chris@9 188 dc:rights """GPL v3 license""" ;
Chris@9 189 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 190 vamp:identifier "marsyas_bextract_sfm" ;
Chris@9 191 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 192 owl:versionInfo "2" ;
Chris@9 193 vamp:input_domain vamp:TimeDomain ;
Chris@9 194 vamp:output plugbase:marsyas_bextract_sfm_output_spf ;
Chris@9 195 .
Chris@9 196 plugbase:marsyas_bextract_sfm_output_spf a vamp:DenseOutput ;
Chris@9 197 vamp:identifier "spf" ;
Chris@9 198 dc:title "Spectral Flatness Measure" ;
Chris@9 199 dc:description "The value of the Spectral Flatness Measure" ;
Chris@9 200 vamp:fixed_bin_count "true" ;
Chris@9 201 vamp:unit "value" ;
Chris@9 202 vamp:bin_count 1 ;
Chris@9 203 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 204 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 205 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 206 .
Chris@9 207 plugbase:marsyas_bextract_zero_crossings a vamp:Plugin ;
Chris@9 208 dc:title "Marsyas - Batch Feature Extract - Zero Crossings" ;
Chris@9 209 vamp:name "Marsyas - Batch Feature Extract - Zero Crossings" ;
Chris@9 210 dc:description """Marsyas - Batch Feature Extract - Zero Crossings""" ;
Chris@47 211 foaf:maker :maker ;
Chris@9 212 dc:rights """GPL v3 license""" ;
Chris@9 213 # cc:license <Place plugin license URI here and uncomment> ;
Chris@9 214 vamp:identifier "marsyas_bextract_zero_crossings" ;
Chris@9 215 vamp:vamp_API_version vamp:api_version_1 ;
Chris@9 216 owl:versionInfo "2" ;
Chris@9 217 vamp:input_domain vamp:TimeDomain ;
Chris@9 218 vamp:output plugbase:marsyas_bextract_zero_crossings_output_zero_crossing_counts ;
Chris@9 219 .
Chris@9 220 plugbase:marsyas_bextract_zero_crossings_output_zero_crossing_counts a vamp:DenseOutput ;
Chris@9 221 vamp:identifier "zero_crossing_counts" ;
Chris@9 222 dc:title "Zero Crossing Counts" ;
Chris@9 223 dc:description "The number of zero crossing points per sample" ;
Chris@9 224 vamp:fixed_bin_count "true" ;
Chris@9 225 vamp:unit "crossings" ;
Chris@9 226 vamp:bin_count 1 ;
Chris@9 227 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@9 228 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@9 229 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@9 230 .
Chris@9 231