annotate plugins/vamp-example-plugins.n3 @ 3:1d947b8a6a2d

* Update example plugins rdf
author Chris Cannam
date Wed, 29 Oct 2008 15:19:31 +0000
parents adaee409f631
children 56407739b1c3
rev   line source
Chris@0 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@0 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@0 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@0 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#> .
Chris@0 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@0 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@0 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@0 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@0 9 @prefix cc: <http://web.resource.org/cc/> .
Chris@0 10 @prefix : <> .
Chris@0 11
Chris@0 12 <> a vamp:PluginDescription ;
Chris@0 13 foaf:maker <x> ;
Chris@0 14 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@0 15 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins> .
Chris@0 16
Chris@0 17 :vamp-example-plugins a vamp:PluginLibrary ;
Chris@0 18 vamp:identifier "vamp-example-plugins" ;
Chris@3 19 foaf:page <http://www.vamp-plugins.org/download.html> ;
Chris@0 20 vamp:available_plugin plugbase:amplitudefollower;
Chris@0 21 vamp:available_plugin plugbase:percussiononsets;
Chris@0 22 vamp:available_plugin plugbase:spectralcentroid;
Chris@0 23 vamp:available_plugin plugbase:zerocrossing .
Chris@0 24
Chris@0 25 plugbase:amplitudefollower a vamp:Plugin ;
Chris@0 26 dc:title "Amplitude Follower" ;
Chris@0 27 vamp:name "Amplitude Follower" ;
Chris@0 28 dc:description "Track the amplitude of the audio signal" ;
Chris@0 29 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; # FIXME could give plugin author's URI here
Chris@0 30 # cc:license <Place plugin license URI here and uncomment> ;
Chris@0 31 vamp:identifier "amplitudefollower" ;
Chris@0 32 vamp:vamp_API_version vamp:api_version_1 ;
Chris@0 33 owl:versionInfo "1" ;
Chris@0 34 vamp:input_domain vamp:TimeDomain ;
Chris@0 35
Chris@0 36 vamp:parameter plugbase:amplitudefollower_param_attack ;
Chris@0 37 vamp:parameter plugbase:amplitudefollower_param_release ;
Chris@0 38
Chris@3 39 vamp:output plugbase:amplitudefollower_output_amplitude ;
Chris@0 40 .
Chris@0 41 plugbase:amplitudefollower_param_attack a vamp:Parameter ;
Chris@0 42 vamp:identifier "attack" ;
Chris@0 43 dc:title "Attack time" ;
Chris@0 44 dc:format "s" ;
Chris@0 45 vamp:min_value 0 ;
Chris@0 46 vamp:max_value 1 ;
Chris@0 47 vamp:unit "s" ;
Chris@0 48 vamp:default_value 0.01 ;
Chris@0 49 vamp:value_names ();
Chris@0 50 .
Chris@0 51 plugbase:amplitudefollower_param_release a vamp:Parameter ;
Chris@0 52 vamp:identifier "release" ;
Chris@0 53 dc:title "Release time" ;
Chris@0 54 dc:format "s" ;
Chris@0 55 vamp:min_value 0 ;
Chris@0 56 vamp:max_value 1 ;
Chris@0 57 vamp:unit "s" ;
Chris@0 58 vamp:default_value 0.01 ;
Chris@0 59 vamp:value_names ();
Chris@0 60 .
Chris@0 61 plugbase:amplitudefollower_output_amplitude a vamp:DenseOutput ;
Chris@0 62 vamp:identifier "amplitude" ;
Chris@0 63 dc:title "Amplitude" ;
Chris@0 64 dc:description "" ;
Chris@0 65 vamp:fixed_bin_count "true" ;
Chris@0 66 vamp:unit "V" ;
Chris@0 67 vamp:bin_count 1 ;
Chris@0 68 vamp:bin_names ( "");
Chris@3 69 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@3 70 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@3 71 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@0 72 .
Chris@0 73 plugbase:percussiononsets a vamp:Plugin ;
Chris@0 74 dc:title "Simple Percussion Onset Detector" ;
Chris@0 75 vamp:name "Simple Percussion Onset Detector" ;
Chris@0 76 dc:description "Detect percussive note onsets by identifying broadband energy rises" ;
Chris@0 77 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; # FIXME could give plugin author's URI here
Chris@0 78 # cc:license <Place plugin license URI here and uncomment> ;
Chris@0 79 vamp:identifier "percussiononsets" ;
Chris@0 80 vamp:vamp_API_version vamp:api_version_1 ;
Chris@0 81 owl:versionInfo "2" ;
Chris@0 82 vamp:input_domain vamp:FrequencyDomain ;
Chris@0 83
Chris@0 84 vamp:parameter plugbase:percussiononsets_param_threshold ;
Chris@0 85 vamp:parameter plugbase:percussiononsets_param_sensitivity ;
Chris@0 86
Chris@3 87 vamp:output plugbase:percussiononsets_output_onsets ;
Chris@3 88 vamp:output plugbase:percussiononsets_output_detectionfunction ;
Chris@0 89 .
Chris@0 90 plugbase:percussiononsets_param_threshold a vamp:Parameter ;
Chris@0 91 vamp:identifier "threshold" ;
Chris@0 92 dc:title "Energy rise threshold" ;
Chris@0 93 dc:format "dB" ;
Chris@0 94 vamp:min_value 0 ;
Chris@0 95 vamp:max_value 20 ;
Chris@0 96 vamp:unit "dB" ;
Chris@0 97 vamp:default_value 3 ;
Chris@0 98 vamp:value_names ();
Chris@0 99 .
Chris@0 100 plugbase:percussiononsets_param_sensitivity a vamp:Parameter ;
Chris@0 101 vamp:identifier "sensitivity" ;
Chris@0 102 dc:title "Sensitivity" ;
Chris@0 103 dc:format "%" ;
Chris@0 104 vamp:min_value 0 ;
Chris@0 105 vamp:max_value 100 ;
Chris@0 106 vamp:unit "%" ;
Chris@0 107 vamp:default_value 40 ;
Chris@0 108 vamp:value_names ();
Chris@0 109 .
Chris@0 110 plugbase:percussiononsets_output_onsets a vamp:SparseOutput ;
Chris@0 111 vamp:identifier "onsets" ;
Chris@0 112 dc:title "Onsets" ;
Chris@0 113 dc:description "Percussive note onset locations" ;
Chris@0 114 vamp:fixed_bin_count "true" ;
Chris@0 115 vamp:unit "" ;
Chris@0 116 vamp:bin_count 0 ;
Chris@0 117 vamp:bin_names ();
Chris@0 118 vamp:sample_type vamp:VariableSampleRate ;
Chris@0 119 vamp:sample_rate 44100 ;
Chris@3 120 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@3 121 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@3 122 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@0 123 .
Chris@0 124 plugbase:percussiononsets_output_detectionfunction a vamp:DenseOutput ;
Chris@0 125 vamp:identifier "detectionfunction" ;
Chris@0 126 dc:title "Detection Function" ;
Chris@0 127 dc:description "Broadband energy rise detection function" ;
Chris@0 128 vamp:fixed_bin_count "true" ;
Chris@0 129 vamp:unit "" ;
Chris@0 130 a vamp:QuantizedOutput ;
Chris@0 131 vamp:quantize_step 1 ;
Chris@0 132 vamp:bin_count 1 ;
Chris@0 133 vamp:bin_names ( "");
Chris@3 134 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@3 135 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@3 136 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@0 137 .
Chris@0 138 plugbase:spectralcentroid a vamp:Plugin ;
Chris@0 139 dc:title "Spectral Centroid" ;
Chris@0 140 vamp:name "Spectral Centroid" ;
Chris@0 141 dc:description "Calculate the centroid frequency of the spectrum of the input signal" ;
Chris@0 142 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; # FIXME could give plugin author's URI here
Chris@0 143 # cc:license <Place plugin license URI here and uncomment> ;
Chris@0 144 vamp:identifier "spectralcentroid" ;
Chris@0 145 vamp:vamp_API_version vamp:api_version_1 ;
Chris@0 146 owl:versionInfo "2" ;
Chris@0 147 vamp:input_domain vamp:FrequencyDomain ;
Chris@0 148
Chris@0 149
Chris@3 150 vamp:output plugbase:spectralcentroid_output_logcentroid ;
Chris@3 151 vamp:output plugbase:spectralcentroid_output_linearcentroid ;
Chris@0 152 .
Chris@0 153 plugbase:spectralcentroid_output_logcentroid a vamp:DenseOutput ;
Chris@0 154 vamp:identifier "logcentroid" ;
Chris@0 155 dc:title "Log Frequency Centroid" ;
Chris@0 156 dc:description "Centroid of the log weighted frequency spectrum" ;
Chris@0 157 vamp:fixed_bin_count "true" ;
Chris@0 158 vamp:unit "Hz" ;
Chris@0 159 vamp:bin_count 1 ;
Chris@0 160 vamp:bin_names ( "");
Chris@3 161 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@3 162 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@3 163 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@0 164 .
Chris@0 165 plugbase:spectralcentroid_output_linearcentroid a vamp:DenseOutput ;
Chris@0 166 vamp:identifier "linearcentroid" ;
Chris@0 167 dc:title "Linear Frequency Centroid" ;
Chris@0 168 dc:description "Centroid of the linear frequency spectrum" ;
Chris@0 169 vamp:fixed_bin_count "true" ;
Chris@0 170 vamp:unit "Hz" ;
Chris@0 171 vamp:bin_count 1 ;
Chris@0 172 vamp:bin_names ( "");
Chris@3 173 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@3 174 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@3 175 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@0 176 .
Chris@0 177 plugbase:zerocrossing a vamp:Plugin ;
Chris@0 178 dc:title "Zero Crossings" ;
Chris@0 179 vamp:name "Zero Crossings" ;
Chris@0 180 dc:description "Detect and count zero crossing points" ;
Chris@0 181 foaf:maker [ foaf:name "Vamp SDK Example Plugins" ] ; # FIXME could give plugin author's URI here
Chris@0 182 # cc:license <Place plugin license URI here and uncomment> ;
Chris@0 183 vamp:identifier "zerocrossing" ;
Chris@0 184 vamp:vamp_API_version vamp:api_version_1 ;
Chris@0 185 owl:versionInfo "2" ;
Chris@0 186 vamp:input_domain vamp:TimeDomain ;
Chris@0 187
Chris@0 188
Chris@3 189 vamp:output plugbase:zerocrossing_output_counts ;
Chris@3 190 vamp:output plugbase:zerocrossing_output_zerocrossings ;
Chris@0 191 .
Chris@0 192 plugbase:zerocrossing_output_counts a vamp:DenseOutput ;
Chris@0 193 vamp:identifier "counts" ;
Chris@0 194 dc:title "Zero Crossing Counts" ;
Chris@0 195 dc:description "The number of zero crossing points per processing block" ;
Chris@0 196 vamp:fixed_bin_count "true" ;
Chris@0 197 vamp:unit "crossings" ;
Chris@0 198 a vamp:QuantizedOutput ;
Chris@0 199 vamp:quantize_step 1 ;
Chris@0 200 vamp:bin_count 1 ;
Chris@0 201 vamp:bin_names ( "");
Chris@3 202 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@3 203 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@3 204 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@0 205 .
Chris@0 206 plugbase:zerocrossing_output_zerocrossings a vamp:SparseOutput ;
Chris@0 207 vamp:identifier "zerocrossings" ;
Chris@0 208 dc:title "Zero Crossings" ;
Chris@0 209 dc:description "The locations of zero crossing points" ;
Chris@0 210 vamp:fixed_bin_count "true" ;
Chris@0 211 vamp:unit "" ;
Chris@0 212 a vamp:QuantizedOutput ;
Chris@0 213 vamp:quantize_step 1 ;
Chris@0 214 vamp:bin_count 0 ;
Chris@0 215 vamp:bin_names ();
Chris@0 216 vamp:sample_type vamp:VariableSampleRate ;
Chris@0 217 vamp:sample_rate 44100 ;
Chris@3 218 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@3 219 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@3 220 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@0 221 .
Chris@0 222