annotate beatroot-vamp.n3 @ 37:1f175ae200a6 tip

Update RDF
author Chris Cannam
date Wed, 25 Jun 2014 13:48:49 +0100
parents 296404fd93c7
children
rev   line source
Chris@29 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@29 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@29 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@29 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/beatroot-vamp#> .
Chris@29 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@29 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@29 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@29 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@29 9 @prefix cc: <http://web.resource.org/cc/> .
Chris@29 10 @prefix : <#> .
Chris@29 11
Chris@29 12 <> a vamp:PluginDescription ;
Chris@29 13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@29 14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/beatroot-vamp> .
Chris@29 15
Chris@37 16 :maker
Chris@37 17 foaf:name "Simon Dixon and Chris Cannam" ;
Chris@37 18 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
Chris@37 19 foaf:page <http://c4dm.eecs.qmul.ac.uk/> .
Chris@37 20
Chris@37 21 plugbase:library a vamp:PluginLibrary ;
Chris@29 22 vamp:identifier "beatroot-vamp" ;
Chris@29 23 vamp:available_plugin plugbase:beatroot ;
Chris@29 24 foaf:page <http://code.soundsoftware.ac.uk/projects/beatroot-vamp> ;
Chris@37 25 foaf:maker :maker ;
Chris@37 26 dc:title "BeatRoot" ;
Chris@37 27 dc:description "A plugin implementation of the BeatRoot beat tracking system" ;
Chris@29 28 .
Chris@29 29
Chris@29 30 plugbase:beatroot a vamp:Plugin ;
Chris@29 31 dc:title "BeatRoot Beat Tracker" ;
Chris@29 32 vamp:name "BeatRoot Beat Tracker" ;
Chris@29 33 dc:description """Identify beat locations in music""" ;
Chris@37 34 foaf:maker :maker ;
Chris@29 35 dc:rights """GPL""" ;
Chris@29 36 # cc:license <Place plugin license URI here and uncomment> ;
Chris@29 37 vamp:identifier "beatroot" ;
Chris@29 38 vamp:vamp_API_version vamp:api_version_2 ;
Chris@29 39 owl:versionInfo "1" ;
Chris@29 40 vamp:input_domain vamp:FrequencyDomain ;
Chris@29 41
Chris@29 42
Chris@29 43 vamp:parameter plugbase:beatroot_param_preMarginFactor ;
Chris@29 44 vamp:parameter plugbase:beatroot_param_postMarginFactor ;
Chris@29 45 vamp:parameter plugbase:beatroot_param_maxChange ;
Chris@29 46 vamp:parameter plugbase:beatroot_param_expiryTime ;
Chris@29 47
Chris@29 48 vamp:output plugbase:beatroot_output_beats ;
Chris@29 49 .
Chris@29 50 plugbase:beatroot_param_preMarginFactor a vamp:Parameter ;
Chris@29 51 vamp:identifier "preMarginFactor" ;
Chris@29 52 dc:title "Pre-Margin Factor" ;
Chris@29 53 dc:format "" ;
Chris@29 54 vamp:min_value 0 ;
Chris@29 55 vamp:max_value 1 ;
Chris@29 56 vamp:unit "" ;
Chris@29 57 vamp:default_value 0.15 ;
Chris@29 58 vamp:value_names ();
Chris@29 59 .
Chris@29 60 plugbase:beatroot_param_postMarginFactor a vamp:Parameter ;
Chris@29 61 vamp:identifier "postMarginFactor" ;
Chris@29 62 dc:title "Post-Margin Factor" ;
Chris@29 63 dc:format "" ;
Chris@29 64 vamp:min_value 0 ;
Chris@29 65 vamp:max_value 1 ;
Chris@29 66 vamp:unit "" ;
Chris@29 67 vamp:default_value 0.3 ;
Chris@29 68 vamp:value_names ();
Chris@29 69 .
Chris@29 70 plugbase:beatroot_param_maxChange a vamp:Parameter ;
Chris@29 71 vamp:identifier "maxChange" ;
Chris@29 72 dc:title "Maximum Change" ;
Chris@29 73 dc:format "" ;
Chris@29 74 vamp:min_value 0 ;
Chris@29 75 vamp:max_value 1 ;
Chris@29 76 vamp:unit "" ;
Chris@29 77 vamp:default_value 0.2 ;
Chris@29 78 vamp:value_names ();
Chris@29 79 .
Chris@29 80 plugbase:beatroot_param_expiryTime a vamp:Parameter ;
Chris@29 81 vamp:identifier "expiryTime" ;
Chris@29 82 dc:title "Expiry Time" ;
Chris@29 83 dc:format "" ;
Chris@29 84 vamp:min_value 2 ;
Chris@29 85 vamp:max_value 120 ;
Chris@29 86 vamp:unit "" ;
Chris@29 87 vamp:default_value 10 ;
Chris@29 88 vamp:value_names ();
Chris@29 89 .
Chris@29 90 plugbase:beatroot_output_beats a vamp:SparseOutput ;
Chris@29 91 vamp:identifier "beats" ;
Chris@29 92 dc:title "Beats" ;
Chris@29 93 dc:description """Estimated beat locations""" ;
Chris@29 94 vamp:fixed_bin_count "true" ;
Chris@29 95 vamp:unit "" ;
Chris@29 96 vamp:bin_count 0 ;
Chris@29 97 vamp:sample_type vamp:VariableSampleRate ;
Chris@29 98 vamp:sample_rate 44100 ;
Chris@29 99 vamp:computes_event_type af:Beat ;
Chris@29 100 .
Chris@29 101