annotate plugins/silvet.n3 @ 100:c0afe853924a tip

Use common name
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 29 Jun 2021 12:11:48 +0100
parents 7ed841b636ea
children
rev   line source
Chris@51 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@51 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@51 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@51 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/silvet#> .
Chris@51 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@51 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@51 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@51 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@51 9 @prefix doap: <http://usefulinc.com/ns/doap#> .
Chris@51 10 @prefix cc: <http://web.resource.org/cc/> .
Chris@51 11 @prefix : <#> .
Chris@51 12
Chris@51 13
Chris@51 14 ## Properties of this document
Chris@51 15
Chris@51 16 <> a vamp:PluginDescription ;
Chris@51 17 foaf:maker <http://vamp-plugins.org/rdf/template-generator> ;
Chris@51 18 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/silvet> .
Chris@51 19
Chris@51 20
Chris@51 21 ## Maker of the whole plugin library
Chris@51 22
Chris@51 23 :library_maker
Chris@51 24 foaf:name "Queen Mary, University of London" ;
Chris@51 25 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
Chris@51 26 foaf:page <http://c4dm.eecs.qmul.ac.uk/>
Chris@51 27 .
Chris@51 28
Chris@51 29
Chris@51 30 ## Properties of the plugin library, and references to the plugins it contains
Chris@51 31
Chris@51 32 plugbase:library a vamp:PluginLibrary ;
Chris@51 33 vamp:identifier "silvet" ;
Chris@51 34 foaf:maker :library_maker ;
Chris@51 35 vamp:available_plugin plugbase:silvet ;
Chris@51 36 dc:title "Silvet Note Transcription" ; # Place library name here and uncomment
Chris@51 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).""" ;
Chris@51 38 foaf:page <http://code.soundsoftware.ac.uk/projects/silvet> ;
Chris@51 39 doap:download-page <http://code.soundsoftware.ac.uk/projects/silvet/files> ;
Chris@51 40 .
Chris@51 41
Chris@51 42
Chris@51 43 ## Properties of the Silvet Note Transcription plugin
Chris@51 44
Chris@51 45 plugbase:silvet a vamp:Plugin ;
Chris@51 46 dc:title "Silvet Note Transcription" ;
Chris@51 47 vamp:name "Silvet Note Transcription" ;
Chris@51 48 dc:description """Estimate the note onsets, pitches, and durations that make up a music recording.""" ;
Chris@51 49 foaf:maker :library_maker ;
Chris@51 50 dc:rights """Method by Emmanouil Benetos and Simon Dixon; plugin by Chris Cannam and Emmanouil Benetos. GPL licence.""" ;
Chris@51 51 # cc:license <Place plugin license URI here and uncomment> ;
Chris@51 52 vamp:identifier "silvet" ;
Chris@51 53 vamp:vamp_API_version vamp:api_version_2 ;
Chris@77 54 owl:versionInfo "3" ;
Chris@51 55 vamp:input_domain vamp:TimeDomain ;
Chris@51 56 vamp:parameter plugbase:silvet_param_mode ;
Chris@51 57 vamp:parameter plugbase:silvet_param_instrument ;
Chris@51 58 vamp:parameter plugbase:silvet_param_finetune ;
Chris@51 59
Chris@51 60 vamp:output plugbase:silvet_output_notes ;
Chris@77 61 vamp:output plugbase:silvet_output_onsets ;
Chris@77 62 vamp:output plugbase:silvet_output_onoffsets ;
Chris@51 63 vamp:output plugbase:silvet_output_timefreq ;
Chris@77 64 vamp:output plugbase:silvet_output_pitchactivation ;
Chris@77 65 vamp:output plugbase:silvet_output_chroma ;
Chris@77 66 vamp:output plugbase:silvet_output_templates ;
Chris@51 67 .
Chris@77 68
Chris@51 69 plugbase:silvet_param_mode a vamp:QuantizedParameter ;
Chris@51 70 vamp:identifier "mode" ;
Chris@51 71 dc:title "Processing mode" ;
Chris@51 72 dc:format "" ;
Chris@51 73 vamp:min_value 0 ;
Chris@51 74 vamp:max_value 1 ;
Chris@51 75 vamp:unit "" ;
Chris@51 76 vamp:quantize_step 1 ;
Chris@51 77 vamp:default_value 1 ;
Chris@77 78 vamp:value_names ( "Live (faster and lower latency)" "Intensive (higher quality)");
Chris@51 79 .
Chris@51 80 plugbase:silvet_param_instrument a vamp:QuantizedParameter ;
Chris@51 81 vamp:identifier "instrument" ;
Chris@51 82 dc:title "Instrument" ;
Chris@51 83 dc:format "" ;
Chris@51 84 vamp:min_value 0 ;
Chris@77 85 vamp:max_value 13 ;
Chris@51 86 vamp:unit "" ;
Chris@51 87 vamp:quantize_step 1 ;
Chris@51 88 vamp:default_value 0 ;
Chris@77 89 vamp:value_names ( "Multiple or unknown instruments" "Piano" "Guitar" "Violin" "Viola" "Cello" "Horn" "Flute" "Oboe" "Clarinet" "Tenor Sax" "Bassoon" "String quartet" "Wind ensemble");
Chris@51 90 .
Chris@51 91 plugbase:silvet_param_finetune a vamp:QuantizedParameter ;
Chris@51 92 vamp:identifier "finetune" ;
Chris@51 93 dc:title "Return fine pitch estimates" ;
Chris@51 94 dc:format "" ;
Chris@51 95 vamp:min_value 0 ;
Chris@51 96 vamp:max_value 1 ;
Chris@51 97 vamp:unit "" ;
Chris@51 98 vamp:quantize_step 1 ;
Chris@51 99 vamp:default_value 0 ;
Chris@51 100 vamp:value_names ();
Chris@51 101 .
Chris@51 102 plugbase:silvet_output_notes a vamp:SparseOutput ;
Chris@51 103 vamp:identifier "notes" ;
Chris@51 104 dc:title "Note transcription" ;
Chris@77 105 dc:description """Overall note transcription. Each note has time, duration, estimated fundamental frequency, and a synthetic MIDI velocity (1-127) estimated from the strength of the pitch in the mixture.""" ;
Chris@51 106 vamp:fixed_bin_count "true" ;
Chris@51 107 vamp:unit "Hz" ;
Chris@51 108 vamp:bin_count 2 ;
Chris@51 109 vamp:bin_names ( "Frequency" "Velocity");
Chris@51 110 vamp:sample_type vamp:VariableSampleRate ;
Chris@77 111 vamp:sample_rate 711 ;
Chris@51 112 vamp:computes_event_type af:Note ;
Chris@51 113 .
Chris@77 114 plugbase:silvet_output_onsets a vamp:SparseOutput ;
Chris@77 115 vamp:identifier "onsets" ;
Chris@77 116 dc:title "Note onsets" ;
Chris@77 117 dc:description """Note onsets, without durations. These can be calculated sooner than complete notes, because it isn't necessary to wait for a note to finish before returning its feature. Each event has time, estimated fundamental frequency in Hz, and a synthetic MIDI velocity (1-127) estimated from the strength of the pitch in the mixture.""" ;
Chris@77 118 vamp:fixed_bin_count "true" ;
Chris@77 119 vamp:unit "Hz" ;
Chris@77 120 vamp:bin_count 2 ;
Chris@77 121 vamp:bin_names ( "Frequency" "Velocity");
Chris@77 122 vamp:sample_type vamp:VariableSampleRate ;
Chris@77 123 vamp:sample_rate 711 ;
Chris@77 124 vamp:computes_event_type af:Onset ;
Chris@77 125 .
Chris@77 126 plugbase:silvet_output_onoffsets a vamp:SparseOutput ;
Chris@77 127 vamp:identifier "onoffsets" ;
Chris@77 128 dc:title "Note onsets and offsets" ;
Chris@77 129 dc:description """Note onsets and offsets as separate events. Each onset event has time, estimated fundamental frequency in Hz, and a synthetic MIDI velocity (1-127) estimated from the strength of the pitch in the mixture. Offsets are represented in the same way but with a velocity of 0.""" ;
Chris@77 130 vamp:fixed_bin_count "true" ;
Chris@77 131 vamp:unit "Hz" ;
Chris@77 132 vamp:bin_count 2 ;
Chris@77 133 vamp:bin_names ( "Frequency" "Velocity");
Chris@77 134 vamp:sample_type vamp:VariableSampleRate ;
Chris@77 135 vamp:sample_rate 711 ;
Chris@77 136 .
Chris@51 137 plugbase:silvet_output_timefreq a vamp:DenseOutput ;
Chris@51 138 vamp:identifier "timefreq" ;
Chris@51 139 dc:title "Time-frequency distribution" ;
Chris@77 140 dc:description """Filtered constant-Q time-frequency distribution as used as input to the expectation-maximisation algorithm.""" ;
Chris@51 141 vamp:fixed_bin_count "true" ;
Chris@51 142 vamp:unit "" ;
Chris@77 143 vamp:bin_count 545 ;
Chris@51 144 vamp:computes_signal_type af:Spectrogram ;
Chris@51 145 .
Chris@77 146 plugbase:silvet_output_pitchactivation a vamp:DenseOutput ;
Chris@77 147 vamp:identifier "pitchactivation" ;
Chris@77 148 dc:title "Pitch activation distribution" ;
Chris@77 149 dc:description """Pitch activation distribution resulting from expectation-maximisation algorithm, prior to note extraction.""" ;
Chris@77 150 vamp:fixed_bin_count "true" ;
Chris@77 151 vamp:unit "" ;
Chris@77 152 vamp:bin_count 88 ;
Chris@77 153 vamp:computes_signal_type af:Spectrogram ;
Chris@77 154 .
Chris@77 155 plugbase:silvet_output_chroma a vamp:DenseOutput ;
Chris@77 156 vamp:identifier "chroma" ;
Chris@77 157 dc:title "Pitch chroma distribution" ;
Chris@77 158 dc:description """Pitch chroma distribution formed by wrapping the un-thresholded pitch activation distribution into a single octave of semitone bins.""" ;
Chris@77 159 vamp:fixed_bin_count "true" ;
Chris@77 160 vamp:unit "" ;
Chris@77 161 vamp:bin_count 12 ;
Chris@77 162 vamp:computes_signal_type af:Chromagram ;
Chris@77 163 .
Chris@77 164 plugbase:silvet_output_templates a vamp:DenseOutput ;
Chris@77 165 vamp:identifier "templates" ;
Chris@77 166 dc:title "Templates" ;
Chris@77 167 dc:description """Constant-Q spectral templates for the selected instrument pack.""" ;
Chris@77 168 vamp:fixed_bin_count "true" ;
Chris@77 169 vamp:unit "" ;
Chris@77 170 vamp:bin_count 545 ;
Chris@77 171 .