annotate cpack/dml/rdf/silvet.n3 @ 0:718306e29690 tip

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