c@118
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@118
|
2 /*
|
c@118
|
3 Piper C++
|
c@118
|
4
|
c@118
|
5 An API for audio analysis and feature extraction plugins.
|
c@118
|
6
|
c@118
|
7 Centre for Digital Music, Queen Mary, University of London.
|
c@118
|
8 Copyright 2006-2016 Chris Cannam and QMUL.
|
c@118
|
9
|
c@118
|
10 Permission is hereby granted, free of charge, to any person
|
c@118
|
11 obtaining a copy of this software and associated documentation
|
c@118
|
12 files (the "Software"), to deal in the Software without
|
c@118
|
13 restriction, including without limitation the rights to use, copy,
|
c@118
|
14 modify, merge, publish, distribute, sublicense, and/or sell copies
|
c@118
|
15 of the Software, and to permit persons to whom the Software is
|
c@118
|
16 furnished to do so, subject to the following conditions:
|
c@118
|
17
|
c@118
|
18 The above copyright notice and this permission notice shall be
|
c@118
|
19 included in all copies or substantial portions of the Software.
|
c@118
|
20
|
c@118
|
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
c@118
|
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
c@118
|
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
c@118
|
24 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
c@118
|
25 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
c@118
|
26 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
c@118
|
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
c@118
|
28
|
c@118
|
29 Except as contained in this notice, the names of the Centre for
|
c@118
|
30 Digital Music; Queen Mary, University of London; and Chris Cannam
|
c@118
|
31 shall not be used in advertising or otherwise to promote the sale,
|
c@118
|
32 use or other dealings in this Software without prior written
|
c@118
|
33 authorization.
|
c@118
|
34 */
|
c@78
|
35
|
c@94
|
36 #include "ProcessQtTransport.h"
|
c@96
|
37 #include "CapnpRRClient.h"
|
c@98
|
38 #include "AutoPlugin.h"
|
c@83
|
39
|
c@83
|
40 #include <stdexcept>
|
c@83
|
41
|
c@83
|
42 using std::cerr;
|
c@83
|
43 using std::endl;
|
c@83
|
44
|
c@84
|
45 int main(int, char **)
|
c@84
|
46 {
|
c@131
|
47 piper_vamp::client::ProcessQtTransport transport("../bin/piper-vamp-simple-server",
|
c@119
|
48 "capnp");
|
c@97
|
49 piper_vamp::client::CapnpRRClient client(&transport);
|
c@94
|
50
|
c@131
|
51 piper_vamp::ListResponse lr = client.listPluginData({});
|
c@95
|
52 cerr << "Plugins available:" << endl;
|
c@95
|
53 int i = 1;
|
c@95
|
54 for (const auto &p: lr.available) {
|
c@95
|
55 cerr << i++ << ". [" << p.pluginKey << "] " << p.basic.name << endl;
|
c@95
|
56 }
|
c@95
|
57
|
c@97
|
58 piper_vamp::LoadRequest req;
|
c@95
|
59 req.pluginKey = "vamp-example-plugins:zerocrossing";
|
c@95
|
60 req.inputSampleRate = 16;
|
c@97
|
61 piper_vamp::LoadResponse resp = client.loadPlugin(req);
|
c@95
|
62 Vamp::Plugin *plugin = resp.plugin;
|
c@95
|
63
|
c@84
|
64 if (!plugin->initialise(1, 4, 4)) {
|
c@84
|
65 cerr << "initialisation failed" << endl;
|
c@84
|
66 } else {
|
c@84
|
67 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
|
c@84
|
68 float *bd = buf.data();
|
c@84
|
69 Vamp::Plugin::FeatureSet features = plugin->process
|
c@84
|
70 (&bd, Vamp::RealTime::zeroTime);
|
c@84
|
71 cerr << "results for output 0:" << endl;
|
c@84
|
72 auto fl(features[0]);
|
c@84
|
73 for (const auto &f: fl) {
|
c@84
|
74 cerr << f.values[0] << endl;
|
c@84
|
75 }
|
c@84
|
76 }
|
c@88
|
77
|
c@87
|
78 (void)plugin->getRemainingFeatures();
|
c@89
|
79
|
c@89
|
80 cerr << "calling reset..." << endl;
|
c@89
|
81 plugin->reset();
|
c@89
|
82 cerr << "...round 2!" << endl;
|
c@89
|
83
|
c@89
|
84 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
|
c@89
|
85 float *bd = buf.data();
|
c@89
|
86 Vamp::Plugin::FeatureSet features = plugin->process
|
c@118
|
87 (&bd, Vamp::RealTime::zeroTime);
|
c@89
|
88 cerr << "results for output 0:" << endl;
|
c@89
|
89 auto fl(features[0]);
|
c@89
|
90 for (const auto &f: fl) {
|
c@118
|
91 cerr << f.values[0] << endl;
|
c@89
|
92 }
|
c@89
|
93
|
c@89
|
94 (void)plugin->getRemainingFeatures();
|
c@89
|
95
|
c@88
|
96 delete plugin;
|
c@98
|
97
|
c@98
|
98 // Let's try a crazy AutoPlugin
|
c@98
|
99
|
c@131
|
100 piper_vamp::client::AutoPlugin ap("../bin/piper-vamp-simple-server",
|
c@118
|
101 "vamp-example-plugins:zerocrossing", 16, 0);
|
c@98
|
102 if (!ap.isOK()) {
|
c@118
|
103 cerr << "AutoPlugin creation failed" << endl;
|
c@98
|
104 } else {
|
c@118
|
105 if (!ap.initialise(1, 4, 4)) {
|
c@118
|
106 cerr << "initialisation failed" << endl;
|
c@118
|
107 } else {
|
c@118
|
108 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
|
c@118
|
109 float *bd = buf.data();
|
c@118
|
110 Vamp::Plugin::FeatureSet features = ap.process
|
c@118
|
111 (&bd, Vamp::RealTime::zeroTime);
|
c@118
|
112 cerr << "results for output 0:" << endl;
|
c@118
|
113 auto fl(features[0]);
|
c@118
|
114 for (const auto &f: fl) {
|
c@118
|
115 cerr << f.values[0] << endl;
|
c@118
|
116 }
|
c@118
|
117 }
|
c@98
|
118 }
|
c@84
|
119 }
|
c@84
|
120
|