annotate plugins/match-vamp-plugin.n3 @ 50:70086ab5d85b rdfquery

More plugin data generally
author Chris Cannam
date Fri, 20 Jun 2014 10:56:08 +0100
parents d84bd6676a43
children 7ed841b636ea
rev   line source
Chris@8 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@8 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@8 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@8 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/match-vamp-plugin#> .
Chris@8 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@8 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@8 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@8 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@8 9 @prefix cc: <http://web.resource.org/cc/> .
Chris@11 10 @prefix : <#> .
Chris@8 11
Chris@8 12 <> a vamp:PluginDescription ;
Chris@8 13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@8 14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/match-vamp-plugin> .
Chris@8 15
Chris@49 16 :maker
Chris@50 17 foaf:name "Simon Dixon and Chris Cannam" ;
Chris@49 18 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
Chris@49 19 foaf:page <http://c4dm.eecs.qmul.ac.uk/> .
Chris@49 20
Chris@49 21 plugbase:library a vamp:PluginLibrary ;
Chris@8 22 vamp:identifier "match-vamp-plugin" ;
Chris@49 23 dc:title "MATCH Vamp Plugin" ;
Chris@49 24 dc:description """Vamp implementation of the MATCH audio alignment algorithm from Simon Dixon. Sonic Visualiser can use this for automatic time alignment among multiple audio files.""" ;
Chris@8 25 vamp:available_plugin plugbase:match ;
Chris@49 26 foaf:maker :maker ;
Chris@49 27 foaf:page <http://code.soundsoftware.ac.uk/projects/match-vamp> ;
Chris@8 28 .
Chris@8 29
Chris@8 30 plugbase:match a vamp:Plugin ;
Chris@8 31 dc:title "Match Performance Aligner" ;
Chris@8 32 vamp:name "Match Performance Aligner" ;
Chris@8 33 dc:description """Calculate alignment between two performances in separate channel inputs""" ;
Chris@49 34 foaf:maker :maker ;
Chris@8 35 dc:rights """GPL""" ;
Chris@8 36 # cc:license <Place plugin license URI here and uncomment> ;
Chris@8 37 vamp:identifier "match" ;
Chris@8 38 vamp:vamp_API_version vamp:api_version_2 ;
Chris@8 39 owl:versionInfo "1" ;
Chris@8 40 vamp:input_domain vamp:FrequencyDomain ;
Chris@8 41
Chris@8 42
Chris@8 43 vamp:parameter plugbase:match_param_serialise ;
Chris@8 44
Chris@8 45 vamp:output plugbase:match_output_path ;
Chris@8 46 vamp:output plugbase:match_output_a_b ;
Chris@8 47 vamp:output plugbase:match_output_b_a ;
Chris@8 48 vamp:output plugbase:match_output_a_b_divergence ;
Chris@8 49 vamp:output plugbase:match_output_a_b_temporatio ;
Chris@8 50 .
Chris@8 51 plugbase:match_param_serialise a vamp:QuantizedParameter ;
Chris@8 52 vamp:identifier "serialise" ;
Chris@8 53 dc:title "Serialise Plugin Invocations" ;
Chris@8 54 dc:format "" ;
Chris@8 55 vamp:min_value 0 ;
Chris@8 56 vamp:max_value 1 ;
Chris@8 57 vamp:unit "" ;
Chris@8 58 vamp:quantize_step 1 ;
Chris@8 59 vamp:default_value 0 ;
Chris@8 60 vamp:value_names ();
Chris@8 61 .
Chris@8 62 plugbase:match_output_path a vamp:SparseOutput ;
Chris@8 63 vamp:identifier "path" ;
Chris@8 64 dc:title "Path" ;
Chris@8 65 dc:description "Alignment path" ;
Chris@8 66 vamp:fixed_bin_count "true" ;
Chris@8 67 vamp:unit "" ;
Chris@8 68 a vamp:QuantizedOutput ;
Chris@8 69 vamp:quantize_step 1 ;
Chris@8 70 vamp:bin_count 1 ;
Chris@8 71 vamp:sample_type vamp:VariableSampleRate ;
Chris@8 72 vamp:sample_rate 50 ;
Chris@8 73 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@8 74 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@8 75 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@8 76 .
Chris@8 77 plugbase:match_output_a_b a vamp:SparseOutput ;
Chris@8 78 vamp:identifier "a_b" ;
Chris@8 79 dc:title "A-B Timeline" ;
Chris@8 80 dc:description "Timing in performance B corresponding to moments in performance A" ;
Chris@8 81 vamp:fixed_bin_count "true" ;
Chris@8 82 vamp:unit "sec" ;
Chris@8 83 vamp:bin_count 1 ;
Chris@8 84 vamp:sample_type vamp:VariableSampleRate ;
Chris@8 85 vamp:sample_rate 50 ;
Chris@8 86 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@8 87 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@8 88 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@8 89 .
Chris@8 90 plugbase:match_output_b_a a vamp:SparseOutput ;
Chris@8 91 vamp:identifier "b_a" ;
Chris@8 92 dc:title "B-A Timeline" ;
Chris@8 93 dc:description "Timing in performance A corresponding to moments in performance B" ;
Chris@8 94 vamp:fixed_bin_count "true" ;
Chris@8 95 vamp:unit "sec" ;
Chris@8 96 vamp:bin_count 1 ;
Chris@8 97 vamp:sample_type vamp:VariableSampleRate ;
Chris@8 98 vamp:sample_rate 50 ;
Chris@8 99 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@8 100 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@8 101 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@8 102 .
Chris@8 103 plugbase:match_output_a_b_divergence a vamp:SparseOutput ;
Chris@8 104 vamp:identifier "a_b_divergence" ;
Chris@8 105 dc:title "A-B Divergence" ;
Chris@8 106 dc:description "Difference between timings in performances A and B" ;
Chris@8 107 vamp:fixed_bin_count "true" ;
Chris@8 108 vamp:unit "sec" ;
Chris@8 109 vamp:bin_count 1 ;
Chris@8 110 vamp:sample_type vamp:VariableSampleRate ;
Chris@8 111 vamp:sample_rate 50 ;
Chris@8 112 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@8 113 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@8 114 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@8 115 .
Chris@8 116 plugbase:match_output_a_b_temporatio a vamp:SparseOutput ;
Chris@8 117 vamp:identifier "a_b_temporatio" ;
Chris@8 118 dc:title "A-B Tempo Ratio" ;
Chris@8 119 dc:description "Ratio of tempi between performances A and B" ;
Chris@8 120 vamp:fixed_bin_count "true" ;
Chris@8 121 vamp:unit "" ;
Chris@8 122 vamp:bin_count 1 ;
Chris@8 123 vamp:sample_type vamp:VariableSampleRate ;
Chris@8 124 vamp:sample_rate 50 ;
Chris@8 125 # vamp:computes_event_type <Place event type URI here and uncomment> ;
Chris@8 126 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@8 127 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@8 128 .
Chris@8 129