annotate plugins/silvet.n3 @ 69:e0387ef3437a

Add some more featured plugins
author Chris Cannam
date Mon, 22 Sep 2014 16:59:05 +0100
parents a0641c4829f4
children 7ed841b636ea
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@51 54 owl:versionInfo "1" ;
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@51 61 vamp:output plugbase:silvet_output_timefreq ;
Chris@51 62 .
Chris@51 63 plugbase:silvet_param_mode a vamp:QuantizedParameter ;
Chris@51 64 vamp:identifier "mode" ;
Chris@51 65 dc:title "Processing mode" ;
Chris@51 66 dc:format "" ;
Chris@51 67 vamp:min_value 0 ;
Chris@51 68 vamp:max_value 1 ;
Chris@51 69 vamp:unit "" ;
Chris@51 70 vamp:quantize_step 1 ;
Chris@51 71 vamp:default_value 1 ;
Chris@51 72 vamp:value_names ( "Draft (faster)" "Intensive (higher quality)");
Chris@51 73 .
Chris@51 74 plugbase:silvet_param_instrument a vamp:QuantizedParameter ;
Chris@51 75 vamp:identifier "instrument" ;
Chris@51 76 dc:title "Instrument" ;
Chris@51 77 dc:format "" ;
Chris@51 78 vamp:min_value 0 ;
Chris@51 79 vamp:max_value 12 ;
Chris@51 80 vamp:unit "" ;
Chris@51 81 vamp:quantize_step 1 ;
Chris@51 82 vamp:default_value 0 ;
Chris@51 83 vamp:value_names ( "Multiple or unknown instruments" "Piano" "Guitar" "Violin" "Cello" "Horn" "Flute" "Oboe" "Clarinet" "Tenor Sax" "Bassoon" "String ensemble" "Wind ensemble");
Chris@51 84 .
Chris@51 85 plugbase:silvet_param_finetune a vamp:QuantizedParameter ;
Chris@51 86 vamp:identifier "finetune" ;
Chris@51 87 dc:title "Return fine pitch estimates" ;
Chris@51 88 dc:format "" ;
Chris@51 89 vamp:min_value 0 ;
Chris@51 90 vamp:max_value 1 ;
Chris@51 91 vamp:unit "" ;
Chris@51 92 vamp:quantize_step 1 ;
Chris@51 93 vamp:default_value 0 ;
Chris@51 94 vamp:value_names ();
Chris@51 95 .
Chris@51 96 plugbase:silvet_output_notes a vamp:SparseOutput ;
Chris@51 97 vamp:identifier "notes" ;
Chris@51 98 dc:title "Note transcription" ;
Chris@51 99 dc:description """Overall note transcription across selected instruments""" ;
Chris@51 100 vamp:fixed_bin_count "true" ;
Chris@51 101 vamp:unit "Hz" ;
Chris@51 102 vamp:bin_count 2 ;
Chris@51 103 vamp:bin_names ( "Frequency" "Velocity");
Chris@51 104 vamp:sample_type vamp:VariableSampleRate ;
Chris@51 105 vamp:computes_event_type af:Note ;
Chris@51 106 .
Chris@51 107 plugbase:silvet_output_timefreq a vamp:DenseOutput ;
Chris@51 108 vamp:identifier "timefreq" ;
Chris@51 109 dc:title "Time-frequency distribution" ;
Chris@51 110 dc:description """Filtered constant-Q time-frequency distribution used as input to the expectation-maximisation algorithm""" ;
Chris@51 111 vamp:fixed_bin_count "true" ;
Chris@51 112 vamp:unit "" ;
Chris@51 113 vamp:computes_signal_type af:Spectrogram ;
Chris@51 114 .
Chris@51 115