c@45: c@45: #include "PiperExport.h" c@45: c@45: #include "CepstralPitchTracker.h" c@45: c@45: using piper_vamp_js::PiperAdapter; c@45: using piper_vamp_js::PiperPluginLibrary; c@45: c@48: static std::string libname("cepstral-pitchtracker"); c@45: c@48: static PiperAdapter c@48: cepstralPitchTrackerAdapter( c@48: libname, c@48: { "Notes" }, c@48: { c@48: { "f0", c@48: { "http://purl.org/ontology/af/Pitch" } c@48: }, c@48: { "notes", c@48: { "http://purl.org/ontology/af/Note" } c@48: } c@48: } c@48: ); c@45: c@45: static PiperPluginLibrary library({ c@45: &cepstralPitchTrackerAdapter c@45: }); c@45: c@45: PIPER_EXPORT_LIBRARY(library); c@45: