Chris@8
|
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
Chris@8
|
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
Chris@8
|
3 @prefix vamp: <http://purl.org/ontology/vamp/> .
|
Chris@8
|
4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/match-vamp-plugin#> .
|
Chris@8
|
5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
|
Chris@8
|
6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
|
Chris@8
|
7 @prefix af: <http://purl.org/ontology/af/> .
|
Chris@8
|
8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
Chris@8
|
9 @prefix cc: <http://web.resource.org/cc/> .
|
Chris@11
|
10 @prefix : <#> .
|
Chris@8
|
11
|
Chris@8
|
12 <> a vamp:PluginDescription ;
|
Chris@8
|
13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
|
Chris@8
|
14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/match-vamp-plugin> .
|
Chris@8
|
15
|
Chris@8
|
16 :match-vamp-plugin a vamp:PluginLibrary ;
|
Chris@8
|
17 vamp:identifier "match-vamp-plugin" ;
|
Chris@8
|
18 vamp:available_plugin plugbase:match ;
|
Chris@8
|
19 # foaf:page <Place more-information HTML page URL here and uncomment> ;
|
Chris@8
|
20 .
|
Chris@8
|
21
|
Chris@8
|
22 plugbase:match a vamp:Plugin ;
|
Chris@8
|
23 dc:title "Match Performance Aligner" ;
|
Chris@8
|
24 vamp:name "Match Performance Aligner" ;
|
Chris@8
|
25 dc:description """Calculate alignment between two performances in separate channel inputs""" ;
|
Chris@8
|
26 foaf:maker [ foaf:name "Simon Dixon (plugin by Chris Cannam)" ] ; # FIXME could give plugin author's URI here
|
Chris@8
|
27 dc:rights """GPL""" ;
|
Chris@8
|
28 # cc:license <Place plugin license URI here and uncomment> ;
|
Chris@8
|
29 vamp:identifier "match" ;
|
Chris@8
|
30 vamp:vamp_API_version vamp:api_version_2 ;
|
Chris@8
|
31 owl:versionInfo "1" ;
|
Chris@8
|
32 vamp:input_domain vamp:FrequencyDomain ;
|
Chris@8
|
33
|
Chris@8
|
34
|
Chris@8
|
35 vamp:parameter plugbase:match_param_serialise ;
|
Chris@8
|
36
|
Chris@8
|
37 vamp:output plugbase:match_output_path ;
|
Chris@8
|
38 vamp:output plugbase:match_output_a_b ;
|
Chris@8
|
39 vamp:output plugbase:match_output_b_a ;
|
Chris@8
|
40 vamp:output plugbase:match_output_a_b_divergence ;
|
Chris@8
|
41 vamp:output plugbase:match_output_a_b_temporatio ;
|
Chris@8
|
42 .
|
Chris@8
|
43 plugbase:match_param_serialise a vamp:QuantizedParameter ;
|
Chris@8
|
44 vamp:identifier "serialise" ;
|
Chris@8
|
45 dc:title "Serialise Plugin Invocations" ;
|
Chris@8
|
46 dc:format "" ;
|
Chris@8
|
47 vamp:min_value 0 ;
|
Chris@8
|
48 vamp:max_value 1 ;
|
Chris@8
|
49 vamp:unit "" ;
|
Chris@8
|
50 vamp:quantize_step 1 ;
|
Chris@8
|
51 vamp:default_value 0 ;
|
Chris@8
|
52 vamp:value_names ();
|
Chris@8
|
53 .
|
Chris@8
|
54 plugbase:match_output_path a vamp:SparseOutput ;
|
Chris@8
|
55 vamp:identifier "path" ;
|
Chris@8
|
56 dc:title "Path" ;
|
Chris@8
|
57 dc:description "Alignment path" ;
|
Chris@8
|
58 vamp:fixed_bin_count "true" ;
|
Chris@8
|
59 vamp:unit "" ;
|
Chris@8
|
60 a vamp:QuantizedOutput ;
|
Chris@8
|
61 vamp:quantize_step 1 ;
|
Chris@8
|
62 vamp:bin_count 1 ;
|
Chris@8
|
63 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@8
|
64 vamp:sample_rate 50 ;
|
Chris@8
|
65 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@8
|
66 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@8
|
67 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@8
|
68 .
|
Chris@8
|
69 plugbase:match_output_a_b a vamp:SparseOutput ;
|
Chris@8
|
70 vamp:identifier "a_b" ;
|
Chris@8
|
71 dc:title "A-B Timeline" ;
|
Chris@8
|
72 dc:description "Timing in performance B corresponding to moments in performance A" ;
|
Chris@8
|
73 vamp:fixed_bin_count "true" ;
|
Chris@8
|
74 vamp:unit "sec" ;
|
Chris@8
|
75 vamp:bin_count 1 ;
|
Chris@8
|
76 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@8
|
77 vamp:sample_rate 50 ;
|
Chris@8
|
78 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@8
|
79 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@8
|
80 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@8
|
81 .
|
Chris@8
|
82 plugbase:match_output_b_a a vamp:SparseOutput ;
|
Chris@8
|
83 vamp:identifier "b_a" ;
|
Chris@8
|
84 dc:title "B-A Timeline" ;
|
Chris@8
|
85 dc:description "Timing in performance A corresponding to moments in performance B" ;
|
Chris@8
|
86 vamp:fixed_bin_count "true" ;
|
Chris@8
|
87 vamp:unit "sec" ;
|
Chris@8
|
88 vamp:bin_count 1 ;
|
Chris@8
|
89 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@8
|
90 vamp:sample_rate 50 ;
|
Chris@8
|
91 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@8
|
92 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@8
|
93 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@8
|
94 .
|
Chris@8
|
95 plugbase:match_output_a_b_divergence a vamp:SparseOutput ;
|
Chris@8
|
96 vamp:identifier "a_b_divergence" ;
|
Chris@8
|
97 dc:title "A-B Divergence" ;
|
Chris@8
|
98 dc:description "Difference between timings in performances A and B" ;
|
Chris@8
|
99 vamp:fixed_bin_count "true" ;
|
Chris@8
|
100 vamp:unit "sec" ;
|
Chris@8
|
101 vamp:bin_count 1 ;
|
Chris@8
|
102 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@8
|
103 vamp:sample_rate 50 ;
|
Chris@8
|
104 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@8
|
105 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@8
|
106 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@8
|
107 .
|
Chris@8
|
108 plugbase:match_output_a_b_temporatio a vamp:SparseOutput ;
|
Chris@8
|
109 vamp:identifier "a_b_temporatio" ;
|
Chris@8
|
110 dc:title "A-B Tempo Ratio" ;
|
Chris@8
|
111 dc:description "Ratio of tempi between performances A and B" ;
|
Chris@8
|
112 vamp:fixed_bin_count "true" ;
|
Chris@8
|
113 vamp:unit "" ;
|
Chris@8
|
114 vamp:bin_count 1 ;
|
Chris@8
|
115 vamp:sample_type vamp:VariableSampleRate ;
|
Chris@8
|
116 vamp:sample_rate 50 ;
|
Chris@8
|
117 # vamp:computes_event_type <Place event type URI here and uncomment> ;
|
Chris@8
|
118 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
|
Chris@8
|
119 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
|
Chris@8
|
120 .
|
Chris@8
|
121
|