comparison examples/vamp-example-plugins:zerocrossing.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/zerocrossing#> .
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:zerocrossing .
18
19 plugbase:zerocrossing a vamp:Plugin ;
20 dc:title "Zero Crossings" ;
21 vamp:name "Zero Crossings" ;
22 dc:description "Detect and count zero crossing points" ;
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 "zerocrossing" ;
26 vamp:vamp_API_version vamp:api_version_1 ;
27 owl:versionInfo "2" ;
28 vamp:input_domain vamp:TimeDomain ;
29
30
31 vamp:output_descriptor thisplug:output_counts ;
32 vamp:output_descriptor thisplug:output_zerocrossings ;
33 .
34 thisplug:output_counts a vamp:DenseOutput ;
35 vamp:identifier "counts" ;
36 dc:title "Zero Crossing Counts" ;
37 dc:description "The number of zero crossing points per processing block" ;
38 vamp:fixed_bin_count "true" ;
39 vamp:is_quantised "true" ;
40 vamp:unit "crossings" ;
41 vamp:bin_count 1 ;
42 vamp:bin_names ( "");
43 vamp:quantize_step 1 ;
44 vamp:computes_feature_type <FIXME feature type URI> ;
45 vamp:computes_event_type <FIXME event type URI> ;
46 .
47 thisplug:output_zerocrossings a vamp:SparseOutput ;
48 vamp:identifier "zerocrossings" ;
49 dc:title "Zero Crossings" ;
50 dc:description "The locations of zero crossing points" ;
51 vamp:fixed_bin_count "true" ;
52 vamp:is_quantized "true" ;
53 vamp:unit "" ;
54 vamp:bin_count 0 ;
55 vamp:bin_names ();
56 vamp:quantize_step 1 ;
57 vamp:sample_type vamp:VariableSampleRate ;
58 vamp:sample_rate 44100 ;
59 vamp:computes_feature_type <FIXME feature type URI> ;
60 vamp:computes_event_type <FIXME event type URI> ;
61 .