Mercurial > hg > silvet
comparison silvet.n3 @ 191:ec19a15bee82
RDF file, and some copyright etc updates
author | Chris Cannam |
---|---|
date | Wed, 04 Jun 2014 09:55:31 +0100 |
parents | |
children | d315e946c5fc |
comparison
equal
deleted
inserted
replaced
183:59e3cca75b8d | 191:ec19a15bee82 |
---|---|
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 cc: <http://web.resource.org/cc/> . | |
10 @prefix : <#> . | |
11 | |
12 <> a vamp:PluginDescription ; | |
13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ; | |
14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/silvet> . | |
15 | |
16 :silvet a vamp:PluginLibrary ; | |
17 vamp:identifier "silvet" ; | |
18 vamp:available_plugin plugbase:silvet ; | |
19 foaf:page <http://code.soundsoftware.ac.uk/projects/silvet> ; | |
20 . | |
21 | |
22 plugbase:silvet a vamp:Plugin ; | |
23 dc:title "Silvet Note Transcription" ; | |
24 vamp:name "Silvet Note Transcription" ; | |
25 dc:description """""" ; | |
26 foaf:maker [ foaf:name "Queen Mary, University of London" ] ; # FIXME could give plugin author's URI here | |
27 dc:rights """Method by Emmanouil Benetos and Simon Dixon; plugin by Chris Cannam and Emmanouil Benetos. GPL licence.""" ; | |
28 # cc:license <Place plugin license URI here and uncomment> ; | |
29 vamp:identifier "silvet" ; | |
30 vamp:vamp_API_version vamp:api_version_2 ; | |
31 owl:versionInfo "1" ; | |
32 vamp:input_domain vamp:TimeDomain ; | |
33 | |
34 vamp:parameter plugbase:silvet_param_mode ; | |
35 vamp:parameter plugbase:silvet_param_instrument ; | |
36 vamp:parameter plugbase:silvet_param_finetune ; | |
37 | |
38 vamp:output plugbase:silvet_output_notes ; | |
39 vamp:output plugbase:silvet_output_timefreq ; | |
40 . | |
41 plugbase:silvet_param_mode a vamp:QuantizedParameter ; | |
42 vamp:identifier "mode" ; | |
43 dc:title "Processing mode" ; | |
44 dc:format "" ; | |
45 vamp:min_value 0 ; | |
46 vamp:max_value 1 ; | |
47 vamp:unit "" ; | |
48 vamp:quantize_step 1 ; | |
49 vamp:default_value 1 ; | |
50 vamp:value_names ( "Draft (faster)" "Intensive (higher quality)"); | |
51 . | |
52 plugbase:silvet_param_instrument a vamp:QuantizedParameter ; | |
53 vamp:identifier "instrument" ; | |
54 dc:title "Instrument" ; | |
55 dc:format "" ; | |
56 vamp:min_value 0 ; | |
57 vamp:max_value 12 ; | |
58 vamp:unit "" ; | |
59 vamp:quantize_step 1 ; | |
60 vamp:default_value 0 ; | |
61 vamp:value_names ( "Multiple or unknown instruments" "Piano" "Guitar" "Violin" "Cello" "Horn" "Flute" "Oboe" "Clarinet" "Tenor Sax" "Bassoon" "String ensemble" "Wind ensemble"); | |
62 . | |
63 plugbase:silvet_param_finetune a vamp:QuantizedParameter ; | |
64 vamp:identifier "finetune" ; | |
65 dc:title "Return fine pitch estimates" ; | |
66 dc:format "" ; | |
67 vamp:min_value 0 ; | |
68 vamp:max_value 1 ; | |
69 vamp:unit "" ; | |
70 vamp:quantize_step 1 ; | |
71 vamp:default_value 0 ; | |
72 vamp:value_names (); | |
73 . | |
74 plugbase:silvet_output_notes a vamp:SparseOutput ; | |
75 vamp:identifier "notes" ; | |
76 dc:title "Note transcription" ; | |
77 dc:description """Overall note transcription across selected instruments""" ; | |
78 vamp:fixed_bin_count "true" ; | |
79 vamp:unit "Hz" ; | |
80 vamp:bin_count 2 ; | |
81 vamp:bin_names ( "Frequency" "Velocity"); | |
82 vamp:sample_type vamp:VariableSampleRate ; | |
83 vamp:sample_rate 711.29 ; | |
84 # vamp:computes_event_type <Place event type URI here and uncomment> ; | |
85 # vamp:computes_feature <Place feature attribute URI here and uncomment> ; | |
86 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; | |
87 . | |
88 plugbase:silvet_output_timefreq a vamp:DenseOutput ; | |
89 vamp:identifier "timefreq" ; | |
90 dc:title "Time-frequency distribution" ; | |
91 dc:description """Filtered constant-Q time-frequency distribution used as input to the expectation-maximisation algorithm""" ; | |
92 vamp:fixed_bin_count "true" ; | |
93 vamp:unit "" ; | |
94 vamp:bin_count 545 ; | |
95 # vamp:computes_event_type <Place event type URI here and uncomment> ; | |
96 # vamp:computes_feature <Place feature attribute URI here and uncomment> ; | |
97 # vamp:computes_signal_type <Place signal type URI here and uncomment> ; | |
98 . | |
99 |