annotate plugins/beatroot-vamp.n3 @ 100:c0afe853924a tip

Use common name
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 29 Jun 2021 12:11:48 +0100
parents f8fab3aad0c1
children
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@39 16 :maker
Chris@50 17 foaf:name "Simon Dixon and Chris Cannam" ;
Chris@39 18 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
Chris@39 19 foaf:page <http://c4dm.eecs.qmul.ac.uk/> .
Chris@39 20
Chris@39 21 plugbase:library a vamp:PluginLibrary ;
Chris@26 22 vamp:identifier "beatroot-vamp" ;
Chris@26 23 vamp:available_plugin plugbase:beatroot ;
Chris@26 24 foaf:page <http://code.soundsoftware.ac.uk/projects/beatroot-vamp> ;
Chris@39 25 foaf:maker :maker ;
Chris@39 26 dc:title "BeatRoot" ;
Chris@39 27 dc:description "A plugin implementation of the BeatRoot beat tracking system" ;
Chris@26 28 .
Chris@26 29
Chris@26 30 plugbase:beatroot a vamp:Plugin ;
Chris@26 31 dc:title "BeatRoot Beat Tracker" ;
Chris@26 32 vamp:name "BeatRoot Beat Tracker" ;
Chris@26 33 dc:description """Identify beat locations in music""" ;
Chris@52 34 foaf:maker :maker ;
Chris@26 35 dc:rights """GPL""" ;
Chris@26 36 # cc:license <Place plugin license URI here and uncomment> ;
Chris@26 37 vamp:identifier "beatroot" ;
Chris@26 38 vamp:vamp_API_version vamp:api_version_2 ;
Chris@26 39 owl:versionInfo "1" ;
Chris@26 40 vamp:input_domain vamp:FrequencyDomain ;
Chris@26 41
Chris@26 42
Chris@26 43 vamp:parameter plugbase:beatroot_param_preMarginFactor ;
Chris@26 44 vamp:parameter plugbase:beatroot_param_postMarginFactor ;
Chris@26 45 vamp:parameter plugbase:beatroot_param_maxChange ;
Chris@26 46 vamp:parameter plugbase:beatroot_param_expiryTime ;
Chris@26 47
Chris@26 48 vamp:output plugbase:beatroot_output_beats ;
Chris@26 49 .
Chris@26 50 plugbase:beatroot_param_preMarginFactor a vamp:Parameter ;
Chris@26 51 vamp:identifier "preMarginFactor" ;
Chris@26 52 dc:title "Pre-Margin Factor" ;
Chris@26 53 dc:format "" ;
Chris@26 54 vamp:min_value 0 ;
Chris@26 55 vamp:max_value 1 ;
Chris@26 56 vamp:unit "" ;
Chris@26 57 vamp:default_value 0.15 ;
Chris@26 58 vamp:value_names ();
Chris@26 59 .
Chris@26 60 plugbase:beatroot_param_postMarginFactor a vamp:Parameter ;
Chris@26 61 vamp:identifier "postMarginFactor" ;
Chris@26 62 dc:title "Post-Margin Factor" ;
Chris@26 63 dc:format "" ;
Chris@26 64 vamp:min_value 0 ;
Chris@26 65 vamp:max_value 1 ;
Chris@26 66 vamp:unit "" ;
Chris@26 67 vamp:default_value 0.3 ;
Chris@26 68 vamp:value_names ();
Chris@26 69 .
Chris@26 70 plugbase:beatroot_param_maxChange a vamp:Parameter ;
Chris@26 71 vamp:identifier "maxChange" ;
Chris@26 72 dc:title "Maximum Change" ;
Chris@26 73 dc:format "" ;
Chris@26 74 vamp:min_value 0 ;
Chris@26 75 vamp:max_value 1 ;
Chris@26 76 vamp:unit "" ;
Chris@26 77 vamp:default_value 0.2 ;
Chris@26 78 vamp:value_names ();
Chris@26 79 .
Chris@26 80 plugbase:beatroot_param_expiryTime a vamp:Parameter ;
Chris@26 81 vamp:identifier "expiryTime" ;
Chris@26 82 dc:title "Expiry Time" ;
Chris@26 83 dc:format "" ;
Chris@26 84 vamp:min_value 2 ;
Chris@26 85 vamp:max_value 120 ;
Chris@26 86 vamp:unit "" ;
Chris@26 87 vamp:default_value 10 ;
Chris@26 88 vamp:value_names ();
Chris@26 89 .
Chris@26 90 plugbase:beatroot_output_beats a vamp:SparseOutput ;
Chris@26 91 vamp:identifier "beats" ;
Chris@26 92 dc:title "Beats" ;
Chris@26 93 dc:description """Estimated beat locations""" ;
Chris@26 94 vamp:fixed_bin_count "true" ;
Chris@26 95 vamp:unit "" ;
Chris@26 96 vamp:bin_count 0 ;
Chris@26 97 vamp:sample_type vamp:VariableSampleRate ;
Chris@26 98 vamp:sample_rate 44100 ;
Chris@26 99 vamp:computes_event_type af:Beat ;
Chris@26 100 .
Chris@26 101