annotate silvet.n3 @ 305:04a3c152e590

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