changeset 48:2aaca659b29d rdfquery

pYIN
author Chris Cannam
date Thu, 19 Jun 2014 16:33:35 +0100
parents def5fc66701c
children d84bd6676a43
files plugins/availability.n3 plugins/pyin.n3
diffstat 2 files changed, 25 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/availability.n3	Thu Jun 19 16:30:12 2014 +0100
+++ b/plugins/availability.n3	Thu Jun 19 16:33:35 2014 +0100
@@ -8,7 +8,7 @@
 @prefix qm: <http://vamp-plugins.org/rdf/plugins/qm-vamp-plugins#> .
 
 qm:library
-	vamp:has_source "true" ;
+	vamp:has_source true ;
 	vamp:has_binary "osx" ;
 	vamp:has_binary "linux32" ;
 	vamp:has_binary "linux64" ;
@@ -18,8 +18,21 @@
 
 beatroot:library
 	doap:download-page <http://code.soundsoftware.ac.uk/projects/beatroot-vamp/files> ;
-	vamp:has_source "true" ;
+	vamp:has_source true ;
 	vamp:has_binary "osx" ;
 	vamp:has_binary "linux32" ;
 	vamp:has_binary "linux64" ;
 	vamp:has_binary "win32" .
+
+@prefix pyin: <http://vamp-plugins.org/rdf/plugins/pyin#> .
+
+pyin:library
+	doap:download-page <http://code.soundsoftware.ac.uk/projects/pyin/files> ;
+	vamp:has_source true ;
+	vamp:has_binary "linux32" ;
+	vamp:has_binary "linux64" ;
+	vamp:has_binary "win32" ;
+	vamp:has_binary "osx" .
+
+
+	
--- a/plugins/pyin.n3	Thu Jun 19 16:30:12 2014 +0100
+++ b/plugins/pyin.n3	Thu Jun 19 16:33:35 2014 +0100
@@ -6,6 +6,7 @@
 @prefix dc:       <http://purl.org/dc/elements/1.1/> .
 @prefix af:       <http://purl.org/ontology/af/> .
 @prefix foaf:     <http://xmlns.com/foaf/0.1/> .
+@prefix doap: 	  <http://usefulinc.com/ns/doap#> .
 @prefix cc:       <http://web.resource.org/cc/> .
 @prefix :         <#> .
 
@@ -13,18 +14,24 @@
     foaf:maker          <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
     foaf:primaryTopic   <http://vamp-plugins.org/rdf/plugins/pyin> .
 
-:pyin a  vamp:PluginLibrary ;
+:maker
+    foaf:name "Matthias Mauch" .
+
+plugbase:library a  vamp:PluginLibrary ;
     vamp:identifier "pyin"  ; 
+    dc:title "pYIN" ;
+    dc:description "pYIN is a modification of the well-loved YIN algorithm for fundamental frequency (F0) estimation in monophonic audio." ;
     vamp:available_plugin plugbase:pyin ; 
     vamp:available_plugin plugbase:yin ; 
     foaf:page <http://code.soundsoftware.ac.uk/projects/pyin> ;
+    foaf:maker :maker ;
     .
 
 plugbase:pyin a   vamp:Plugin ;
     dc:title              "pYin" ;
     vamp:name             "pYin" ;
     dc:description        """Monophonic pitch and note tracking based on a probabilistic Yin extension.""" ;
-    foaf:maker            [ foaf:name "Matthias Mauch" ] ; # FIXME could give plugin author's URI here
+    foaf:maker            :maker ;
     dc:rights             """GPL""" ;
 #   cc:license            <Place plugin license URI here and uncomment> ; 
     vamp:identifier       "pyin" ;
@@ -150,7 +157,7 @@
     dc:title              "Yin" ;
     vamp:name             "Yin" ;
     dc:description        """A vamp implementation of the Yin algorithm for monophonic frequency estimation.""" ;
-    foaf:maker            [ foaf:name "Matthias Mauch" ] ; # FIXME could give plugin author's URI here
+    foaf:maker            :maker ;
     dc:rights             """GPL""" ;
 #   cc:license            <Place plugin license URI here and uncomment> ; 
     vamp:identifier       "yin" ;