Chris@0
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@0
|
2
|
Chris@0
|
3 /*
|
Chris@0
|
4 Sonic Annotator
|
Chris@0
|
5 A utility for batch feature extraction from audio files.
|
Chris@0
|
6 Mark Levy, Chris Sutton and Chris Cannam, Queen Mary, University of London.
|
Chris@0
|
7 Copyright 2007-2008 QMUL.
|
Chris@0
|
8
|
Chris@0
|
9 This program is free software; you can redistribute it and/or
|
Chris@0
|
10 modify it under the terms of the GNU General Public License as
|
Chris@0
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@0
|
12 License, or (at your option) any later version. See the file
|
Chris@0
|
13 COPYING included with this distribution for more information.
|
Chris@0
|
14 */
|
Chris@0
|
15
|
Chris@0
|
16 #include "FeatureExtractionManager.h"
|
Chris@106
|
17 #include "MultiplexedReader.h"
|
Chris@0
|
18
|
Chris@0
|
19 #include <vamp-hostsdk/PluginChannelAdapter.h>
|
Chris@0
|
20 #include <vamp-hostsdk/PluginBufferingAdapter.h>
|
Chris@0
|
21 #include <vamp-hostsdk/PluginInputDomainAdapter.h>
|
Chris@0
|
22 #include <vamp-hostsdk/PluginSummarisingAdapter.h>
|
Chris@8
|
23 #include <vamp-hostsdk/PluginWrapper.h>
|
Chris@0
|
24 #include <vamp-hostsdk/PluginLoader.h>
|
Chris@0
|
25
|
Chris@21
|
26 #include "base/Exceptions.h"
|
Chris@21
|
27
|
Chris@0
|
28 #include <iostream>
|
Chris@0
|
29
|
Chris@0
|
30 using namespace std;
|
Chris@0
|
31
|
Chris@0
|
32 using Vamp::Plugin;
|
Chris@0
|
33 using Vamp::PluginBase;
|
Chris@0
|
34 using Vamp::HostExt::PluginLoader;
|
Chris@0
|
35 using Vamp::HostExt::PluginChannelAdapter;
|
Chris@0
|
36 using Vamp::HostExt::PluginBufferingAdapter;
|
Chris@0
|
37 using Vamp::HostExt::PluginInputDomainAdapter;
|
Chris@0
|
38 using Vamp::HostExt::PluginSummarisingAdapter;
|
Chris@8
|
39 using Vamp::HostExt::PluginWrapper;
|
Chris@0
|
40
|
Chris@0
|
41 #include "data/fileio/FileSource.h"
|
Chris@0
|
42 #include "data/fileio/AudioFileReader.h"
|
Chris@0
|
43 #include "data/fileio/AudioFileReaderFactory.h"
|
Chris@0
|
44 #include "base/TempDirectory.h"
|
Chris@0
|
45 #include "base/ProgressPrinter.h"
|
Chris@0
|
46 #include "transform/TransformFactory.h"
|
Chris@0
|
47 #include "rdf/RDFTransformFactory.h"
|
Chris@0
|
48 #include "transform/FeatureWriter.h"
|
Chris@0
|
49
|
Chris@0
|
50 #include <QTextStream>
|
Chris@0
|
51 #include <QFile>
|
Chris@0
|
52 #include <QFileInfo>
|
Chris@0
|
53
|
Chris@0
|
54 FeatureExtractionManager::FeatureExtractionManager() :
|
Chris@0
|
55 m_summariesOnly(false),
|
Chris@0
|
56 // We can read using an arbitrary fixed block size --
|
Chris@177
|
57 // PluginBufferingAdapter handles this for us. But while this
|
Chris@177
|
58 // doesn't affect the step and block size actually passed to the
|
Chris@177
|
59 // plugin, it does affect the overall time range of the audio
|
Chris@177
|
60 // input (which gets rounded to the nearest block boundary). So
|
Chris@177
|
61 // although a larger blocksize will normally run faster, and we
|
Chris@177
|
62 // used a blocksize of 16384 in earlier releases of Sonic
|
Chris@177
|
63 // Annotator for that reason, a smaller blocksize produces
|
Chris@177
|
64 // "better" results and this is particularly relevant now we
|
Chris@177
|
65 // support the start and duration flags for a transform.
|
Chris@177
|
66 m_blockSize(1024),
|
Chris@0
|
67 m_defaultSampleRate(0),
|
Chris@0
|
68 m_sampleRate(0),
|
Chris@116
|
69 m_channels(0),
|
Chris@116
|
70 m_normalise(false)
|
Chris@0
|
71 {
|
Chris@0
|
72 }
|
Chris@0
|
73
|
Chris@0
|
74 FeatureExtractionManager::~FeatureExtractionManager()
|
Chris@0
|
75 {
|
Chris@0
|
76 for (PluginMap::iterator pi = m_plugins.begin();
|
Chris@0
|
77 pi != m_plugins.end(); ++pi) {
|
Chris@0
|
78 delete pi->first;
|
Chris@0
|
79 }
|
Chris@45
|
80 foreach (AudioFileReader *r, m_readyReaders) {
|
Chris@45
|
81 delete r;
|
Chris@45
|
82 }
|
Chris@0
|
83 }
|
Chris@0
|
84
|
Chris@0
|
85 void FeatureExtractionManager::setChannels(int channels)
|
Chris@0
|
86 {
|
Chris@0
|
87 m_channels = channels;
|
Chris@0
|
88 }
|
Chris@0
|
89
|
Chris@0
|
90 void FeatureExtractionManager::setDefaultSampleRate(int sampleRate)
|
Chris@0
|
91 {
|
Chris@0
|
92 m_defaultSampleRate = sampleRate;
|
Chris@0
|
93 }
|
Chris@0
|
94
|
Chris@116
|
95 void FeatureExtractionManager::setNormalise(bool normalise)
|
Chris@116
|
96 {
|
Chris@116
|
97 m_normalise = normalise;
|
Chris@116
|
98 }
|
Chris@116
|
99
|
Chris@0
|
100 static PluginSummarisingAdapter::SummaryType
|
Chris@0
|
101 getSummaryType(string name)
|
Chris@0
|
102 {
|
Chris@0
|
103 if (name == "min") return PluginSummarisingAdapter::Minimum;
|
Chris@0
|
104 if (name == "max") return PluginSummarisingAdapter::Maximum;
|
Chris@0
|
105 if (name == "mean") return PluginSummarisingAdapter::Mean;
|
Chris@0
|
106 if (name == "median") return PluginSummarisingAdapter::Median;
|
Chris@0
|
107 if (name == "mode") return PluginSummarisingAdapter::Mode;
|
Chris@0
|
108 if (name == "sum") return PluginSummarisingAdapter::Sum;
|
Chris@0
|
109 if (name == "variance") return PluginSummarisingAdapter::Variance;
|
Chris@0
|
110 if (name == "sd") return PluginSummarisingAdapter::StandardDeviation;
|
Chris@0
|
111 if (name == "count") return PluginSummarisingAdapter::Count;
|
Chris@0
|
112 return PluginSummarisingAdapter::UnknownSummaryType;
|
Chris@0
|
113 }
|
Chris@0
|
114
|
Chris@102
|
115 bool
|
Chris@102
|
116 FeatureExtractionManager::setSummaryTypes(const set<string> &names,
|
Chris@102
|
117 const PluginSummarisingAdapter::SegmentBoundaries &boundaries)
|
Chris@0
|
118 {
|
Chris@0
|
119 for (SummaryNameSet::const_iterator i = names.begin();
|
Chris@0
|
120 i != names.end(); ++i) {
|
Chris@0
|
121 if (getSummaryType(*i) == PluginSummarisingAdapter::UnknownSummaryType) {
|
Chris@0
|
122 cerr << "ERROR: Unknown summary type \"" << *i << "\"" << endl;
|
Chris@0
|
123 return false;
|
Chris@0
|
124 }
|
Chris@0
|
125 }
|
Chris@0
|
126 m_summaries = names;
|
Chris@0
|
127 m_boundaries = boundaries;
|
Chris@0
|
128 return true;
|
Chris@0
|
129 }
|
Chris@0
|
130
|
Chris@102
|
131 void
|
Chris@102
|
132 FeatureExtractionManager::setSummariesOnly(bool summariesOnly)
|
Chris@102
|
133 {
|
Chris@102
|
134 m_summariesOnly = summariesOnly;
|
Chris@102
|
135 }
|
Chris@102
|
136
|
Chris@51
|
137 static PluginInputDomainAdapter::WindowType
|
Chris@51
|
138 convertWindowType(WindowType t)
|
Chris@51
|
139 {
|
Chris@51
|
140 switch (t) {
|
Chris@51
|
141 case RectangularWindow:
|
Chris@51
|
142 return PluginInputDomainAdapter::RectangularWindow;
|
Chris@51
|
143 case BartlettWindow:
|
Chris@51
|
144 return PluginInputDomainAdapter::BartlettWindow;
|
Chris@51
|
145 case HammingWindow:
|
Chris@51
|
146 return PluginInputDomainAdapter::HammingWindow;
|
Chris@51
|
147 case HanningWindow:
|
Chris@51
|
148 return PluginInputDomainAdapter::HanningWindow;
|
Chris@51
|
149 case BlackmanWindow:
|
Chris@51
|
150 return PluginInputDomainAdapter::BlackmanWindow;
|
Chris@51
|
151 case NuttallWindow:
|
Chris@51
|
152 return PluginInputDomainAdapter::NuttallWindow;
|
Chris@51
|
153 case BlackmanHarrisWindow:
|
Chris@51
|
154 return PluginInputDomainAdapter::BlackmanHarrisWindow;
|
Chris@138
|
155 case GaussianWindow:
|
Chris@138
|
156 case ParzenWindow:
|
Chris@138
|
157 // Not supported in Vamp SDK, fall through
|
Chris@51
|
158 default:
|
Chris@51
|
159 cerr << "ERROR: Unknown or unsupported window type \"" << t << "\", using Hann (\"" << HanningWindow << "\")" << endl;
|
Chris@51
|
160 return PluginInputDomainAdapter::HanningWindow;
|
Chris@51
|
161 }
|
Chris@51
|
162 }
|
Chris@51
|
163
|
Chris@0
|
164 bool FeatureExtractionManager::addFeatureExtractor
|
Chris@0
|
165 (Transform transform, const vector<FeatureWriter*> &writers)
|
Chris@0
|
166 {
|
Chris@0
|
167 //!!! exceptions rather than return values?
|
Chris@0
|
168
|
Chris@0
|
169 if (transform.getSampleRate() == 0) {
|
Chris@0
|
170 if (m_sampleRate == 0) {
|
Chris@0
|
171 cerr << "NOTE: Transform does not specify a sample rate, using default rate of " << m_defaultSampleRate << endl;
|
Chris@0
|
172 transform.setSampleRate(m_defaultSampleRate);
|
Chris@0
|
173 m_sampleRate = m_defaultSampleRate;
|
Chris@0
|
174 } else {
|
Chris@0
|
175 cerr << "NOTE: Transform does not specify a sample rate, using previous transform's rate of " << m_sampleRate << endl;
|
Chris@0
|
176 transform.setSampleRate(m_sampleRate);
|
Chris@0
|
177 }
|
Chris@0
|
178 }
|
Chris@0
|
179
|
Chris@0
|
180 if (m_sampleRate == 0) {
|
Chris@0
|
181 m_sampleRate = transform.getSampleRate();
|
Chris@0
|
182 }
|
Chris@0
|
183
|
Chris@0
|
184 if (transform.getSampleRate() != m_sampleRate) {
|
Chris@0
|
185 cerr << "WARNING: Transform sample rate " << transform.getSampleRate() << " does not match previously specified transform rate of " << m_sampleRate << " -- only a single rate is supported for each run" << endl;
|
Chris@0
|
186 cerr << "WARNING: Using previous rate of " << m_sampleRate << " for this transform as well" << endl;
|
Chris@0
|
187 transform.setSampleRate(m_sampleRate);
|
Chris@0
|
188 }
|
Chris@0
|
189
|
Chris@0
|
190 Plugin *plugin = 0;
|
Chris@0
|
191
|
Chris@0
|
192 // Remember what the original transform looked like, and index
|
Chris@0
|
193 // based on this -- because we may be about to fill in the zeros
|
Chris@0
|
194 // for step and block size, but we want any further copies with
|
Chris@0
|
195 // the same zeros to match this one
|
Chris@0
|
196 Transform originalTransform = transform;
|
Chris@0
|
197
|
Chris@0
|
198 if (m_transformPluginMap.find(transform) == m_transformPluginMap.end()) {
|
Chris@0
|
199
|
Chris@0
|
200 // Test whether we already have a transform that is identical
|
Chris@0
|
201 // to this, except for the output requested and/or the summary
|
Chris@0
|
202 // type -- if so, they should share plugin instances (a vital
|
Chris@0
|
203 // optimisation)
|
Chris@0
|
204
|
Chris@0
|
205 for (TransformPluginMap::iterator i = m_transformPluginMap.begin();
|
Chris@0
|
206 i != m_transformPluginMap.end(); ++i) {
|
Chris@0
|
207 Transform test = i->first;
|
Chris@0
|
208 test.setOutput(transform.getOutput());
|
Chris@0
|
209 test.setSummaryType(transform.getSummaryType());
|
Chris@0
|
210 if (transform == test) {
|
Chris@0
|
211 cerr << "NOTE: Already have transform identical to this one (for \""
|
Chris@0
|
212 << transform.getIdentifier().toStdString()
|
Chris@0
|
213 << "\") in every detail except output identifier and/or "
|
Chris@0
|
214 << "summary type; sharing its plugin instance" << endl;
|
Chris@0
|
215 plugin = i->second;
|
Chris@0
|
216 if (transform.getSummaryType() != Transform::NoSummary &&
|
Chris@0
|
217 !dynamic_cast<PluginSummarisingAdapter *>(plugin)) {
|
Chris@0
|
218 plugin = new PluginSummarisingAdapter(plugin);
|
Chris@0
|
219 i->second = plugin;
|
Chris@0
|
220 }
|
Chris@0
|
221 break;
|
Chris@0
|
222 }
|
Chris@0
|
223 }
|
Chris@0
|
224
|
Chris@0
|
225 if (!plugin) {
|
Chris@0
|
226
|
Chris@0
|
227 TransformFactory *tf = TransformFactory::getInstance();
|
Chris@0
|
228
|
Chris@0
|
229 PluginBase *pb = tf->instantiatePluginFor(transform);
|
Chris@0
|
230 plugin = tf->downcastVampPlugin(pb);
|
Chris@0
|
231 if (!plugin) {
|
Chris@0
|
232 //!!! todo: handle non-Vamp plugins too, or make the main --list
|
Chris@0
|
233 // option print out only Vamp transforms
|
Chris@0
|
234 cerr << "ERROR: Failed to load plugin for transform \""
|
Chris@0
|
235 << transform.getIdentifier().toStdString() << "\"" << endl;
|
Chris@203
|
236 if (pb) {
|
Chris@203
|
237 cerr << "NOTE: (A plugin was loaded, but apparently not a Vamp plugin)" << endl;
|
Chris@203
|
238 }
|
Chris@0
|
239 delete pb;
|
Chris@0
|
240 return false;
|
Chris@0
|
241 }
|
Chris@0
|
242
|
Chris@0
|
243 // We will provide the plugin with arbitrary step and
|
Chris@0
|
244 // block sizes (so that we can use the same read/write
|
Chris@0
|
245 // block size for all transforms), and to that end we use
|
Chris@0
|
246 // a PluginBufferingAdapter. However, we need to know the
|
Chris@0
|
247 // underlying step size so that we can provide the right
|
Chris@0
|
248 // context for dense outputs. (Although, don't forget
|
Chris@0
|
249 // that the PluginBufferingAdapter rewrites
|
Chris@0
|
250 // OneSamplePerStep outputs so as to use FixedSampleRate
|
Chris@0
|
251 // -- so it supplies the sample rate in the output
|
Chris@0
|
252 // feature. I'm not sure whether we can easily use that.)
|
Chris@0
|
253
|
Chris@0
|
254 size_t pluginStepSize = plugin->getPreferredStepSize();
|
Chris@0
|
255 size_t pluginBlockSize = plugin->getPreferredBlockSize();
|
Chris@0
|
256
|
Chris@25
|
257 PluginInputDomainAdapter *pida = 0;
|
Chris@25
|
258
|
Chris@0
|
259 // adapt the plugin for buffering, channels, etc.
|
Chris@0
|
260 if (plugin->getInputDomain() == Plugin::FrequencyDomain) {
|
Chris@51
|
261
|
Chris@25
|
262 pida = new PluginInputDomainAdapter(plugin);
|
Chris@26
|
263 pida->setProcessTimestampMethod(PluginInputDomainAdapter::ShiftData);
|
Chris@51
|
264
|
Chris@51
|
265 PluginInputDomainAdapter::WindowType wtype =
|
Chris@51
|
266 convertWindowType(transform.getWindowType());
|
Chris@51
|
267 pida->setWindowType(wtype);
|
Chris@25
|
268 plugin = pida;
|
Chris@0
|
269 }
|
Chris@0
|
270
|
Chris@0
|
271 PluginBufferingAdapter *pba = new PluginBufferingAdapter(plugin);
|
Chris@0
|
272 plugin = pba;
|
Chris@0
|
273
|
Chris@0
|
274 if (transform.getStepSize() != 0) {
|
Chris@0
|
275 pba->setPluginStepSize(transform.getStepSize());
|
Chris@0
|
276 } else {
|
Chris@0
|
277 transform.setStepSize(pluginStepSize);
|
Chris@0
|
278 }
|
Chris@0
|
279
|
Chris@0
|
280 if (transform.getBlockSize() != 0) {
|
Chris@0
|
281 pba->setPluginBlockSize(transform.getBlockSize());
|
Chris@0
|
282 } else {
|
Chris@0
|
283 transform.setBlockSize(pluginBlockSize);
|
Chris@0
|
284 }
|
Chris@0
|
285
|
Chris@0
|
286 plugin = new PluginChannelAdapter(plugin);
|
Chris@0
|
287
|
Chris@0
|
288 if (!m_summaries.empty() ||
|
Chris@0
|
289 transform.getSummaryType() != Transform::NoSummary) {
|
Chris@0
|
290 PluginSummarisingAdapter *adapter =
|
Chris@0
|
291 new PluginSummarisingAdapter(plugin);
|
Chris@0
|
292 adapter->setSummarySegmentBoundaries(m_boundaries);
|
Chris@0
|
293 plugin = adapter;
|
Chris@0
|
294 }
|
Chris@0
|
295
|
Chris@0
|
296 if (!plugin->initialise(m_channels, m_blockSize, m_blockSize)) {
|
Chris@0
|
297 cerr << "ERROR: Plugin initialise (channels = " << m_channels << ", stepSize = " << m_blockSize << ", blockSize = " << m_blockSize << ") failed." << endl;
|
Chris@0
|
298 delete plugin;
|
Chris@0
|
299 return false;
|
Chris@0
|
300 }
|
Chris@0
|
301
|
Chris@0
|
302 // cerr << "Initialised plugin" << endl;
|
Chris@0
|
303
|
Chris@0
|
304 size_t actualStepSize = 0;
|
Chris@0
|
305 size_t actualBlockSize = 0;
|
Chris@0
|
306 pba->getActualStepAndBlockSizes(actualStepSize, actualBlockSize);
|
Chris@0
|
307 transform.setStepSize(actualStepSize);
|
Chris@0
|
308 transform.setBlockSize(actualBlockSize);
|
Chris@0
|
309
|
Chris@0
|
310 Plugin::OutputList outputs = plugin->getOutputDescriptors();
|
Chris@0
|
311 for (int i = 0; i < (int)outputs.size(); ++i) {
|
Chris@0
|
312
|
Chris@0
|
313 // cerr << "Newly initialised plugin output " << i << " has bin count " << outputs[i].binCount << endl;
|
Chris@0
|
314
|
Chris@0
|
315 m_pluginOutputs[plugin][outputs[i].identifier] = outputs[i];
|
Chris@0
|
316 m_pluginOutputIndices[outputs[i].identifier] = i;
|
Chris@0
|
317 }
|
Chris@0
|
318
|
Chris@10
|
319 cerr << "NOTE: Loaded and initialised plugin for transform \""
|
Chris@25
|
320 << transform.getIdentifier().toStdString()
|
Chris@25
|
321 << "\" with plugin step size " << actualStepSize
|
Chris@25
|
322 << " and block size " << actualBlockSize
|
Chris@25
|
323 << " (adapter step and block size " << m_blockSize << ")"
|
Chris@25
|
324 << endl;
|
Chris@25
|
325
|
Chris@25
|
326 if (pida) {
|
Chris@25
|
327 cerr << "NOTE: PluginInputDomainAdapter timestamp adjustment is "
|
Chris@25
|
328
|
Chris@25
|
329 << pida->getTimestampAdjustment() << endl;
|
Chris@25
|
330 }
|
Chris@8
|
331
|
Chris@8
|
332 } else {
|
Chris@8
|
333
|
Chris@8
|
334 if (transform.getStepSize() == 0 || transform.getBlockSize() == 0) {
|
Chris@8
|
335
|
Chris@8
|
336 PluginWrapper *pw = dynamic_cast<PluginWrapper *>(plugin);
|
Chris@8
|
337 if (pw) {
|
Chris@8
|
338 PluginBufferingAdapter *pba =
|
Chris@8
|
339 pw->getWrapper<PluginBufferingAdapter>();
|
Chris@8
|
340 if (pba) {
|
Chris@8
|
341 size_t actualStepSize = 0;
|
Chris@8
|
342 size_t actualBlockSize = 0;
|
Chris@8
|
343 pba->getActualStepAndBlockSizes(actualStepSize,
|
Chris@8
|
344 actualBlockSize);
|
Chris@8
|
345 if (transform.getStepSize() == 0) {
|
Chris@8
|
346 transform.setStepSize(actualStepSize);
|
Chris@8
|
347 }
|
Chris@8
|
348 if (transform.getBlockSize() == 0) {
|
Chris@8
|
349 transform.setBlockSize(actualBlockSize);
|
Chris@8
|
350 }
|
Chris@8
|
351 }
|
Chris@8
|
352 }
|
Chris@8
|
353 }
|
Chris@0
|
354 }
|
Chris@0
|
355
|
Chris@130
|
356 if (transform.getPluginVersion() != "") {
|
Chris@130
|
357 if (QString("%1").arg(plugin->getPluginVersion())
|
Chris@130
|
358 != transform.getPluginVersion()) {
|
Chris@130
|
359 cerr << "ERROR: Transform specifies version "
|
Chris@130
|
360 << transform.getPluginVersion()
|
Chris@130
|
361 << " of plugin \"" << plugin->getIdentifier()
|
Chris@130
|
362 << "\", but installed plugin is version "
|
Chris@130
|
363 << plugin->getPluginVersion()
|
Chris@130
|
364 << endl;
|
Chris@130
|
365 return false;
|
Chris@130
|
366 }
|
Chris@130
|
367 }
|
Chris@130
|
368
|
Chris@0
|
369 if (transform.getOutput() == "") {
|
Chris@0
|
370 transform.setOutput
|
Chris@0
|
371 (plugin->getOutputDescriptors()[0].identifier.c_str());
|
Chris@129
|
372 } else {
|
Chris@129
|
373 if (m_pluginOutputs[plugin].find
|
Chris@129
|
374 (transform.getOutput().toLocal8Bit().data()) ==
|
Chris@129
|
375 m_pluginOutputs[plugin].end()) {
|
Chris@129
|
376 cerr << "ERROR: Transform requests nonexistent plugin output \""
|
Chris@129
|
377 << transform.getOutput()
|
Chris@129
|
378 << "\"" << endl;
|
Chris@129
|
379 return false;
|
Chris@129
|
380 }
|
Chris@0
|
381 }
|
Chris@0
|
382
|
Chris@0
|
383 m_transformPluginMap[transform] = plugin;
|
Chris@0
|
384
|
Chris@0
|
385 if (!(originalTransform == transform)) {
|
Chris@0
|
386 m_transformPluginMap[originalTransform] = plugin;
|
Chris@0
|
387 }
|
Chris@0
|
388
|
Chris@0
|
389 } else {
|
Chris@0
|
390
|
Chris@0
|
391 plugin = m_transformPluginMap[transform];
|
Chris@0
|
392 }
|
Chris@0
|
393
|
Chris@109
|
394 if (m_plugins.find(plugin) == m_plugins.end()) {
|
Chris@109
|
395 m_orderedPlugins.push_back(plugin);
|
Chris@109
|
396 }
|
Chris@109
|
397
|
Chris@0
|
398 m_plugins[plugin][transform] = writers;
|
Chris@0
|
399
|
Chris@0
|
400 return true;
|
Chris@0
|
401 }
|
Chris@0
|
402
|
Chris@0
|
403 bool FeatureExtractionManager::addDefaultFeatureExtractor
|
Chris@0
|
404 (TransformId transformId, const vector<FeatureWriter*> &writers)
|
Chris@0
|
405 {
|
Chris@0
|
406 TransformFactory *tf = TransformFactory::getInstance();
|
Chris@0
|
407
|
Chris@0
|
408 if (m_sampleRate == 0) {
|
Chris@0
|
409 if (m_defaultSampleRate == 0) {
|
Chris@0
|
410 cerr << "ERROR: Default transform requested, but no default sample rate available" << endl;
|
Chris@0
|
411 return false;
|
Chris@0
|
412 } else {
|
Chris@0
|
413 cerr << "NOTE: Using default sample rate of " << m_defaultSampleRate << " for default transform" << endl;
|
Chris@0
|
414 m_sampleRate = m_defaultSampleRate;
|
Chris@0
|
415 }
|
Chris@0
|
416 }
|
Chris@0
|
417
|
Chris@0
|
418 Transform transform = tf->getDefaultTransformFor(transformId, m_sampleRate);
|
Chris@0
|
419
|
Chris@203
|
420 bool result = addFeatureExtractor(transform, writers);
|
Chris@203
|
421 if (!result) {
|
Chris@203
|
422 if (transform.getType() == Transform::UnknownType) {
|
Chris@203
|
423 cerr << "(Maybe mixed up filename with transform, or --transform with --default?)" << endl;
|
Chris@203
|
424 }
|
Chris@203
|
425 }
|
Chris@203
|
426 return result;
|
Chris@0
|
427 }
|
Chris@0
|
428
|
Chris@0
|
429 bool FeatureExtractionManager::addFeatureExtractorFromFile
|
Chris@227
|
430 (QString transformFile, const vector<FeatureWriter*> &writers)
|
Chris@0
|
431 {
|
Chris@227
|
432 // We support two formats for transform description files, XML (in
|
Chris@227
|
433 // a format specific to Sonic Annotator) and RDF/Turtle. The RDF
|
Chris@227
|
434 // format can describe multiple transforms in a single file, the
|
Chris@227
|
435 // XML only one.
|
Chris@227
|
436
|
Chris@227
|
437 // Possible errors we should report:
|
Chris@227
|
438 //
|
Chris@227
|
439 // 1. File does not exist or cannot be opened
|
Chris@227
|
440 // 2. File is ostensibly XML, but is not parseable
|
Chris@227
|
441 // 3. File is ostensibly Turtle, but is not parseable
|
Chris@227
|
442 // 4. File is XML, but contains no valid transform (e.g. is unrelated XML)
|
Chris@227
|
443 // 5. File is Turtle, but contains no valid transform(s)
|
Chris@227
|
444 // 6. File is Turtle and contains both valid and invalid transform(s)
|
Chris@227
|
445
|
Chris@227
|
446 {
|
Chris@227
|
447 // We don't actually need to open this here yet, we just hoist
|
Chris@227
|
448 // it to the top for error reporting purposes
|
Chris@227
|
449 QFile file(transformFile);
|
Chris@227
|
450 if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
Chris@227
|
451 // Error case 1. File does not exist or cannot be opened
|
Chris@227
|
452 cerr << "ERROR: Failed to open transform file \"" << transformFile
|
Chris@227
|
453 << "\" for reading" << endl;
|
Chris@227
|
454 return false;
|
Chris@227
|
455 }
|
Chris@227
|
456 }
|
Chris@227
|
457
|
Chris@99
|
458 bool tryRdf = true;
|
Chris@227
|
459 if (transformFile.endsWith(".xml") || transformFile.endsWith(".XML")) {
|
Chris@99
|
460 // We don't support RDF-XML (and nor does the underlying
|
Chris@99
|
461 // parser library) so skip the RDF parse if the filename
|
Chris@99
|
462 // suggests XML, to avoid puking out a load of errors from
|
Chris@99
|
463 // feeding XML to a Turtle parser
|
Chris@99
|
464 tryRdf = false;
|
Chris@0
|
465 }
|
Chris@99
|
466
|
Chris@227
|
467 bool tryXml = true;
|
Chris@227
|
468 if (transformFile.endsWith(".ttl") || transformFile.endsWith(".TTL") ||
|
Chris@227
|
469 transformFile.endsWith(".ntriples") || transformFile.endsWith(".NTRIPLES") ||
|
Chris@227
|
470 transformFile.endsWith(".n3") || transformFile.endsWith(".N3")) {
|
Chris@227
|
471 tryXml = false;
|
Chris@227
|
472 }
|
Chris@227
|
473
|
Chris@227
|
474 QString rdfError, xmlError;
|
Chris@227
|
475
|
Chris@99
|
476 if (tryRdf) {
|
Chris@227
|
477
|
Chris@99
|
478 RDFTransformFactory factory
|
Chris@227
|
479 (QUrl::fromLocalFile(QFileInfo(transformFile).absoluteFilePath())
|
Chris@99
|
480 .toString());
|
Chris@99
|
481 ProgressPrinter printer("Parsing transforms RDF file");
|
Chris@99
|
482 std::vector<Transform> transforms = factory.getTransforms(&printer);
|
Chris@227
|
483
|
Chris@227
|
484 if (factory.isOK()) {
|
Chris@227
|
485 if (transforms.empty()) {
|
Chris@227
|
486 cerr << "ERROR: Transform file \"" << transformFile
|
Chris@227
|
487 << "\" is valid RDF but defines no transforms" << endl;
|
Chris@227
|
488 return false;
|
Chris@227
|
489 } else {
|
Chris@227
|
490 bool success = true;
|
Chris@227
|
491 for (int i = 0; i < (int)transforms.size(); ++i) {
|
Chris@227
|
492 if (!addFeatureExtractor(transforms[i], writers)) {
|
Chris@227
|
493 success = false;
|
Chris@227
|
494 }
|
Chris@227
|
495 }
|
Chris@227
|
496 return success;
|
Chris@227
|
497 }
|
Chris@227
|
498 } else { // !factory.isOK()
|
Chris@99
|
499 if (factory.isRDF()) {
|
Chris@227
|
500 cerr << "ERROR: Invalid transform RDF file \"" << transformFile
|
Chris@227
|
501 << "\": " << factory.getErrorString() << endl;
|
Chris@227
|
502 return false;
|
Chris@0
|
503 }
|
Chris@227
|
504
|
Chris@227
|
505 // the not-RDF case: fall through without reporting an
|
Chris@227
|
506 // error, so we try the file as XML, and if that fails, we
|
Chris@227
|
507 // print a general unparseable-file error
|
Chris@227
|
508 rdfError = factory.getErrorString();
|
Chris@99
|
509 }
|
Chris@0
|
510 }
|
Chris@0
|
511
|
Chris@227
|
512 if (tryXml) {
|
Chris@227
|
513
|
Chris@227
|
514 QFile file(transformFile);
|
Chris@227
|
515 if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
Chris@227
|
516 cerr << "ERROR: Failed to open transform file \""
|
Chris@227
|
517 << transformFile.toStdString() << "\" for reading" << endl;
|
Chris@227
|
518 return false;
|
Chris@227
|
519 }
|
Chris@227
|
520
|
Chris@227
|
521 QTextStream *qts = new QTextStream(&file);
|
Chris@227
|
522 QString qs = qts->readAll();
|
Chris@227
|
523 delete qts;
|
Chris@227
|
524 file.close();
|
Chris@227
|
525
|
Chris@227
|
526 Transform transform(qs);
|
Chris@227
|
527 xmlError = transform.getErrorString();
|
Chris@227
|
528
|
Chris@227
|
529 if (xmlError == "") {
|
Chris@227
|
530
|
Chris@227
|
531 if (transform.getIdentifier() == "") {
|
Chris@227
|
532 cerr << "ERROR: Transform file \"" << transformFile
|
Chris@227
|
533 << "\" is valid XML but defines no transform" << endl;
|
Chris@227
|
534 return false;
|
Chris@227
|
535 }
|
Chris@227
|
536
|
Chris@227
|
537 return addFeatureExtractor(transform, writers);
|
Chris@227
|
538 }
|
Chris@0
|
539 }
|
Chris@0
|
540
|
Chris@227
|
541 cerr << "ERROR: Transform file \"" << transformFile
|
Chris@227
|
542 << "\" could not be parsed" << endl;
|
Chris@227
|
543 if (rdfError != "") {
|
Chris@227
|
544 cerr << "ERROR: RDF parser reported: " << rdfError << endl;
|
Chris@227
|
545 }
|
Chris@227
|
546 if (xmlError != "") {
|
Chris@227
|
547 cerr << "ERROR: XML parser reported: " << xmlError << endl;
|
Chris@227
|
548 }
|
Chris@0
|
549
|
Chris@227
|
550 return false;
|
Chris@0
|
551 }
|
Chris@0
|
552
|
Chris@106
|
553 void FeatureExtractionManager::addSource(QString audioSource, bool willMultiplex)
|
Chris@0
|
554 {
|
Chris@45
|
555 std::cerr << "Have audio source: \"" << audioSource.toStdString() << "\"" << std::endl;
|
Chris@45
|
556
|
Chris@45
|
557 // We don't actually do anything with it here, unless it's the
|
Chris@45
|
558 // first audio source and we need it to establish default channel
|
Chris@45
|
559 // count and sample rate
|
Chris@45
|
560
|
Chris@45
|
561 if (m_channels == 0 || m_defaultSampleRate == 0) {
|
Chris@45
|
562
|
Chris@227
|
563 ProgressPrinter retrievalProgress("Retrieving first input file to determine default rate and channel count...");
|
Chris@45
|
564
|
Chris@45
|
565 FileSource source(audioSource, &retrievalProgress);
|
Chris@45
|
566 if (!source.isAvailable()) {
|
Chris@45
|
567 cerr << "ERROR: File or URL \"" << audioSource.toStdString()
|
Chris@117
|
568 << "\" could not be located";
|
Chris@117
|
569 if (source.getErrorString() != "") {
|
Chris@117
|
570 cerr << ": " << source.getErrorString();
|
Chris@117
|
571 }
|
Chris@117
|
572 cerr << endl;
|
Chris@45
|
573 throw FileNotFound(audioSource);
|
Chris@45
|
574 }
|
Chris@45
|
575
|
Chris@45
|
576 source.waitForData();
|
Chris@45
|
577
|
Chris@45
|
578 // Open to determine validity, channel count, sample rate only
|
Chris@45
|
579 // (then close, and open again later with actual desired rate &c)
|
Chris@45
|
580
|
Chris@45
|
581 AudioFileReader *reader =
|
Chris@116
|
582 AudioFileReaderFactory::createReader(source, 0,
|
Chris@116
|
583 m_normalise,
|
Chris@95
|
584 &retrievalProgress);
|
Chris@45
|
585
|
Chris@45
|
586 if (!reader) {
|
Chris@45
|
587 throw FailedToOpenFile(audioSource);
|
Chris@45
|
588 }
|
Chris@45
|
589
|
Chris@45
|
590 retrievalProgress.done();
|
Chris@45
|
591
|
Chris@45
|
592 cerr << "File or URL \"" << audioSource.toStdString() << "\" opened successfully" << endl;
|
Chris@45
|
593
|
Chris@113
|
594 if (!willMultiplex) {
|
Chris@106
|
595 if (m_channels == 0) {
|
Chris@106
|
596 m_channels = reader->getChannelCount();
|
Chris@106
|
597 cerr << "Taking default channel count of "
|
Chris@227
|
598 << reader->getChannelCount() << " from audio file" << endl;
|
Chris@106
|
599 }
|
Chris@45
|
600 }
|
Chris@45
|
601
|
Chris@45
|
602 if (m_defaultSampleRate == 0) {
|
Chris@45
|
603 m_defaultSampleRate = reader->getNativeRate();
|
Chris@45
|
604 cerr << "Taking default sample rate of "
|
Chris@227
|
605 << reader->getNativeRate() << "Hz from audio file" << endl;
|
Chris@45
|
606 cerr << "(Note: Default may be overridden by transforms)" << endl;
|
Chris@45
|
607 }
|
Chris@45
|
608
|
Chris@45
|
609 m_readyReaders[audioSource] = reader;
|
Chris@45
|
610 }
|
Chris@113
|
611
|
Chris@113
|
612 if (willMultiplex) {
|
Chris@113
|
613 ++m_channels; // channel count is simply number of sources
|
Chris@113
|
614 cerr << "Multiplexing, incremented target channel count to "
|
Chris@113
|
615 << m_channels << endl;
|
Chris@113
|
616 }
|
Chris@45
|
617 }
|
Chris@45
|
618
|
Chris@112
|
619 void FeatureExtractionManager::extractFeatures(QString audioSource)
|
Chris@45
|
620 {
|
Chris@45
|
621 if (m_plugins.empty()) return;
|
Chris@45
|
622
|
Chris@45
|
623 testOutputFiles(audioSource);
|
Chris@45
|
624
|
Chris@0
|
625 if (m_sampleRate == 0) {
|
Chris@45
|
626 throw FileOperationFailed
|
Chris@45
|
627 (audioSource, "internal error: have sources and plugins, but no sample rate");
|
Chris@45
|
628 }
|
Chris@45
|
629 if (m_channels == 0) {
|
Chris@45
|
630 throw FileOperationFailed
|
Chris@45
|
631 (audioSource, "internal error: have sources and plugins, but no channel count");
|
Chris@0
|
632 }
|
Chris@0
|
633
|
Chris@106
|
634 AudioFileReader *reader = prepareReader(audioSource);
|
Chris@106
|
635 extractFeaturesFor(reader, audioSource); // Note this also deletes reader
|
Chris@106
|
636 }
|
Chris@102
|
637
|
Chris@106
|
638 void FeatureExtractionManager::extractFeaturesMultiplexed(QStringList sources)
|
Chris@106
|
639 {
|
Chris@106
|
640 if (m_plugins.empty() || sources.empty()) return;
|
Chris@106
|
641
|
Chris@106
|
642 QString nominalSource = sources[0];
|
Chris@106
|
643
|
Chris@106
|
644 testOutputFiles(nominalSource);
|
Chris@106
|
645
|
Chris@106
|
646 if (m_sampleRate == 0) {
|
Chris@106
|
647 throw FileOperationFailed
|
Chris@106
|
648 (nominalSource, "internal error: have sources and plugins, but no sample rate");
|
Chris@106
|
649 }
|
Chris@106
|
650 if (m_channels == 0) {
|
Chris@106
|
651 throw FileOperationFailed
|
Chris@106
|
652 (nominalSource, "internal error: have sources and plugins, but no channel count");
|
Chris@106
|
653 }
|
Chris@106
|
654
|
Chris@106
|
655 QList<AudioFileReader *> readers;
|
Chris@106
|
656 foreach (QString source, sources) {
|
Chris@106
|
657 AudioFileReader *reader = prepareReader(source);
|
Chris@106
|
658 readers.push_back(reader);
|
Chris@106
|
659 }
|
Chris@106
|
660
|
Chris@106
|
661 AudioFileReader *reader = new MultiplexedReader(readers);
|
Chris@106
|
662 extractFeaturesFor(reader, nominalSource); // Note this also deletes reader
|
Chris@106
|
663 }
|
Chris@106
|
664
|
Chris@106
|
665 AudioFileReader *
|
Chris@106
|
666 FeatureExtractionManager::prepareReader(QString source)
|
Chris@106
|
667 {
|
Chris@45
|
668 AudioFileReader *reader = 0;
|
Chris@106
|
669 if (m_readyReaders.contains(source)) {
|
Chris@106
|
670 reader = m_readyReaders[source];
|
Chris@106
|
671 m_readyReaders.remove(source);
|
Chris@106
|
672 if (reader->getSampleRate() != m_sampleRate) {
|
Chris@45
|
673 // can't use this; open it again
|
Chris@45
|
674 delete reader;
|
Chris@45
|
675 reader = 0;
|
Chris@45
|
676 }
|
Chris@45
|
677 }
|
Chris@45
|
678 if (!reader) {
|
Chris@45
|
679 ProgressPrinter retrievalProgress("Retrieving audio data...");
|
Chris@106
|
680 FileSource fs(source, &retrievalProgress);
|
Chris@106
|
681 fs.waitForData();
|
Chris@116
|
682 reader = AudioFileReaderFactory::createReader(fs, m_sampleRate,
|
Chris@116
|
683 m_normalise,
|
Chris@116
|
684 &retrievalProgress);
|
Chris@45
|
685 retrievalProgress.done();
|
Chris@45
|
686 }
|
Chris@102
|
687 if (!reader) {
|
Chris@107
|
688 throw FailedToOpenFile(source);
|
Chris@102
|
689 }
|
Chris@219
|
690 if (reader->getChannelCount() != m_channels ||
|
Chris@219
|
691 reader->getNativeRate() != m_sampleRate) {
|
Chris@219
|
692 cerr << "NOTE: File will be mixed or resampled for processing, to: "
|
Chris@219
|
693 << m_channels << "ch at "
|
Chris@219
|
694 << m_sampleRate << "Hz" << endl;
|
Chris@219
|
695 }
|
Chris@106
|
696 return reader;
|
Chris@106
|
697 }
|
Chris@45
|
698
|
Chris@106
|
699 void
|
Chris@106
|
700 FeatureExtractionManager::extractFeaturesFor(AudioFileReader *reader,
|
Chris@106
|
701 QString audioSource)
|
Chris@106
|
702 {
|
Chris@106
|
703 // Note: This also deletes reader
|
Chris@0
|
704
|
Chris@45
|
705 cerr << "Audio file \"" << audioSource.toStdString() << "\": "
|
Chris@45
|
706 << reader->getChannelCount() << "ch at "
|
Chris@45
|
707 << reader->getNativeRate() << "Hz" << endl;
|
Chris@11
|
708
|
Chris@0
|
709 // allocate audio buffers
|
Chris@0
|
710 float **data = new float *[m_channels];
|
Chris@0
|
711 for (int c = 0; c < m_channels; ++c) {
|
Chris@0
|
712 data[c] = new float[m_blockSize];
|
Chris@0
|
713 }
|
Chris@31
|
714
|
Chris@31
|
715 struct LifespanMgr { // unintrusive hack introduced to ensure
|
Chris@31
|
716 // destruction on exceptions
|
Chris@31
|
717 AudioFileReader *m_r;
|
Chris@31
|
718 int m_c;
|
Chris@31
|
719 float **m_d;
|
Chris@31
|
720 LifespanMgr(AudioFileReader *r, int c, float **d) :
|
Chris@31
|
721 m_r(r), m_c(c), m_d(d) { }
|
Chris@31
|
722 ~LifespanMgr() { destroy(); }
|
Chris@31
|
723 void destroy() {
|
Chris@31
|
724 if (!m_r) return;
|
Chris@31
|
725 delete m_r;
|
Chris@31
|
726 for (int i = 0; i < m_c; ++i) delete[] m_d[i];
|
Chris@31
|
727 delete[] m_d;
|
Chris@31
|
728 m_r = 0;
|
Chris@31
|
729 }
|
Chris@31
|
730 };
|
Chris@31
|
731 LifespanMgr lifemgr(reader, m_channels, data);
|
Chris@0
|
732
|
Chris@0
|
733 size_t frameCount = reader->getFrameCount();
|
Chris@0
|
734
|
Chris@0
|
735 // cerr << "file has " << frameCount << " frames" << endl;
|
Chris@0
|
736
|
Chris@99
|
737 int earliestStartFrame = 0;
|
Chris@99
|
738 int latestEndFrame = frameCount;
|
Chris@99
|
739 bool haveExtents = false;
|
Chris@99
|
740
|
Chris@109
|
741 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@0
|
742
|
Chris@109
|
743 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
744
|
Chris@109
|
745 std::cerr << "Calling reset on " << plugin << std::endl;
|
Chris@0
|
746 plugin->reset();
|
Chris@0
|
747
|
Chris@0
|
748 for (TransformWriterMap::iterator ti = pi->second.begin();
|
Chris@0
|
749 ti != pi->second.end(); ++ti) {
|
Chris@0
|
750
|
Chris@0
|
751 const Transform &transform = ti->first;
|
Chris@0
|
752
|
Chris@99
|
753 int startFrame = RealTime::realTime2Frame
|
Chris@99
|
754 (transform.getStartTime(), m_sampleRate);
|
Chris@99
|
755 int duration = RealTime::realTime2Frame
|
Chris@99
|
756 (transform.getDuration(), m_sampleRate);
|
Chris@99
|
757 if (duration == 0) {
|
Chris@99
|
758 duration = frameCount - startFrame;
|
Chris@99
|
759 }
|
Chris@99
|
760
|
Chris@99
|
761 if (!haveExtents || startFrame < earliestStartFrame) {
|
Chris@99
|
762 earliestStartFrame = startFrame;
|
Chris@99
|
763 }
|
Chris@99
|
764 if (!haveExtents || startFrame + duration > latestEndFrame) {
|
Chris@99
|
765 latestEndFrame = startFrame + duration;
|
Chris@99
|
766 }
|
Chris@131
|
767 /*
|
Chris@109
|
768 cerr << "startFrame for transform " << startFrame << endl;
|
Chris@109
|
769 cerr << "duration for transform " << duration << endl;
|
Chris@109
|
770 cerr << "earliestStartFrame becomes " << earliestStartFrame << endl;
|
Chris@109
|
771 cerr << "latestEndFrame becomes " << latestEndFrame << endl;
|
Chris@131
|
772 */
|
Chris@99
|
773 haveExtents = true;
|
Chris@0
|
774
|
Chris@0
|
775 string outputId = transform.getOutput().toStdString();
|
Chris@0
|
776 if (m_pluginOutputs[plugin].find(outputId) ==
|
Chris@0
|
777 m_pluginOutputs[plugin].end()) {
|
Chris@129
|
778 // We shouldn't actually reach this point:
|
Chris@129
|
779 // addFeatureExtractor tests whether the output exists
|
Chris@129
|
780 cerr << "ERROR: Nonexistent plugin output \"" << outputId << "\" requested for transform \""
|
Chris@0
|
781 << transform.getIdentifier().toStdString() << "\", ignoring this transform"
|
Chris@0
|
782 << endl;
|
Chris@0
|
783 /*
|
Chris@0
|
784 cerr << "Known outputs for all plugins are as follows:" << endl;
|
Chris@0
|
785 for (PluginOutputMap::const_iterator k = m_pluginOutputs.begin();
|
Chris@0
|
786 k != m_pluginOutputs.end(); ++k) {
|
Chris@0
|
787 cerr << "Plugin " << k->first << ": ";
|
Chris@0
|
788 if (k->second.empty()) {
|
Chris@0
|
789 cerr << "(none)";
|
Chris@0
|
790 }
|
Chris@0
|
791 for (OutputMap::const_iterator i = k->second.begin();
|
Chris@0
|
792 i != k->second.end(); ++i) {
|
Chris@0
|
793 cerr << "\"" << i->first << "\" ";
|
Chris@0
|
794 }
|
Chris@0
|
795 cerr << endl;
|
Chris@0
|
796 }
|
Chris@0
|
797 */
|
Chris@0
|
798 }
|
Chris@0
|
799 }
|
Chris@0
|
800 }
|
Chris@0
|
801
|
Chris@99
|
802 int startFrame = earliestStartFrame;
|
Chris@99
|
803 int endFrame = latestEndFrame;
|
Chris@0
|
804
|
Chris@109
|
805 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@109
|
806
|
Chris@109
|
807 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
808
|
Chris@0
|
809 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@0
|
810 ti != pi->second.end(); ++ti) {
|
Chris@0
|
811
|
Chris@0
|
812 const vector<FeatureWriter *> &writers = ti->second;
|
Chris@0
|
813
|
Chris@0
|
814 for (int j = 0; j < (int)writers.size(); ++j) {
|
Chris@0
|
815 FeatureWriter::TrackMetadata m;
|
Chris@0
|
816 m.title = reader->getTitle();
|
Chris@0
|
817 m.maker = reader->getMaker();
|
Chris@208
|
818 m.duration = RealTime::frame2RealTime(reader->getFrameCount(),
|
Chris@208
|
819 reader->getSampleRate());
|
Chris@208
|
820 writers[j]->setTrackMetadata(audioSource, m);
|
Chris@0
|
821 }
|
Chris@0
|
822 }
|
Chris@0
|
823 }
|
Chris@0
|
824
|
Chris@0
|
825 ProgressPrinter extractionProgress("Extracting and writing features...");
|
Chris@0
|
826 int progress = 0;
|
Chris@0
|
827
|
Chris@99
|
828 for (int i = startFrame; i < endFrame; i += m_blockSize) {
|
Chris@0
|
829
|
Chris@0
|
830 //!!! inefficient, although much of the inefficiency may be
|
Chris@99
|
831 // susceptible to compiler optimisation
|
Chris@0
|
832
|
Chris@195
|
833 SampleBlock frames = reader->getInterleavedFrames(i, m_blockSize);
|
Chris@0
|
834
|
Chris@0
|
835 // We have to do our own channel handling here; we can't just
|
Chris@0
|
836 // leave it to the plugin adapter because the same plugin
|
Chris@0
|
837 // adapter may have to serve for input files with various
|
Chris@0
|
838 // numbers of channels (so the adapter is simply configured
|
Chris@34
|
839 // with a fixed channel count).
|
Chris@0
|
840
|
Chris@0
|
841 int rc = reader->getChannelCount();
|
Chris@0
|
842
|
Chris@34
|
843 // m_channels is the number of channels we need for the plugin
|
Chris@34
|
844
|
Chris@34
|
845 int index;
|
Chris@34
|
846 int fc = (int)frames.size();
|
Chris@46
|
847
|
Chris@34
|
848 if (m_channels == 1) { // only case in which we can sensibly mix down
|
Chris@34
|
849 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
850 data[0][j] = 0.f;
|
Chris@34
|
851 }
|
Chris@34
|
852 for (int c = 0; c < rc; ++c) {
|
Chris@34
|
853 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@0
|
854 index = j * rc + c;
|
Chris@34
|
855 if (index < fc) data[0][j] += frames[index];
|
Chris@0
|
856 }
|
Chris@0
|
857 }
|
Chris@34
|
858 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
859 data[0][j] /= rc;
|
Chris@34
|
860 }
|
Chris@34
|
861 } else {
|
Chris@34
|
862 for (int c = 0; c < m_channels; ++c) {
|
Chris@34
|
863 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
864 data[c][j] = 0.f;
|
Chris@34
|
865 }
|
Chris@34
|
866 if (c < rc) {
|
Chris@34
|
867 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
868 index = j * rc + c;
|
Chris@34
|
869 if (index < fc) data[c][j] += frames[index];
|
Chris@34
|
870 }
|
Chris@34
|
871 }
|
Chris@34
|
872 }
|
Chris@34
|
873 }
|
Chris@0
|
874
|
Chris@0
|
875 Vamp::RealTime timestamp = Vamp::RealTime::frame2RealTime
|
Chris@0
|
876 (i, m_sampleRate);
|
Chris@0
|
877
|
Chris@109
|
878 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@0
|
879
|
Chris@109
|
880 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@123
|
881
|
Chris@123
|
882 // Skip any plugin none of whose transforms have come
|
Chris@123
|
883 // around yet. (Though actually, all transforms for a
|
Chris@123
|
884 // given plugin must have the same start time -- they can
|
Chris@123
|
885 // only differ in output and summary type.)
|
Chris@123
|
886 bool inRange = false;
|
Chris@123
|
887 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@123
|
888 ti != pi->second.end(); ++ti) {
|
Chris@123
|
889 int startFrame = RealTime::realTime2Frame
|
Chris@123
|
890 (ti->first.getStartTime(), m_sampleRate);
|
Chris@123
|
891 if (i >= startFrame || i + m_blockSize > startFrame) {
|
Chris@123
|
892 inRange = true;
|
Chris@123
|
893 break;
|
Chris@123
|
894 }
|
Chris@123
|
895 }
|
Chris@123
|
896 if (!inRange) {
|
Chris@123
|
897 continue;
|
Chris@123
|
898 }
|
Chris@123
|
899
|
Chris@0
|
900 Plugin::FeatureSet featureSet = plugin->process(data, timestamp);
|
Chris@0
|
901
|
Chris@0
|
902 if (!m_summariesOnly) {
|
Chris@0
|
903 writeFeatures(audioSource, plugin, featureSet);
|
Chris@0
|
904 }
|
Chris@0
|
905 }
|
Chris@0
|
906
|
Chris@0
|
907 int pp = progress;
|
Chris@6
|
908 progress = int(((i - startFrame) * 100.0) / (endFrame - startFrame) + 0.1);
|
Chris@0
|
909 if (progress > pp) extractionProgress.setProgress(progress);
|
Chris@0
|
910 }
|
Chris@10
|
911
|
Chris@22
|
912 // std::cerr << "FeatureExtractionManager: deleting audio file reader" << std::endl;
|
Chris@12
|
913
|
Chris@31
|
914 lifemgr.destroy(); // deletes reader, data
|
Chris@57
|
915
|
Chris@109
|
916 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@57
|
917
|
Chris@109
|
918 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
919 Plugin::FeatureSet featureSet = plugin->getRemainingFeatures();
|
Chris@0
|
920
|
Chris@0
|
921 if (!m_summariesOnly) {
|
Chris@0
|
922 writeFeatures(audioSource, plugin, featureSet);
|
Chris@0
|
923 }
|
Chris@0
|
924
|
Chris@0
|
925 if (!m_summaries.empty()) {
|
Chris@0
|
926 PluginSummarisingAdapter *adapter =
|
Chris@0
|
927 dynamic_cast<PluginSummarisingAdapter *>(plugin);
|
Chris@0
|
928 if (!adapter) {
|
Chris@0
|
929 cerr << "WARNING: Summaries requested, but plugin is not a summarising adapter" << endl;
|
Chris@0
|
930 } else {
|
Chris@0
|
931 for (SummaryNameSet::const_iterator sni = m_summaries.begin();
|
Chris@0
|
932 sni != m_summaries.end(); ++sni) {
|
Chris@0
|
933 featureSet.clear();
|
Chris@0
|
934 //!!! problem here -- we are requesting summaries
|
Chris@0
|
935 //!!! for all outputs, but they in principle have
|
Chris@0
|
936 //!!! different averaging requirements depending
|
Chris@0
|
937 //!!! on whether their features have duration or
|
Chris@0
|
938 //!!! not
|
Chris@0
|
939 featureSet = adapter->getSummaryForAllOutputs
|
Chris@0
|
940 (getSummaryType(*sni),
|
Chris@0
|
941 PluginSummarisingAdapter::ContinuousTimeAverage);
|
Chris@0
|
942 writeFeatures(audioSource, plugin, featureSet,//!!! *sni);
|
Chris@0
|
943 Transform::stringToSummaryType(sni->c_str()));
|
Chris@0
|
944 }
|
Chris@0
|
945 }
|
Chris@0
|
946 }
|
Chris@0
|
947
|
Chris@0
|
948 writeSummaries(audioSource, plugin);
|
Chris@0
|
949 }
|
Chris@0
|
950
|
Chris@3
|
951 extractionProgress.done();
|
Chris@3
|
952
|
Chris@0
|
953 finish();
|
Chris@0
|
954
|
Chris@0
|
955 TempDirectory::getInstance()->cleanup();
|
Chris@0
|
956 }
|
Chris@0
|
957
|
Chris@0
|
958 void
|
Chris@0
|
959 FeatureExtractionManager::writeSummaries(QString audioSource, Plugin *plugin)
|
Chris@0
|
960 {
|
Chris@0
|
961 // caller should have ensured plugin is in m_plugins
|
Chris@0
|
962 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
963
|
Chris@0
|
964 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@0
|
965 ti != pi->second.end(); ++ti) {
|
Chris@0
|
966
|
Chris@0
|
967 const Transform &transform = ti->first;
|
Chris@0
|
968
|
Chris@0
|
969 Transform::SummaryType summaryType = transform.getSummaryType();
|
Chris@0
|
970 PluginSummarisingAdapter::SummaryType pType =
|
Chris@0
|
971 (PluginSummarisingAdapter::SummaryType)summaryType;
|
Chris@0
|
972
|
Chris@0
|
973 if (transform.getSummaryType() == Transform::NoSummary) {
|
Chris@0
|
974 continue;
|
Chris@0
|
975 }
|
Chris@0
|
976
|
Chris@0
|
977 PluginSummarisingAdapter *adapter =
|
Chris@0
|
978 dynamic_cast<PluginSummarisingAdapter *>(plugin);
|
Chris@0
|
979 if (!adapter) {
|
Chris@0
|
980 cerr << "FeatureExtractionManager::writeSummaries: INTERNAL ERROR: Summary requested for transform, but plugin is not a summarising adapter" << endl;
|
Chris@0
|
981 continue;
|
Chris@0
|
982 }
|
Chris@0
|
983
|
Chris@0
|
984 Plugin::FeatureSet featureSet = adapter->getSummaryForAllOutputs
|
Chris@0
|
985 (pType, PluginSummarisingAdapter::ContinuousTimeAverage);
|
Chris@0
|
986
|
Chris@0
|
987 // cout << "summary type " << int(pType) << " for transform:" << endl << transform.toXmlString().toStdString()<< endl << "... feature set with " << featureSet.size() << " elts" << endl;
|
Chris@0
|
988
|
Chris@0
|
989 writeFeatures(audioSource, plugin, featureSet, summaryType);
|
Chris@0
|
990 }
|
Chris@0
|
991 }
|
Chris@0
|
992
|
Chris@0
|
993 void FeatureExtractionManager::writeFeatures(QString audioSource,
|
Chris@0
|
994 Plugin *plugin,
|
Chris@0
|
995 const Plugin::FeatureSet &features,
|
Chris@0
|
996 Transform::SummaryType summaryType)
|
Chris@0
|
997 {
|
Chris@0
|
998 // caller should have ensured plugin is in m_plugins
|
Chris@0
|
999 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
1000
|
Chris@0
|
1001 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@0
|
1002 ti != pi->second.end(); ++ti) {
|
Chris@0
|
1003
|
Chris@0
|
1004 const Transform &transform = ti->first;
|
Chris@0
|
1005 const vector<FeatureWriter *> &writers = ti->second;
|
Chris@0
|
1006
|
Chris@0
|
1007 if (transform.getSummaryType() != Transform::NoSummary &&
|
Chris@0
|
1008 m_summaries.empty() &&
|
Chris@0
|
1009 summaryType == Transform::NoSummary) {
|
Chris@0
|
1010 continue;
|
Chris@0
|
1011 }
|
Chris@0
|
1012
|
Chris@0
|
1013 if (transform.getSummaryType() != Transform::NoSummary &&
|
Chris@0
|
1014 summaryType != Transform::NoSummary &&
|
Chris@0
|
1015 transform.getSummaryType() != summaryType) {
|
Chris@0
|
1016 continue;
|
Chris@0
|
1017 }
|
Chris@0
|
1018
|
Chris@0
|
1019 string outputId = transform.getOutput().toStdString();
|
Chris@0
|
1020
|
Chris@0
|
1021 if (m_pluginOutputs[plugin].find(outputId) ==
|
Chris@0
|
1022 m_pluginOutputs[plugin].end()) {
|
Chris@0
|
1023 continue;
|
Chris@0
|
1024 }
|
Chris@0
|
1025
|
Chris@0
|
1026 const Plugin::OutputDescriptor &desc =
|
Chris@0
|
1027 m_pluginOutputs[plugin][outputId];
|
Chris@0
|
1028
|
Chris@0
|
1029 int outputIndex = m_pluginOutputIndices[outputId];
|
Chris@0
|
1030 Plugin::FeatureSet::const_iterator fsi = features.find(outputIndex);
|
Chris@0
|
1031 if (fsi == features.end()) continue;
|
Chris@0
|
1032
|
Chris@0
|
1033 for (int j = 0; j < (int)writers.size(); ++j) {
|
Chris@0
|
1034 writers[j]->write
|
Chris@0
|
1035 (audioSource, transform, desc, fsi->second,
|
Chris@0
|
1036 Transform::summaryTypeToString(summaryType).toStdString());
|
Chris@0
|
1037 }
|
Chris@0
|
1038 }
|
Chris@0
|
1039 }
|
Chris@0
|
1040
|
Chris@31
|
1041 void FeatureExtractionManager::testOutputFiles(QString audioSource)
|
Chris@31
|
1042 {
|
Chris@31
|
1043 for (PluginMap::iterator pi = m_plugins.begin();
|
Chris@31
|
1044 pi != m_plugins.end(); ++pi) {
|
Chris@31
|
1045
|
Chris@31
|
1046 for (TransformWriterMap::iterator ti = pi->second.begin();
|
Chris@31
|
1047 ti != pi->second.end(); ++ti) {
|
Chris@31
|
1048
|
Chris@31
|
1049 vector<FeatureWriter *> &writers = ti->second;
|
Chris@31
|
1050
|
Chris@31
|
1051 for (int i = 0; i < (int)writers.size(); ++i) {
|
Chris@31
|
1052 writers[i]->testOutputFile(audioSource, ti->first.getIdentifier());
|
Chris@31
|
1053 }
|
Chris@31
|
1054 }
|
Chris@31
|
1055 }
|
Chris@31
|
1056 }
|
Chris@31
|
1057
|
Chris@0
|
1058 void FeatureExtractionManager::finish()
|
Chris@0
|
1059 {
|
Chris@109
|
1060 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@109
|
1061
|
Chris@109
|
1062 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
1063
|
Chris@0
|
1064 for (TransformWriterMap::iterator ti = pi->second.begin();
|
Chris@0
|
1065 ti != pi->second.end(); ++ti) {
|
Chris@0
|
1066
|
Chris@0
|
1067 vector<FeatureWriter *> &writers = ti->second;
|
Chris@0
|
1068
|
Chris@0
|
1069 for (int i = 0; i < (int)writers.size(); ++i) {
|
Chris@0
|
1070 writers[i]->flush();
|
Chris@0
|
1071 writers[i]->finish();
|
Chris@0
|
1072 }
|
Chris@0
|
1073 }
|
Chris@0
|
1074 }
|
Chris@0
|
1075 }
|
Chris@0
|
1076
|
Chris@0
|
1077 void FeatureExtractionManager::print(Transform transform) const
|
Chris@0
|
1078 {
|
Chris@0
|
1079 QString qs;
|
Chris@0
|
1080 QTextStream qts(&qs);
|
Chris@0
|
1081 transform.toXml(qts);
|
Chris@0
|
1082 cerr << qs.toStdString() << endl;
|
Chris@0
|
1083 }
|