comparison plugins/pyin.n3 @ 48:2aaca659b29d rdfquery

pYIN
author Chris Cannam
date Thu, 19 Jun 2014 16:33:35 +0100
parents 9fd8358b8101
children 70086ab5d85b
comparison
equal deleted inserted replaced
47:def5fc66701c 48:2aaca659b29d
4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/pyin#> . 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/pyin#> .
5 @prefix owl: <http://www.w3.org/2002/07/owl#> . 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
6 @prefix dc: <http://purl.org/dc/elements/1.1/> . 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
7 @prefix af: <http://purl.org/ontology/af/> . 7 @prefix af: <http://purl.org/ontology/af/> .
8 @prefix foaf: <http://xmlns.com/foaf/0.1/> . 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
9 @prefix doap: <http://usefulinc.com/ns/doap#> .
9 @prefix cc: <http://web.resource.org/cc/> . 10 @prefix cc: <http://web.resource.org/cc/> .
10 @prefix : <#> . 11 @prefix : <#> .
11 12
12 <> a vamp:PluginDescription ; 13 <> a vamp:PluginDescription ;
13 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ; 14 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
14 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/pyin> . 15 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/pyin> .
15 16
16 :pyin a vamp:PluginLibrary ; 17 :maker
18 foaf:name "Matthias Mauch" .
19
20 plugbase:library a vamp:PluginLibrary ;
17 vamp:identifier "pyin" ; 21 vamp:identifier "pyin" ;
22 dc:title "pYIN" ;
23 dc:description "pYIN is a modification of the well-loved YIN algorithm for fundamental frequency (F0) estimation in monophonic audio." ;
18 vamp:available_plugin plugbase:pyin ; 24 vamp:available_plugin plugbase:pyin ;
19 vamp:available_plugin plugbase:yin ; 25 vamp:available_plugin plugbase:yin ;
20 foaf:page <http://code.soundsoftware.ac.uk/projects/pyin> ; 26 foaf:page <http://code.soundsoftware.ac.uk/projects/pyin> ;
27 foaf:maker :maker ;
21 . 28 .
22 29
23 plugbase:pyin a vamp:Plugin ; 30 plugbase:pyin a vamp:Plugin ;
24 dc:title "pYin" ; 31 dc:title "pYin" ;
25 vamp:name "pYin" ; 32 vamp:name "pYin" ;
26 dc:description """Monophonic pitch and note tracking based on a probabilistic Yin extension.""" ; 33 dc:description """Monophonic pitch and note tracking based on a probabilistic Yin extension.""" ;
27 foaf:maker [ foaf:name "Matthias Mauch" ] ; # FIXME could give plugin author's URI here 34 foaf:maker :maker ;
28 dc:rights """GPL""" ; 35 dc:rights """GPL""" ;
29 # cc:license <Place plugin license URI here and uncomment> ; 36 # cc:license <Place plugin license URI here and uncomment> ;
30 vamp:identifier "pyin" ; 37 vamp:identifier "pyin" ;
31 vamp:vamp_API_version vamp:api_version_2 ; 38 vamp:vamp_API_version vamp:api_version_2 ;
32 owl:versionInfo "1" ; 39 owl:versionInfo "1" ;
148 . 155 .
149 plugbase:yin a vamp:Plugin ; 156 plugbase:yin a vamp:Plugin ;
150 dc:title "Yin" ; 157 dc:title "Yin" ;
151 vamp:name "Yin" ; 158 vamp:name "Yin" ;
152 dc:description """A vamp implementation of the Yin algorithm for monophonic frequency estimation.""" ; 159 dc:description """A vamp implementation of the Yin algorithm for monophonic frequency estimation.""" ;
153 foaf:maker [ foaf:name "Matthias Mauch" ] ; # FIXME could give plugin author's URI here 160 foaf:maker :maker ;
154 dc:rights """GPL""" ; 161 dc:rights """GPL""" ;
155 # cc:license <Place plugin license URI here and uncomment> ; 162 # cc:license <Place plugin license URI here and uncomment> ;
156 vamp:identifier "yin" ; 163 vamp:identifier "yin" ;
157 vamp:vamp_API_version vamp:api_version_2 ; 164 vamp:vamp_API_version vamp:api_version_2 ;
158 owl:versionInfo "1" ; 165 owl:versionInfo "1" ;