comparison cpack/dml/rdf/silvet.n3 @ 0:718306e29690 tip

commiting public release
author Daniel Wolff
date Tue, 09 Feb 2016 21:05:06 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:718306e29690
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
3 @prefix vamp: <http://purl.org/ontology/vamp/> .
4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/silvet#> .
5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
7 @prefix af: <http://purl.org/ontology/af/> .
8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
9 @prefix doap: <http://usefulinc.com/ns/doap#> .
10 @prefix cc: <http://web.resource.org/cc/> .
11 @prefix : <#> .
12
13
14 ## Properties of this document
15
16 <> a vamp:PluginDescription ;
17 foaf:maker <http://vamp-plugins.org/rdf/template-generator> ;
18 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/silvet> .
19
20
21 ## Maker of the whole plugin library
22
23 :library_maker
24 foaf:name "Queen Mary, University of London" ;
25 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
26 foaf:page <http://c4dm.eecs.qmul.ac.uk/>
27 .
28
29
30 ## Properties of the plugin library, and references to the plugins it contains
31
32 plugbase:library a vamp:PluginLibrary ;
33 vamp:identifier "silvet" ;
34 foaf:maker :library_maker ;
35 vamp:available_plugin plugbase:silvet ;
36 dc:title "Silvet Note Transcription" ; # Place library name here and uncomment
37 dc:description """Silvet, or Shift-Invariant Latent Variable Transcription, is a Vamp plugin for polyphonic music transcription (from audio to note times and pitches).""" ;
38 foaf:page <http://code.soundsoftware.ac.uk/projects/silvet> ;
39 doap:download-page <http://code.soundsoftware.ac.uk/projects/silvet/files> ;
40 .
41
42
43 ## Properties of the Silvet Note Transcription plugin
44
45 plugbase:silvet a vamp:Plugin ;
46 dc:title "Silvet Note Transcription" ;
47 vamp:name "Silvet Note Transcription" ;
48 dc:description """Estimate the note onsets, pitches, and durations that make up a music recording.""" ;
49 foaf:maker :library_maker ;
50 dc:rights """Method by Emmanouil Benetos and Simon Dixon; plugin by Chris Cannam and Emmanouil Benetos. GPL licence.""" ;
51 # cc:license <Place plugin license URI here and uncomment> ;
52 vamp:identifier "silvet" ;
53 vamp:vamp_API_version vamp:api_version_2 ;
54 owl:versionInfo "1" ;
55 vamp:input_domain vamp:TimeDomain ;
56 vamp:parameter plugbase:silvet_param_mode ;
57 vamp:parameter plugbase:silvet_param_instrument ;
58 vamp:parameter plugbase:silvet_param_finetune ;
59
60 vamp:output plugbase:silvet_output_notes ;
61 vamp:output plugbase:silvet_output_timefreq ;
62 vamp:output plugbase:silvet_output_pitchactivation ;
63 .
64 plugbase:silvet_param_mode a vamp:QuantizedParameter ;
65 vamp:identifier "mode" ;
66 dc:title "Processing mode" ;
67 dc:format "" ;
68 vamp:min_value 0 ;
69 vamp:max_value 1 ;
70 vamp:unit "" ;
71 vamp:quantize_step 1 ;
72 vamp:default_value 1 ;
73 vamp:value_names ( "Draft (faster)" "Intensive (higher quality)");
74 .
75 plugbase:silvet_param_instrument a vamp:QuantizedParameter ;
76 vamp:identifier "instrument" ;
77 dc:title "Instrument" ;
78 dc:format "" ;
79 vamp:min_value 0 ;
80 vamp:max_value 13 ;
81 vamp:unit "" ;
82 vamp:quantize_step 1 ;
83 vamp:default_value 0 ;
84 vamp:value_names ( "Multiple or unknown instruments" "Piano" "Guitar" "Violin" "Viola" "Cello" "Horn" "Flute" "Oboe" "Clarinet" "Tenor Sax" "Bassoon" "String quartet" "Wind ensemble");
85 .
86 plugbase:silvet_param_finetune a vamp:QuantizedParameter ;
87 vamp:identifier "finetune" ;
88 dc:title "Return fine pitch estimates" ;
89 dc:format "" ;
90 vamp:min_value 0 ;
91 vamp:max_value 1 ;
92 vamp:unit "" ;
93 vamp:quantize_step 1 ;
94 vamp:default_value 0 ;
95 vamp:value_names ();
96 .
97 plugbase:silvet_output_notes a vamp:SparseOutput ;
98 vamp:identifier "notes" ;
99 dc:title "Note transcription" ;
100 dc:description """Overall note transcription. Each note has time, duration, estimated pitch, and a synthetic MIDI velocity (1-127) estimated from the strength of the pitch in the mixture.""" ;
101 vamp:fixed_bin_count "true" ;
102 vamp:unit "Hz" ;
103 vamp:bin_count 2 ;
104 vamp:bin_names ( "Frequency" "Velocity");
105 vamp:sample_type vamp:VariableSampleRate ;
106 vamp:computes_event_type af:Note ;
107 .
108 plugbase:silvet_output_timefreq a vamp:DenseOutput ;
109 vamp:identifier "timefreq" ;
110 dc:title "Time-frequency distribution" ;
111 dc:description """Filtered constant-Q time-frequency distribution as used as input to the expectation-maximisation algorithm""" ;
112 vamp:fixed_bin_count "true" ;
113 vamp:bin_count 545 ;
114 vamp:unit "" ;
115 vamp:computes_signal_type af:Spectrogram ;
116 .
117 plugbase:silvet_output_pitchactivation a vamp:DenseOutput ;
118 vamp:identifier "pitchactivation" ;
119 dc:title "Pitch activation distribution" ;
120 dc:description """Pitch activation distribution resulting from expectation-maximisation algorithm, prior to note extraction.""" ;
121 vamp:fixed_bin_count "true" ;
122 vamp:unit "" ;
123 vamp:bin_count 88 ;
124 vamp:computes_signal_type af:Spectrogram ;
125 .