annotate plugins/beatroot-vamp.n3 @ 35:2b10aed4659e rdfquery

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