annotate multiple_f0_estimation/silvet/silvet.n3 @ 61:3f0dbafd8bb4

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