c@43: c@43: #include "PiperExport.h" c@43: c@43: #include "TipicVampPlugin.h" c@43: c@43: using piper_vamp_js::PiperAdapter; c@43: using piper_vamp_js::PiperPluginLibrary; c@43: c@48: static std::string libname("tipic"); c@43: c@48: static PiperAdapter c@48: tipicAdapter( c@48: libname, c@48: { "Visualisation" }, c@48: { c@48: { "pitch", c@48: { "http://purl.org/ontology/af/Spectrogram" } c@48: }, c@48: { "pitch-smoothed", c@48: { "" } c@48: }, c@48: { "chroma", c@48: { "http://purl.org/ontology/af/Chromagram" } c@48: }, c@48: { "chroma-smoothed", c@48: { "" } c@48: }, c@48: { "clp", c@48: { "http://purl.org/ontology/af/Chromagram" } c@48: }, c@48: { "clp-smoothed", c@48: { "" } c@48: }, c@48: { "cens", c@48: { "" } c@48: }, c@48: { "crp", c@48: { "http://purl.org/ontology/af/Chromagram" } c@48: }, c@48: { "crp-smoothed", c@48: { "" } c@48: } c@48: } c@48: ); c@43: c@43: static PiperPluginLibrary library({ c@43: &tipicAdapter c@43: }); c@43: c@43: PIPER_EXPORT_LIBRARY(library); c@43: