annotate plugins/cepstral-pitchtracker.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 bb90681dfd1b
children
rev   line source
Chris@50 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
Chris@50 2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Chris@50 3 @prefix vamp: <http://purl.org/ontology/vamp/> .
Chris@50 4 @prefix plugbase: <http://vamp-plugins.org/rdf/plugins/cepstral-pitchtracker#> .
Chris@50 5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
Chris@50 6 @prefix dc: <http://purl.org/dc/elements/1.1/> .
Chris@50 7 @prefix af: <http://purl.org/ontology/af/> .
Chris@50 8 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
Chris@50 9 @prefix doap: <http://usefulinc.com/ns/doap#> .
Chris@50 10 @prefix cc: <http://web.resource.org/cc/> .
Chris@50 11 @prefix : <#> .
Chris@50 12
Chris@50 13 <> a vamp:PluginDescription ;
Chris@50 14 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
Chris@50 15 foaf:primaryTopic <http://vamp-plugins.org/rdf/plugins/cepstral-pitchtracker> .
Chris@50 16
Chris@50 17 :library_maker
Chris@50 18 foaf:name "Chris Cannam" ;
Chris@50 19 foaf:logo <http://vamp-plugins.org/rdf/plugins/makers/qm.png> ;
Chris@50 20 foaf:page <http://c4dm.eecs.qmul.ac.uk/> .
Chris@50 21
Chris@50 22 plugbase:library a vamp:PluginLibrary ;
Chris@50 23 dc:title "Cepstral Pitch Tracker" ;
Chris@50 24 dc:description "A straightforward cepstral pitch- and note-tracker Vamp plugin, probably most suited to tracking singing pitch." ;
Chris@50 25 vamp:identifier "cepstral-pitchtracker" ;
Chris@50 26 foaf:maker :library_maker ;
Chris@50 27 vamp:available_plugin plugbase:cepstral-pitchtracker ;
Chris@50 28 foaf:page <http://code.soundsoftware.ac.uk/projects/cepstral-pitchtracker> ;
Chris@50 29 doap:download-page <http://code.soundsoftware.ac.uk/projects/cepstral-pitchtracker/files> ;
Chris@50 30 vamp:has_source true ;
Chris@50 31 .
Chris@50 32
Chris@50 33 plugbase:cepstral-pitchtracker a vamp:Plugin ;
Chris@50 34 dc:title "Cepstral Pitch Tracker" ;
Chris@50 35 vamp:name "Cepstral Pitch Tracker" ;
Chris@50 36 dc:description """Estimate f0 of monophonic material using a cepstrum method.""" ;
Chris@50 37 foaf:maker :library_maker ;
Chris@50 38 dc:rights """Freely redistributable (BSD license)""" ;
Chris@50 39 # cc:license <Place plugin license URI here and uncomment> ;
Chris@50 40 vamp:identifier "cepstral-pitchtracker" ;
Chris@50 41 vamp:vamp_API_version vamp:api_version_2 ;
Chris@50 42 owl:versionInfo "1" ;
Chris@50 43 vamp:input_domain vamp:FrequencyDomain ;
Chris@50 44
Chris@50 45 vamp:output plugbase:cepstral-pitchtracker_output_f0 ;
Chris@50 46 vamp:output plugbase:cepstral-pitchtracker_output_notes ;
Chris@50 47 .
Chris@50 48 plugbase:cepstral-pitchtracker_output_f0 a vamp:DenseOutput ;
Chris@50 49 vamp:identifier "f0" ;
Chris@50 50 dc:title "Estimated f0" ;
Chris@50 51 dc:description """Estimated fundamental frequency""" ;
Chris@50 52 vamp:fixed_bin_count "true" ;
Chris@50 53 vamp:unit "Hz" ;
Chris@50 54 a vamp:KnownExtentsOutput ;
Chris@50 55 vamp:min_value 50 ;
Chris@50 56 vamp:max_value 900 ;
Chris@50 57 vamp:bin_count 1 ;
Chris@81 58 vamp:computes_event_type af:Pitch ;
Chris@50 59 # vamp:computes_feature <Place feature attribute URI here and uncomment> ;
Chris@50 60 # vamp:computes_signal_type <Place signal type URI here and uncomment> ;
Chris@50 61 .
Chris@81 62 plugbase:cepstral-pitchtracker_output_notes a vamp:SparseOutput ;
Chris@50 63 vamp:identifier "notes" ;
Chris@50 64 dc:title "Notes" ;
Chris@50 65 dc:description """Derived fixed-pitch note frequencies""" ;
Chris@50 66 vamp:fixed_bin_count "true" ;
Chris@50 67 vamp:unit "Hz" ;
Chris@50 68 a vamp:KnownExtentsOutput ;
Chris@50 69 vamp:min_value 50 ;
Chris@50 70 vamp:max_value 900 ;
Chris@50 71 vamp:bin_count 1 ;
Chris@81 72 vamp:computes_event_type af:Note ;
Chris@50 73 .
Chris@50 74