annotate multiple_f0_estimation/silvet/silvet.n3 @ 86:01f69f1d5d3c tip

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