Mercurial > hg > silvet
diff silvet.n3 @ 332:1272070a1011 livemode
Update RDF
author | Chris Cannam |
---|---|
date | Fri, 08 May 2015 17:17:08 +0100 |
parents | a3229b972463 |
children | 506f57984407 |
line wrap: on
line diff
--- a/silvet.n3 Wed Apr 29 18:58:00 2015 +0100 +++ b/silvet.n3 Fri May 08 17:17:08 2015 +0100 @@ -51,26 +51,30 @@ # cc:license <Place plugin license URI here and uncomment> ; vamp:identifier "silvet" ; vamp:vamp_API_version vamp:api_version_2 ; - owl:versionInfo "1" ; + owl:versionInfo "3" ; vamp:input_domain vamp:TimeDomain ; vamp:parameter plugbase:silvet_param_mode ; vamp:parameter plugbase:silvet_param_instrument ; vamp:parameter plugbase:silvet_param_finetune ; vamp:output plugbase:silvet_output_notes ; + vamp:output plugbase:silvet_output_onsets ; vamp:output plugbase:silvet_output_timefreq ; vamp:output plugbase:silvet_output_pitchactivation ; + vamp:output plugbase:silvet_output_chroma ; + vamp:output plugbase:silvet_output_templates ; . + plugbase:silvet_param_mode a vamp:QuantizedParameter ; vamp:identifier "mode" ; dc:title "Processing mode" ; dc:format "" ; vamp:min_value 0 ; - vamp:max_value 1 ; + vamp:max_value 2 ; vamp:unit "" ; vamp:quantize_step 1 ; vamp:default_value 1 ; - vamp:value_names ( "Draft (faster)" "Intensive (higher quality)"); + vamp:value_names ( "Draft (faster)" "Intensive (higher quality)" "Live (lower latency)"); . plugbase:silvet_param_instrument a vamp:QuantizedParameter ; vamp:identifier "instrument" ; @@ -97,21 +101,34 @@ plugbase:silvet_output_notes a vamp:SparseOutput ; vamp:identifier "notes" ; dc:title "Note transcription" ; - 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.""" ; + 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.""" ; vamp:fixed_bin_count "true" ; vamp:unit "Hz" ; vamp:bin_count 2 ; vamp:bin_names ( "Frequency" "Velocity"); vamp:sample_type vamp:VariableSampleRate ; + vamp:sample_rate 711 ; vamp:computes_event_type af:Note ; . +plugbase:silvet_output_onsets a vamp:SparseOutput ; + vamp:identifier "onsets" ; + dc:title "Note onsets" ; + 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.""" ; + vamp:fixed_bin_count "true" ; + vamp:unit "Hz" ; + vamp:bin_count 2 ; + vamp:bin_names ( "Frequency" "Velocity"); + vamp:sample_type vamp:VariableSampleRate ; + vamp:sample_rate 711 ; + vamp:computes_event_type af:Onset ; + . plugbase:silvet_output_timefreq a vamp:DenseOutput ; vamp:identifier "timefreq" ; dc:title "Time-frequency distribution" ; - dc:description """Filtered constant-Q time-frequency distribution as used as input to the expectation-maximisation algorithm""" ; + dc:description """Filtered constant-Q time-frequency distribution as used as input to the expectation-maximisation algorithm.""" ; vamp:fixed_bin_count "true" ; + vamp:unit "" ; vamp:bin_count 545 ; - vamp:unit "" ; vamp:computes_signal_type af:Spectrogram ; . plugbase:silvet_output_pitchactivation a vamp:DenseOutput ; @@ -123,3 +140,20 @@ vamp:bin_count 88 ; vamp:computes_signal_type af:Spectrogram ; . +plugbase:silvet_output_chroma a vamp:DenseOutput ; + vamp:identifier "chroma" ; + dc:title "Pitch chroma distribution" ; + dc:description """Pitch chroma distribution formed by wrapping the un-thresholded pitch activation distribution into a single octave of semitone bins.""" ; + vamp:fixed_bin_count "true" ; + vamp:unit "" ; + vamp:bin_count 12 ; + vamp:computes_signal_type af:Chromagram ; + . +plugbase:silvet_output_templates a vamp:DenseOutput ; + vamp:identifier "templates" ; + dc:title "Templates" ; + dc:description """Constant-Q spectral templates for the selected instrument pack.""" ; + vamp:fixed_bin_count "true" ; + vamp:unit "" ; + vamp:bin_count 545 ; + .