# HG changeset patch # User cannam # Date 1223933267 0 # Node ID 4e90c48a74608d515a7874f3849b7f20150e043c # Parent e100112ecc06251d863dba16d70acfae71819513 * of course! with TortoiseSVN under Windows, you can't check out a repository that has files with ":" in their names, because Windows can't handle them... diff -r e100112ecc06 -r 4e90c48a7460 examples/vamp-example-plugins:amplitudefollower.n3 --- a/examples/vamp-example-plugins:amplitudefollower.n3 Sat Oct 11 08:10:21 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,63 +0,0 @@ -@prefix rdfs: . -@prefix xsd: . -@prefix vamp: . -@prefix vampex: . -@prefix plugbase: . -@prefix owl: . -@prefix dc: . -@prefix af: . -@prefix foaf: . -@prefix cc: . -@prefix thisplug: . -@prefix : <> . - -<> a vamp:PluginDescription ; - foaf:maker ; - foaf:maker ; - foaf:primaryTopic plugbase:amplitudefollower . - -plugbase:amplitudefollower a vamp:Plugin ; - dc:title "Amplitude Follower" ; - vamp:name "Amplitude Follower" ; - dc:description "Track the amplitude of the audio signal" ; - foaf:maker [ foaf:name "Vamp SDK Example Plugins"] ; # FIXME could give plugin author's URI here - cc:license ; - vamp:identifier "amplitudefollower" ; - vamp:vamp_API_version vamp:api_version_1 ; - owl:versionInfo "1" ; - vamp:input_domain vamp:TimeDomain ; - - vamp:parameter_descriptor thisplug:param_attack ; - vamp:parameter_descriptor thisplug:param_release ; - - vamp:output_descriptor thisplug:output_amplitude ; - . -thisplug:param_attack a vamp:ParameterDescriptor ; - vamp:identifier "attack" ; - dc:title "Attack time" ; - dc:format "s" ; - vamp:min_value 0 ; - vamp:max_value 1 ; - vamp:default_value 0.01 . - -thisplug:param_release a vamp:ParameterDescriptor ; - vamp:identifier "release" ; - dc:title "Release time" ; - dc:format "s" ; - vamp:min_value 0 ; - vamp:max_value 1 ; - vamp:default_value 0.01 . - -thisplug:output_amplitude a vamp:DenseOutput ; - vamp:identifier "amplitude" ; - dc:title "Amplitude" ; - dc:description "" ; - vamp:fixed_bin_count "true" ; - vamp:is_quantised "false" ; - vamp:unit "V" ; - vamp:bin_count 1 ; - vamp:bin_names ( ""); - vamp:sample_type vamp:OneSamplePerStep ; - vamp:computes_feature_type ; - vamp:computes_event_type ; - . diff -r e100112ecc06 -r 4e90c48a7460 examples/vamp-example-plugins:percussiononsets.n3 --- a/examples/vamp-example-plugins:percussiononsets.n3 Sat Oct 11 08:10:21 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,78 +0,0 @@ -@prefix rdfs: . -@prefix xsd: . -@prefix vamp: . -@prefix vampex: . -@prefix plugbase: . -@prefix owl: . -@prefix dc: . -@prefix af: . -@prefix foaf: . -@prefix cc: . -@prefix thisplug: . -@prefix : <> . - -<> a vamp:PluginDescription ; - foaf:maker ; - foaf:maker ; - foaf:primaryTopic plugbase:percussiononsets . - -plugbase:percussiononsets a vamp:Plugin ; - dc:title "Simple Percussion Onset Detector" ; - vamp:name "Simple Percussion Onset Detector" ; - dc:description "Detect percussive note onsets by identifying broadband energy rises" ; - foaf:maker [ foaf:name "Vamp SDK Example Plugins"] ; # FIXME could give plugin author's URI here - cc:license ; - vamp:identifier "percussiononsets" ; - vamp:vamp_API_version vamp:api_version_1 ; - owl:versionInfo "2" ; - vamp:input_domain vamp:TimeDomain ; - - vamp:parameter_descriptor thisplug:param_threshold ; - vamp:parameter_descriptor thisplug:param_sensitivity ; - - vamp:output_descriptor thisplug:output_onsets ; - vamp:output_descriptor thisplug:output_detectionfunction ; - . -thisplug:param_threshold a vamp:ParameterDescriptor ; - vamp:identifier "threshold" ; - dc:title "Energy rise threshold" ; - dc:format "dB" ; - vamp:min_value 0 ; - vamp:max_value 20 ; - vamp:default_value 3 . - -thisplug:param_sensitivity a vamp:ParameterDescriptor ; - vamp:identifier "sensitivity" ; - dc:title "Sensitivity" ; - dc:format "%" ; - vamp:min_value 0 ; - vamp:max_value 100 ; - vamp:default_value 40 . - -thisplug:output_onsets a vamp:SparseOutput ; - vamp:identifier "onsets" ; - dc:title "Onsets" ; - dc:description "Percussive note onset locations" ; - vamp:fixed_bin_count "true" ; - vamp:is_quantized "false" ; - vamp:unit "" ; - vamp:bin_count 0 ; - vamp:bin_names (); - vamp:sample_type vamp:VariableSampleRate ; - vamp:sample_rate 44100 ; - vamp:computes_feature_type ; - vamp:computes_event_type ; - . -thisplug:output_detectionfunction a vamp:DenseOutput ; - vamp:identifier "detectionfunction" ; - dc:title "Detection Function" ; - dc:description "Broadband energy rise detection function" ; - vamp:fixed_bin_count "true" ; - vamp:is_quantised "true" ; - vamp:unit "" ; - vamp:bin_count 1 ; - vamp:bin_names ( ""); - vamp:quantize_step 1 ; - vamp:computes_feature_type ; - vamp:computes_event_type ; - . diff -r e100112ecc06 -r 4e90c48a7460 examples/vamp-example-plugins:spectralcentroid.n3 --- a/examples/vamp-example-plugins:spectralcentroid.n3 Sat Oct 11 08:10:21 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,59 +0,0 @@ -@prefix rdfs: . -@prefix xsd: . -@prefix vamp: . -@prefix vampex: . -@prefix plugbase: . -@prefix owl: . -@prefix dc: . -@prefix af: . -@prefix foaf: . -@prefix cc: . -@prefix thisplug: . -@prefix : <> . - -<> a vamp:PluginDescription ; - foaf:maker ; - foaf:maker ; - foaf:primaryTopic plugbase:spectralcentroid . - -plugbase:spectralcentroid a vamp:Plugin ; - dc:title "Spectral Centroid" ; - vamp:name "Spectral Centroid" ; - dc:description "Calculate the centroid frequency of the spectrum of the input signal" ; - foaf:maker [ foaf:name "Vamp SDK Example Plugins"] ; # FIXME could give plugin author's URI here - cc:license ; - vamp:identifier "spectralcentroid" ; - vamp:vamp_API_version vamp:api_version_1 ; - owl:versionInfo "2" ; - vamp:input_domain vamp:TimeDomain ; - - - vamp:output_descriptor thisplug:output_logcentroid ; - vamp:output_descriptor thisplug:output_linearcentroid ; - . -thisplug:output_logcentroid a vamp:DenseOutput ; - vamp:identifier "logcentroid" ; - dc:title "Log Frequency Centroid" ; - dc:description "Centroid of the log weighted frequency spectrum" ; - vamp:fixed_bin_count "true" ; - vamp:is_quantised "false" ; - vamp:unit "Hz" ; - vamp:bin_count 1 ; - vamp:bin_names ( ""); - vamp:sample_type vamp:OneSamplePerStep ; - vamp:computes_feature_type ; - vamp:computes_event_type ; - . -thisplug:output_linearcentroid a vamp:DenseOutput ; - vamp:identifier "linearcentroid" ; - dc:title "Linear Frequency Centroid" ; - dc:description "Centroid of the linear frequency spectrum" ; - vamp:fixed_bin_count "true" ; - vamp:is_quantised "false" ; - vamp:unit "Hz" ; - vamp:bin_count 1 ; - vamp:bin_names ( ""); - vamp:sample_type vamp:OneSamplePerStep ; - vamp:computes_feature_type ; - vamp:computes_event_type ; - . diff -r e100112ecc06 -r 4e90c48a7460 examples/vamp-example-plugins:zerocrossing.n3 --- a/examples/vamp-example-plugins:zerocrossing.n3 Sat Oct 11 08:10:21 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,61 +0,0 @@ -@prefix rdfs: . -@prefix xsd: . -@prefix vamp: . -@prefix vampex: . -@prefix plugbase: . -@prefix owl: . -@prefix dc: . -@prefix af: . -@prefix foaf: . -@prefix cc: . -@prefix thisplug: . -@prefix : <> . - -<> a vamp:PluginDescription ; - foaf:maker ; - foaf:maker ; - foaf:primaryTopic plugbase:zerocrossing . - -plugbase:zerocrossing a vamp:Plugin ; - dc:title "Zero Crossings" ; - vamp:name "Zero Crossings" ; - dc:description "Detect and count zero crossing points" ; - foaf:maker [ foaf:name "Vamp SDK Example Plugins"] ; # FIXME could give plugin author's URI here - cc:license ; - vamp:identifier "zerocrossing" ; - vamp:vamp_API_version vamp:api_version_1 ; - owl:versionInfo "2" ; - vamp:input_domain vamp:TimeDomain ; - - - vamp:output_descriptor thisplug:output_counts ; - vamp:output_descriptor thisplug:output_zerocrossings ; - . -thisplug:output_counts a vamp:DenseOutput ; - vamp:identifier "counts" ; - dc:title "Zero Crossing Counts" ; - dc:description "The number of zero crossing points per processing block" ; - vamp:fixed_bin_count "true" ; - vamp:is_quantised "true" ; - vamp:unit "crossings" ; - vamp:bin_count 1 ; - vamp:bin_names ( ""); - vamp:quantize_step 1 ; - vamp:computes_feature_type ; - vamp:computes_event_type ; - . -thisplug:output_zerocrossings a vamp:SparseOutput ; - vamp:identifier "zerocrossings" ; - dc:title "Zero Crossings" ; - dc:description "The locations of zero crossing points" ; - vamp:fixed_bin_count "true" ; - vamp:is_quantized "true" ; - vamp:unit "" ; - vamp:bin_count 0 ; - vamp:bin_names (); - vamp:quantize_step 1 ; - vamp:sample_type vamp:VariableSampleRate ; - vamp:sample_rate 44100 ; - vamp:computes_feature_type ; - vamp:computes_event_type ; - .