comparison examples/vamp-example-plugins:amplitudefollower.n3 @ 138:147de5e64d28

* Update vamp.n3/rdf from km-rdf * Add template generator (old jerrell version) from sv1 repository * Add provisional RDF descriptions for example plugins
author cannam
date Thu, 19 Jun 2008 09:37:31 +0000
parents
children
comparison
equal deleted inserted replaced
137:dbab8c3a6571 138:147de5e64d28
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
3 @prefix vamp: <http://www.purl.org/ontology/vamp/> .
4 @prefix vampex: <http://www.purl.org/ontology/vamp/examples/> .
5 @prefix plugbase: <http://purl.org/ontology/vamp/examples/> .
6 @prefix owl: <http://www.w3.org/2002/07/owl#> .
7 @prefix dc: <http://purl.org/dc/elements/1.1/> .
8 @prefix af: <http://purl.org/ontology/af/> .
9 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
10 @prefix cc: <http://web.resource.org/cc/> .
11 @prefix thisplug: <http://purl.org/ontology/vamp/examples/amplitudefollower#> .
12 @prefix : <> .
13
14 <> a vamp:PluginDescription ;
15 foaf:maker <http://www.vamp-plugins.org/> ;
16 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
17 foaf:primaryTopic plugbase:amplitudefollower .
18
19 plugbase:amplitudefollower a vamp:Plugin ;
20 dc:title "Amplitude Follower" ;
21 vamp:name "Amplitude Follower" ;
22 dc:description "Track the amplitude of the audio signal" ;
23 foaf:maker [ foaf:name "Vamp SDK Example Plugins"] ; # FIXME could give plugin author's URI here
24 cc:license <FIXME license for the plugin> ;
25 vamp:identifier "amplitudefollower" ;
26 vamp:vamp_API_version vamp:api_version_1 ;
27 owl:versionInfo "1" ;
28 vamp:input_domain vamp:TimeDomain ;
29
30 vamp:parameter_descriptor thisplug:param_attack ;
31 vamp:parameter_descriptor thisplug:param_release ;
32
33 vamp:output_descriptor thisplug:output_amplitude ;
34 .
35 thisplug:param_attack a vamp:ParameterDescriptor ;
36 vamp:identifier "attack" ;
37 dc:title "Attack time" ;
38 dc:format "s" ;
39 vamp:min_value 0 ;
40 vamp:max_value 1 ;
41 vamp:default_value 0.01 .
42
43 thisplug:param_release a vamp:ParameterDescriptor ;
44 vamp:identifier "release" ;
45 dc:title "Release time" ;
46 dc:format "s" ;
47 vamp:min_value 0 ;
48 vamp:max_value 1 ;
49 vamp:default_value 0.01 .
50
51 thisplug:output_amplitude a vamp:DenseOutput ;
52 vamp:identifier "amplitude" ;
53 dc:title "Amplitude" ;
54 dc:description "" ;
55 vamp:fixed_bin_count "true" ;
56 vamp:is_quantised "false" ;
57 vamp:unit "V" ;
58 vamp:bin_count 1 ;
59 vamp:bin_names ( "");
60 vamp:sample_type vamp:OneSamplePerStep ;
61 vamp:computes_feature_type <FIXME feature type URI> ;
62 vamp:computes_event_type <FIXME event type URI> ;
63 .