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@0
|
236 delete pb;
|
Chris@0
|
237 return false;
|
Chris@0
|
238 }
|
Chris@0
|
239
|
Chris@0
|
240 // We will provide the plugin with arbitrary step and
|
Chris@0
|
241 // block sizes (so that we can use the same read/write
|
Chris@0
|
242 // block size for all transforms), and to that end we use
|
Chris@0
|
243 // a PluginBufferingAdapter. However, we need to know the
|
Chris@0
|
244 // underlying step size so that we can provide the right
|
Chris@0
|
245 // context for dense outputs. (Although, don't forget
|
Chris@0
|
246 // that the PluginBufferingAdapter rewrites
|
Chris@0
|
247 // OneSamplePerStep outputs so as to use FixedSampleRate
|
Chris@0
|
248 // -- so it supplies the sample rate in the output
|
Chris@0
|
249 // feature. I'm not sure whether we can easily use that.)
|
Chris@0
|
250
|
Chris@0
|
251 size_t pluginStepSize = plugin->getPreferredStepSize();
|
Chris@0
|
252 size_t pluginBlockSize = plugin->getPreferredBlockSize();
|
Chris@0
|
253
|
Chris@25
|
254 PluginInputDomainAdapter *pida = 0;
|
Chris@25
|
255
|
Chris@0
|
256 // adapt the plugin for buffering, channels, etc.
|
Chris@0
|
257 if (plugin->getInputDomain() == Plugin::FrequencyDomain) {
|
Chris@51
|
258
|
Chris@25
|
259 pida = new PluginInputDomainAdapter(plugin);
|
Chris@26
|
260 pida->setProcessTimestampMethod(PluginInputDomainAdapter::ShiftData);
|
Chris@51
|
261
|
Chris@51
|
262 PluginInputDomainAdapter::WindowType wtype =
|
Chris@51
|
263 convertWindowType(transform.getWindowType());
|
Chris@51
|
264 pida->setWindowType(wtype);
|
Chris@25
|
265 plugin = pida;
|
Chris@0
|
266 }
|
Chris@0
|
267
|
Chris@0
|
268 PluginBufferingAdapter *pba = new PluginBufferingAdapter(plugin);
|
Chris@0
|
269 plugin = pba;
|
Chris@0
|
270
|
Chris@0
|
271 if (transform.getStepSize() != 0) {
|
Chris@0
|
272 pba->setPluginStepSize(transform.getStepSize());
|
Chris@0
|
273 } else {
|
Chris@0
|
274 transform.setStepSize(pluginStepSize);
|
Chris@0
|
275 }
|
Chris@0
|
276
|
Chris@0
|
277 if (transform.getBlockSize() != 0) {
|
Chris@0
|
278 pba->setPluginBlockSize(transform.getBlockSize());
|
Chris@0
|
279 } else {
|
Chris@0
|
280 transform.setBlockSize(pluginBlockSize);
|
Chris@0
|
281 }
|
Chris@0
|
282
|
Chris@0
|
283 plugin = new PluginChannelAdapter(plugin);
|
Chris@0
|
284
|
Chris@0
|
285 if (!m_summaries.empty() ||
|
Chris@0
|
286 transform.getSummaryType() != Transform::NoSummary) {
|
Chris@0
|
287 PluginSummarisingAdapter *adapter =
|
Chris@0
|
288 new PluginSummarisingAdapter(plugin);
|
Chris@0
|
289 adapter->setSummarySegmentBoundaries(m_boundaries);
|
Chris@0
|
290 plugin = adapter;
|
Chris@0
|
291 }
|
Chris@0
|
292
|
Chris@0
|
293 if (!plugin->initialise(m_channels, m_blockSize, m_blockSize)) {
|
Chris@0
|
294 cerr << "ERROR: Plugin initialise (channels = " << m_channels << ", stepSize = " << m_blockSize << ", blockSize = " << m_blockSize << ") failed." << endl;
|
Chris@0
|
295 delete plugin;
|
Chris@0
|
296 return false;
|
Chris@0
|
297 }
|
Chris@0
|
298
|
Chris@0
|
299 // cerr << "Initialised plugin" << endl;
|
Chris@0
|
300
|
Chris@0
|
301 size_t actualStepSize = 0;
|
Chris@0
|
302 size_t actualBlockSize = 0;
|
Chris@0
|
303 pba->getActualStepAndBlockSizes(actualStepSize, actualBlockSize);
|
Chris@0
|
304 transform.setStepSize(actualStepSize);
|
Chris@0
|
305 transform.setBlockSize(actualBlockSize);
|
Chris@0
|
306
|
Chris@0
|
307 Plugin::OutputList outputs = plugin->getOutputDescriptors();
|
Chris@0
|
308 for (int i = 0; i < (int)outputs.size(); ++i) {
|
Chris@0
|
309
|
Chris@0
|
310 // cerr << "Newly initialised plugin output " << i << " has bin count " << outputs[i].binCount << endl;
|
Chris@0
|
311
|
Chris@0
|
312 m_pluginOutputs[plugin][outputs[i].identifier] = outputs[i];
|
Chris@0
|
313 m_pluginOutputIndices[outputs[i].identifier] = i;
|
Chris@0
|
314 }
|
Chris@0
|
315
|
Chris@10
|
316 cerr << "NOTE: Loaded and initialised plugin for transform \""
|
Chris@25
|
317 << transform.getIdentifier().toStdString()
|
Chris@25
|
318 << "\" with plugin step size " << actualStepSize
|
Chris@25
|
319 << " and block size " << actualBlockSize
|
Chris@25
|
320 << " (adapter step and block size " << m_blockSize << ")"
|
Chris@25
|
321 << endl;
|
Chris@25
|
322
|
Chris@25
|
323 if (pida) {
|
Chris@25
|
324 cerr << "NOTE: PluginInputDomainAdapter timestamp adjustment is "
|
Chris@25
|
325
|
Chris@25
|
326 << pida->getTimestampAdjustment() << endl;
|
Chris@25
|
327 }
|
Chris@8
|
328
|
Chris@8
|
329 } else {
|
Chris@8
|
330
|
Chris@8
|
331 if (transform.getStepSize() == 0 || transform.getBlockSize() == 0) {
|
Chris@8
|
332
|
Chris@8
|
333 PluginWrapper *pw = dynamic_cast<PluginWrapper *>(plugin);
|
Chris@8
|
334 if (pw) {
|
Chris@8
|
335 PluginBufferingAdapter *pba =
|
Chris@8
|
336 pw->getWrapper<PluginBufferingAdapter>();
|
Chris@8
|
337 if (pba) {
|
Chris@8
|
338 size_t actualStepSize = 0;
|
Chris@8
|
339 size_t actualBlockSize = 0;
|
Chris@8
|
340 pba->getActualStepAndBlockSizes(actualStepSize,
|
Chris@8
|
341 actualBlockSize);
|
Chris@8
|
342 if (transform.getStepSize() == 0) {
|
Chris@8
|
343 transform.setStepSize(actualStepSize);
|
Chris@8
|
344 }
|
Chris@8
|
345 if (transform.getBlockSize() == 0) {
|
Chris@8
|
346 transform.setBlockSize(actualBlockSize);
|
Chris@8
|
347 }
|
Chris@8
|
348 }
|
Chris@8
|
349 }
|
Chris@8
|
350 }
|
Chris@0
|
351 }
|
Chris@0
|
352
|
Chris@130
|
353 if (transform.getPluginVersion() != "") {
|
Chris@130
|
354 if (QString("%1").arg(plugin->getPluginVersion())
|
Chris@130
|
355 != transform.getPluginVersion()) {
|
Chris@130
|
356 cerr << "ERROR: Transform specifies version "
|
Chris@130
|
357 << transform.getPluginVersion()
|
Chris@130
|
358 << " of plugin \"" << plugin->getIdentifier()
|
Chris@130
|
359 << "\", but installed plugin is version "
|
Chris@130
|
360 << plugin->getPluginVersion()
|
Chris@130
|
361 << endl;
|
Chris@130
|
362 return false;
|
Chris@130
|
363 }
|
Chris@130
|
364 }
|
Chris@130
|
365
|
Chris@0
|
366 if (transform.getOutput() == "") {
|
Chris@0
|
367 transform.setOutput
|
Chris@0
|
368 (plugin->getOutputDescriptors()[0].identifier.c_str());
|
Chris@129
|
369 } else {
|
Chris@129
|
370 if (m_pluginOutputs[plugin].find
|
Chris@129
|
371 (transform.getOutput().toLocal8Bit().data()) ==
|
Chris@129
|
372 m_pluginOutputs[plugin].end()) {
|
Chris@129
|
373 cerr << "ERROR: Transform requests nonexistent plugin output \""
|
Chris@129
|
374 << transform.getOutput()
|
Chris@129
|
375 << "\"" << endl;
|
Chris@129
|
376 return false;
|
Chris@129
|
377 }
|
Chris@0
|
378 }
|
Chris@0
|
379
|
Chris@0
|
380 m_transformPluginMap[transform] = plugin;
|
Chris@0
|
381
|
Chris@0
|
382 if (!(originalTransform == transform)) {
|
Chris@0
|
383 m_transformPluginMap[originalTransform] = plugin;
|
Chris@0
|
384 }
|
Chris@0
|
385
|
Chris@0
|
386 } else {
|
Chris@0
|
387
|
Chris@0
|
388 plugin = m_transformPluginMap[transform];
|
Chris@0
|
389 }
|
Chris@0
|
390
|
Chris@109
|
391 if (m_plugins.find(plugin) == m_plugins.end()) {
|
Chris@109
|
392 m_orderedPlugins.push_back(plugin);
|
Chris@109
|
393 }
|
Chris@109
|
394
|
Chris@0
|
395 m_plugins[plugin][transform] = writers;
|
Chris@0
|
396
|
Chris@0
|
397 return true;
|
Chris@0
|
398 }
|
Chris@0
|
399
|
Chris@0
|
400 bool FeatureExtractionManager::addDefaultFeatureExtractor
|
Chris@0
|
401 (TransformId transformId, const vector<FeatureWriter*> &writers)
|
Chris@0
|
402 {
|
Chris@0
|
403 TransformFactory *tf = TransformFactory::getInstance();
|
Chris@0
|
404
|
Chris@0
|
405 if (m_sampleRate == 0) {
|
Chris@0
|
406 if (m_defaultSampleRate == 0) {
|
Chris@0
|
407 cerr << "ERROR: Default transform requested, but no default sample rate available" << endl;
|
Chris@0
|
408 return false;
|
Chris@0
|
409 } else {
|
Chris@0
|
410 cerr << "NOTE: Using default sample rate of " << m_defaultSampleRate << " for default transform" << endl;
|
Chris@0
|
411 m_sampleRate = m_defaultSampleRate;
|
Chris@0
|
412 }
|
Chris@0
|
413 }
|
Chris@0
|
414
|
Chris@0
|
415 Transform transform = tf->getDefaultTransformFor(transformId, m_sampleRate);
|
Chris@0
|
416
|
Chris@0
|
417 return addFeatureExtractor(transform, writers);
|
Chris@0
|
418 }
|
Chris@0
|
419
|
Chris@0
|
420 bool FeatureExtractionManager::addFeatureExtractorFromFile
|
Chris@0
|
421 (QString transformXmlFile, const vector<FeatureWriter*> &writers)
|
Chris@0
|
422 {
|
Chris@99
|
423 bool tryRdf = true;
|
Chris@99
|
424
|
Chris@99
|
425 if (transformXmlFile.endsWith(".xml") || transformXmlFile.endsWith(".XML")) {
|
Chris@99
|
426 // We don't support RDF-XML (and nor does the underlying
|
Chris@99
|
427 // parser library) so skip the RDF parse if the filename
|
Chris@99
|
428 // suggests XML, to avoid puking out a load of errors from
|
Chris@99
|
429 // feeding XML to a Turtle parser
|
Chris@99
|
430 tryRdf = false;
|
Chris@0
|
431 }
|
Chris@99
|
432
|
Chris@99
|
433 if (tryRdf) {
|
Chris@99
|
434 RDFTransformFactory factory
|
Chris@99
|
435 (QUrl::fromLocalFile(QFileInfo(transformXmlFile).absoluteFilePath())
|
Chris@99
|
436 .toString());
|
Chris@99
|
437 ProgressPrinter printer("Parsing transforms RDF file");
|
Chris@99
|
438 std::vector<Transform> transforms = factory.getTransforms(&printer);
|
Chris@99
|
439 if (!factory.isOK()) {
|
Chris@99
|
440 cerr << "WARNING: FeatureExtractionManager::addFeatureExtractorFromFile: Failed to parse transforms file: " << factory.getErrorString().toStdString() << endl;
|
Chris@99
|
441 if (factory.isRDF()) {
|
Chris@99
|
442 return false; // no point trying it as XML
|
Chris@0
|
443 }
|
Chris@0
|
444 }
|
Chris@99
|
445 if (!transforms.empty()) {
|
Chris@99
|
446 bool success = true;
|
Chris@99
|
447 for (int i = 0; i < (int)transforms.size(); ++i) {
|
Chris@99
|
448 if (!addFeatureExtractor(transforms[i], writers)) {
|
Chris@99
|
449 success = false;
|
Chris@99
|
450 }
|
Chris@99
|
451 }
|
Chris@99
|
452 return success;
|
Chris@99
|
453 }
|
Chris@0
|
454 }
|
Chris@0
|
455
|
Chris@0
|
456 QFile file(transformXmlFile);
|
Chris@0
|
457 if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
Chris@0
|
458 cerr << "ERROR: Failed to open transform XML file \""
|
Chris@0
|
459 << transformXmlFile.toStdString() << "\" for reading" << endl;
|
Chris@0
|
460 return false;
|
Chris@0
|
461 }
|
Chris@0
|
462
|
Chris@0
|
463 QTextStream *qts = new QTextStream(&file);
|
Chris@0
|
464 QString qs = qts->readAll();
|
Chris@0
|
465 delete qts;
|
Chris@0
|
466 file.close();
|
Chris@0
|
467
|
Chris@0
|
468 Transform transform(qs);
|
Chris@0
|
469
|
Chris@0
|
470 return addFeatureExtractor(transform, writers);
|
Chris@0
|
471 }
|
Chris@0
|
472
|
Chris@106
|
473 void FeatureExtractionManager::addSource(QString audioSource, bool willMultiplex)
|
Chris@0
|
474 {
|
Chris@45
|
475 std::cerr << "Have audio source: \"" << audioSource.toStdString() << "\"" << std::endl;
|
Chris@45
|
476
|
Chris@45
|
477 // We don't actually do anything with it here, unless it's the
|
Chris@45
|
478 // first audio source and we need it to establish default channel
|
Chris@45
|
479 // count and sample rate
|
Chris@45
|
480
|
Chris@45
|
481 if (m_channels == 0 || m_defaultSampleRate == 0) {
|
Chris@45
|
482
|
Chris@45
|
483 ProgressPrinter retrievalProgress("Determining default rate and channel count from first input file...");
|
Chris@45
|
484
|
Chris@45
|
485 FileSource source(audioSource, &retrievalProgress);
|
Chris@45
|
486 if (!source.isAvailable()) {
|
Chris@45
|
487 cerr << "ERROR: File or URL \"" << audioSource.toStdString()
|
Chris@117
|
488 << "\" could not be located";
|
Chris@117
|
489 if (source.getErrorString() != "") {
|
Chris@117
|
490 cerr << ": " << source.getErrorString();
|
Chris@117
|
491 }
|
Chris@117
|
492 cerr << endl;
|
Chris@45
|
493 throw FileNotFound(audioSource);
|
Chris@45
|
494 }
|
Chris@45
|
495
|
Chris@45
|
496 source.waitForData();
|
Chris@45
|
497
|
Chris@45
|
498 // Open to determine validity, channel count, sample rate only
|
Chris@45
|
499 // (then close, and open again later with actual desired rate &c)
|
Chris@45
|
500
|
Chris@45
|
501 AudioFileReader *reader =
|
Chris@116
|
502 AudioFileReaderFactory::createReader(source, 0,
|
Chris@116
|
503 m_normalise,
|
Chris@95
|
504 &retrievalProgress);
|
Chris@45
|
505
|
Chris@45
|
506 if (!reader) {
|
Chris@45
|
507 throw FailedToOpenFile(audioSource);
|
Chris@45
|
508 }
|
Chris@45
|
509
|
Chris@45
|
510 retrievalProgress.done();
|
Chris@45
|
511
|
Chris@45
|
512 cerr << "File or URL \"" << audioSource.toStdString() << "\" opened successfully" << endl;
|
Chris@45
|
513
|
Chris@113
|
514 if (!willMultiplex) {
|
Chris@106
|
515 if (m_channels == 0) {
|
Chris@106
|
516 m_channels = reader->getChannelCount();
|
Chris@106
|
517 cerr << "Taking default channel count of "
|
Chris@106
|
518 << reader->getChannelCount() << " from file" << endl;
|
Chris@106
|
519 }
|
Chris@45
|
520 }
|
Chris@45
|
521
|
Chris@45
|
522 if (m_defaultSampleRate == 0) {
|
Chris@45
|
523 m_defaultSampleRate = reader->getNativeRate();
|
Chris@45
|
524 cerr << "Taking default sample rate of "
|
Chris@45
|
525 << reader->getNativeRate() << "Hz from file" << endl;
|
Chris@45
|
526 cerr << "(Note: Default may be overridden by transforms)" << endl;
|
Chris@45
|
527 }
|
Chris@45
|
528
|
Chris@45
|
529 m_readyReaders[audioSource] = reader;
|
Chris@45
|
530 }
|
Chris@113
|
531
|
Chris@113
|
532 if (willMultiplex) {
|
Chris@113
|
533 ++m_channels; // channel count is simply number of sources
|
Chris@113
|
534 cerr << "Multiplexing, incremented target channel count to "
|
Chris@113
|
535 << m_channels << endl;
|
Chris@113
|
536 }
|
Chris@45
|
537 }
|
Chris@45
|
538
|
Chris@112
|
539 void FeatureExtractionManager::extractFeatures(QString audioSource)
|
Chris@45
|
540 {
|
Chris@45
|
541 if (m_plugins.empty()) return;
|
Chris@45
|
542
|
Chris@45
|
543 testOutputFiles(audioSource);
|
Chris@45
|
544
|
Chris@0
|
545 if (m_sampleRate == 0) {
|
Chris@45
|
546 throw FileOperationFailed
|
Chris@45
|
547 (audioSource, "internal error: have sources and plugins, but no sample rate");
|
Chris@45
|
548 }
|
Chris@45
|
549 if (m_channels == 0) {
|
Chris@45
|
550 throw FileOperationFailed
|
Chris@45
|
551 (audioSource, "internal error: have sources and plugins, but no channel count");
|
Chris@0
|
552 }
|
Chris@0
|
553
|
Chris@106
|
554 AudioFileReader *reader = prepareReader(audioSource);
|
Chris@106
|
555 extractFeaturesFor(reader, audioSource); // Note this also deletes reader
|
Chris@106
|
556 }
|
Chris@102
|
557
|
Chris@106
|
558 void FeatureExtractionManager::extractFeaturesMultiplexed(QStringList sources)
|
Chris@106
|
559 {
|
Chris@106
|
560 if (m_plugins.empty() || sources.empty()) return;
|
Chris@106
|
561
|
Chris@106
|
562 QString nominalSource = sources[0];
|
Chris@106
|
563
|
Chris@106
|
564 testOutputFiles(nominalSource);
|
Chris@106
|
565
|
Chris@106
|
566 if (m_sampleRate == 0) {
|
Chris@106
|
567 throw FileOperationFailed
|
Chris@106
|
568 (nominalSource, "internal error: have sources and plugins, but no sample rate");
|
Chris@106
|
569 }
|
Chris@106
|
570 if (m_channels == 0) {
|
Chris@106
|
571 throw FileOperationFailed
|
Chris@106
|
572 (nominalSource, "internal error: have sources and plugins, but no channel count");
|
Chris@106
|
573 }
|
Chris@106
|
574
|
Chris@106
|
575 QList<AudioFileReader *> readers;
|
Chris@106
|
576 foreach (QString source, sources) {
|
Chris@106
|
577 AudioFileReader *reader = prepareReader(source);
|
Chris@106
|
578 readers.push_back(reader);
|
Chris@106
|
579 }
|
Chris@106
|
580
|
Chris@106
|
581 AudioFileReader *reader = new MultiplexedReader(readers);
|
Chris@106
|
582 extractFeaturesFor(reader, nominalSource); // Note this also deletes reader
|
Chris@106
|
583 }
|
Chris@106
|
584
|
Chris@106
|
585 AudioFileReader *
|
Chris@106
|
586 FeatureExtractionManager::prepareReader(QString source)
|
Chris@106
|
587 {
|
Chris@45
|
588 AudioFileReader *reader = 0;
|
Chris@106
|
589 if (m_readyReaders.contains(source)) {
|
Chris@106
|
590 reader = m_readyReaders[source];
|
Chris@106
|
591 m_readyReaders.remove(source);
|
Chris@106
|
592 if (reader->getSampleRate() != m_sampleRate) {
|
Chris@45
|
593 // can't use this; open it again
|
Chris@45
|
594 delete reader;
|
Chris@45
|
595 reader = 0;
|
Chris@45
|
596 }
|
Chris@45
|
597 }
|
Chris@45
|
598 if (!reader) {
|
Chris@45
|
599 ProgressPrinter retrievalProgress("Retrieving audio data...");
|
Chris@106
|
600 FileSource fs(source, &retrievalProgress);
|
Chris@106
|
601 fs.waitForData();
|
Chris@116
|
602 reader = AudioFileReaderFactory::createReader(fs, m_sampleRate,
|
Chris@116
|
603 m_normalise,
|
Chris@116
|
604 &retrievalProgress);
|
Chris@45
|
605 retrievalProgress.done();
|
Chris@45
|
606 }
|
Chris@102
|
607 if (!reader) {
|
Chris@107
|
608 throw FailedToOpenFile(source);
|
Chris@102
|
609 }
|
Chris@106
|
610 return reader;
|
Chris@106
|
611 }
|
Chris@45
|
612
|
Chris@106
|
613 void
|
Chris@106
|
614 FeatureExtractionManager::extractFeaturesFor(AudioFileReader *reader,
|
Chris@106
|
615 QString audioSource)
|
Chris@106
|
616 {
|
Chris@106
|
617 // Note: This also deletes reader
|
Chris@0
|
618
|
Chris@45
|
619 cerr << "Audio file \"" << audioSource.toStdString() << "\": "
|
Chris@45
|
620 << reader->getChannelCount() << "ch at "
|
Chris@45
|
621 << reader->getNativeRate() << "Hz" << endl;
|
Chris@45
|
622 if (reader->getChannelCount() != m_channels ||
|
Chris@45
|
623 reader->getNativeRate() != m_sampleRate) {
|
Chris@113
|
624 cerr << "NOTE: File will be mixed or resampled for processing, to: "
|
Chris@45
|
625 << m_channels << "ch at "
|
Chris@45
|
626 << m_sampleRate << "Hz" << endl;
|
Chris@45
|
627 }
|
Chris@11
|
628
|
Chris@0
|
629 // allocate audio buffers
|
Chris@0
|
630 float **data = new float *[m_channels];
|
Chris@0
|
631 for (int c = 0; c < m_channels; ++c) {
|
Chris@0
|
632 data[c] = new float[m_blockSize];
|
Chris@0
|
633 }
|
Chris@31
|
634
|
Chris@31
|
635 struct LifespanMgr { // unintrusive hack introduced to ensure
|
Chris@31
|
636 // destruction on exceptions
|
Chris@31
|
637 AudioFileReader *m_r;
|
Chris@31
|
638 int m_c;
|
Chris@31
|
639 float **m_d;
|
Chris@31
|
640 LifespanMgr(AudioFileReader *r, int c, float **d) :
|
Chris@31
|
641 m_r(r), m_c(c), m_d(d) { }
|
Chris@31
|
642 ~LifespanMgr() { destroy(); }
|
Chris@31
|
643 void destroy() {
|
Chris@31
|
644 if (!m_r) return;
|
Chris@31
|
645 delete m_r;
|
Chris@31
|
646 for (int i = 0; i < m_c; ++i) delete[] m_d[i];
|
Chris@31
|
647 delete[] m_d;
|
Chris@31
|
648 m_r = 0;
|
Chris@31
|
649 }
|
Chris@31
|
650 };
|
Chris@31
|
651 LifespanMgr lifemgr(reader, m_channels, data);
|
Chris@0
|
652
|
Chris@0
|
653 size_t frameCount = reader->getFrameCount();
|
Chris@0
|
654
|
Chris@0
|
655 // cerr << "file has " << frameCount << " frames" << endl;
|
Chris@0
|
656
|
Chris@99
|
657 int earliestStartFrame = 0;
|
Chris@99
|
658 int latestEndFrame = frameCount;
|
Chris@99
|
659 bool haveExtents = false;
|
Chris@99
|
660
|
Chris@109
|
661 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@0
|
662
|
Chris@109
|
663 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
664
|
Chris@109
|
665 std::cerr << "Calling reset on " << plugin << std::endl;
|
Chris@0
|
666 plugin->reset();
|
Chris@0
|
667
|
Chris@0
|
668 for (TransformWriterMap::iterator ti = pi->second.begin();
|
Chris@0
|
669 ti != pi->second.end(); ++ti) {
|
Chris@0
|
670
|
Chris@0
|
671 const Transform &transform = ti->first;
|
Chris@0
|
672
|
Chris@99
|
673 int startFrame = RealTime::realTime2Frame
|
Chris@99
|
674 (transform.getStartTime(), m_sampleRate);
|
Chris@99
|
675 int duration = RealTime::realTime2Frame
|
Chris@99
|
676 (transform.getDuration(), m_sampleRate);
|
Chris@99
|
677 if (duration == 0) {
|
Chris@99
|
678 duration = frameCount - startFrame;
|
Chris@99
|
679 }
|
Chris@99
|
680
|
Chris@99
|
681 if (!haveExtents || startFrame < earliestStartFrame) {
|
Chris@99
|
682 earliestStartFrame = startFrame;
|
Chris@99
|
683 }
|
Chris@99
|
684 if (!haveExtents || startFrame + duration > latestEndFrame) {
|
Chris@99
|
685 latestEndFrame = startFrame + duration;
|
Chris@99
|
686 }
|
Chris@131
|
687 /*
|
Chris@109
|
688 cerr << "startFrame for transform " << startFrame << endl;
|
Chris@109
|
689 cerr << "duration for transform " << duration << endl;
|
Chris@109
|
690 cerr << "earliestStartFrame becomes " << earliestStartFrame << endl;
|
Chris@109
|
691 cerr << "latestEndFrame becomes " << latestEndFrame << endl;
|
Chris@131
|
692 */
|
Chris@99
|
693 haveExtents = true;
|
Chris@0
|
694
|
Chris@0
|
695 string outputId = transform.getOutput().toStdString();
|
Chris@0
|
696 if (m_pluginOutputs[plugin].find(outputId) ==
|
Chris@0
|
697 m_pluginOutputs[plugin].end()) {
|
Chris@129
|
698 // We shouldn't actually reach this point:
|
Chris@129
|
699 // addFeatureExtractor tests whether the output exists
|
Chris@129
|
700 cerr << "ERROR: Nonexistent plugin output \"" << outputId << "\" requested for transform \""
|
Chris@0
|
701 << transform.getIdentifier().toStdString() << "\", ignoring this transform"
|
Chris@0
|
702 << endl;
|
Chris@0
|
703 /*
|
Chris@0
|
704 cerr << "Known outputs for all plugins are as follows:" << endl;
|
Chris@0
|
705 for (PluginOutputMap::const_iterator k = m_pluginOutputs.begin();
|
Chris@0
|
706 k != m_pluginOutputs.end(); ++k) {
|
Chris@0
|
707 cerr << "Plugin " << k->first << ": ";
|
Chris@0
|
708 if (k->second.empty()) {
|
Chris@0
|
709 cerr << "(none)";
|
Chris@0
|
710 }
|
Chris@0
|
711 for (OutputMap::const_iterator i = k->second.begin();
|
Chris@0
|
712 i != k->second.end(); ++i) {
|
Chris@0
|
713 cerr << "\"" << i->first << "\" ";
|
Chris@0
|
714 }
|
Chris@0
|
715 cerr << endl;
|
Chris@0
|
716 }
|
Chris@0
|
717 */
|
Chris@0
|
718 }
|
Chris@0
|
719 }
|
Chris@0
|
720 }
|
Chris@0
|
721
|
Chris@99
|
722 int startFrame = earliestStartFrame;
|
Chris@99
|
723 int endFrame = latestEndFrame;
|
Chris@0
|
724
|
Chris@109
|
725 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@109
|
726
|
Chris@109
|
727 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
728
|
Chris@0
|
729 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@0
|
730 ti != pi->second.end(); ++ti) {
|
Chris@0
|
731
|
Chris@0
|
732 const vector<FeatureWriter *> &writers = ti->second;
|
Chris@0
|
733
|
Chris@0
|
734 for (int j = 0; j < (int)writers.size(); ++j) {
|
Chris@0
|
735 FeatureWriter::TrackMetadata m;
|
Chris@0
|
736 m.title = reader->getTitle();
|
Chris@0
|
737 m.maker = reader->getMaker();
|
Chris@162
|
738 if (m.title != "" || m.maker != "") {
|
Chris@19
|
739 writers[j]->setTrackMetadata(audioSource, m);
|
Chris@19
|
740 }
|
Chris@0
|
741 }
|
Chris@0
|
742 }
|
Chris@0
|
743 }
|
Chris@0
|
744
|
Chris@0
|
745 ProgressPrinter extractionProgress("Extracting and writing features...");
|
Chris@0
|
746 int progress = 0;
|
Chris@0
|
747
|
Chris@99
|
748 for (int i = startFrame; i < endFrame; i += m_blockSize) {
|
Chris@0
|
749
|
Chris@0
|
750 //!!! inefficient, although much of the inefficiency may be
|
Chris@99
|
751 // susceptible to compiler optimisation
|
Chris@0
|
752
|
Chris@0
|
753 SampleBlock frames;
|
Chris@0
|
754 reader->getInterleavedFrames(i, m_blockSize, frames);
|
Chris@0
|
755
|
Chris@0
|
756 // We have to do our own channel handling here; we can't just
|
Chris@0
|
757 // leave it to the plugin adapter because the same plugin
|
Chris@0
|
758 // adapter may have to serve for input files with various
|
Chris@0
|
759 // numbers of channels (so the adapter is simply configured
|
Chris@34
|
760 // with a fixed channel count).
|
Chris@0
|
761
|
Chris@0
|
762 int rc = reader->getChannelCount();
|
Chris@0
|
763
|
Chris@34
|
764 // m_channels is the number of channels we need for the plugin
|
Chris@34
|
765
|
Chris@34
|
766 int index;
|
Chris@34
|
767 int fc = (int)frames.size();
|
Chris@46
|
768
|
Chris@34
|
769 if (m_channels == 1) { // only case in which we can sensibly mix down
|
Chris@34
|
770 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
771 data[0][j] = 0.f;
|
Chris@34
|
772 }
|
Chris@34
|
773 for (int c = 0; c < rc; ++c) {
|
Chris@34
|
774 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@0
|
775 index = j * rc + c;
|
Chris@34
|
776 if (index < fc) data[0][j] += frames[index];
|
Chris@0
|
777 }
|
Chris@0
|
778 }
|
Chris@34
|
779 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
780 data[0][j] /= rc;
|
Chris@34
|
781 }
|
Chris@34
|
782 } else {
|
Chris@34
|
783 for (int c = 0; c < m_channels; ++c) {
|
Chris@34
|
784 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
785 data[c][j] = 0.f;
|
Chris@34
|
786 }
|
Chris@34
|
787 if (c < rc) {
|
Chris@34
|
788 for (int j = 0; j < m_blockSize; ++j) {
|
Chris@34
|
789 index = j * rc + c;
|
Chris@34
|
790 if (index < fc) data[c][j] += frames[index];
|
Chris@34
|
791 }
|
Chris@34
|
792 }
|
Chris@34
|
793 }
|
Chris@34
|
794 }
|
Chris@0
|
795
|
Chris@0
|
796 Vamp::RealTime timestamp = Vamp::RealTime::frame2RealTime
|
Chris@0
|
797 (i, m_sampleRate);
|
Chris@0
|
798
|
Chris@109
|
799 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@0
|
800
|
Chris@109
|
801 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@123
|
802
|
Chris@123
|
803 // Skip any plugin none of whose transforms have come
|
Chris@123
|
804 // around yet. (Though actually, all transforms for a
|
Chris@123
|
805 // given plugin must have the same start time -- they can
|
Chris@123
|
806 // only differ in output and summary type.)
|
Chris@123
|
807 bool inRange = false;
|
Chris@123
|
808 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@123
|
809 ti != pi->second.end(); ++ti) {
|
Chris@123
|
810 int startFrame = RealTime::realTime2Frame
|
Chris@123
|
811 (ti->first.getStartTime(), m_sampleRate);
|
Chris@123
|
812 if (i >= startFrame || i + m_blockSize > startFrame) {
|
Chris@123
|
813 inRange = true;
|
Chris@123
|
814 break;
|
Chris@123
|
815 }
|
Chris@123
|
816 }
|
Chris@123
|
817 if (!inRange) {
|
Chris@123
|
818 continue;
|
Chris@123
|
819 }
|
Chris@123
|
820
|
Chris@0
|
821 Plugin::FeatureSet featureSet = plugin->process(data, timestamp);
|
Chris@0
|
822
|
Chris@0
|
823 if (!m_summariesOnly) {
|
Chris@0
|
824 writeFeatures(audioSource, plugin, featureSet);
|
Chris@0
|
825 }
|
Chris@0
|
826 }
|
Chris@0
|
827
|
Chris@0
|
828 int pp = progress;
|
Chris@6
|
829 progress = int(((i - startFrame) * 100.0) / (endFrame - startFrame) + 0.1);
|
Chris@0
|
830 if (progress > pp) extractionProgress.setProgress(progress);
|
Chris@0
|
831 }
|
Chris@10
|
832
|
Chris@22
|
833 // std::cerr << "FeatureExtractionManager: deleting audio file reader" << std::endl;
|
Chris@12
|
834
|
Chris@31
|
835 lifemgr.destroy(); // deletes reader, data
|
Chris@57
|
836
|
Chris@109
|
837 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@57
|
838
|
Chris@109
|
839 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
840 Plugin::FeatureSet featureSet = plugin->getRemainingFeatures();
|
Chris@0
|
841
|
Chris@0
|
842 if (!m_summariesOnly) {
|
Chris@0
|
843 writeFeatures(audioSource, plugin, featureSet);
|
Chris@0
|
844 }
|
Chris@0
|
845
|
Chris@0
|
846 if (!m_summaries.empty()) {
|
Chris@0
|
847 PluginSummarisingAdapter *adapter =
|
Chris@0
|
848 dynamic_cast<PluginSummarisingAdapter *>(plugin);
|
Chris@0
|
849 if (!adapter) {
|
Chris@0
|
850 cerr << "WARNING: Summaries requested, but plugin is not a summarising adapter" << endl;
|
Chris@0
|
851 } else {
|
Chris@0
|
852 for (SummaryNameSet::const_iterator sni = m_summaries.begin();
|
Chris@0
|
853 sni != m_summaries.end(); ++sni) {
|
Chris@0
|
854 featureSet.clear();
|
Chris@0
|
855 //!!! problem here -- we are requesting summaries
|
Chris@0
|
856 //!!! for all outputs, but they in principle have
|
Chris@0
|
857 //!!! different averaging requirements depending
|
Chris@0
|
858 //!!! on whether their features have duration or
|
Chris@0
|
859 //!!! not
|
Chris@0
|
860 featureSet = adapter->getSummaryForAllOutputs
|
Chris@0
|
861 (getSummaryType(*sni),
|
Chris@0
|
862 PluginSummarisingAdapter::ContinuousTimeAverage);
|
Chris@0
|
863 writeFeatures(audioSource, plugin, featureSet,//!!! *sni);
|
Chris@0
|
864 Transform::stringToSummaryType(sni->c_str()));
|
Chris@0
|
865 }
|
Chris@0
|
866 }
|
Chris@0
|
867 }
|
Chris@0
|
868
|
Chris@0
|
869 writeSummaries(audioSource, plugin);
|
Chris@0
|
870 }
|
Chris@0
|
871
|
Chris@3
|
872 extractionProgress.done();
|
Chris@3
|
873
|
Chris@0
|
874 finish();
|
Chris@0
|
875
|
Chris@0
|
876 TempDirectory::getInstance()->cleanup();
|
Chris@0
|
877 }
|
Chris@0
|
878
|
Chris@0
|
879 void
|
Chris@0
|
880 FeatureExtractionManager::writeSummaries(QString audioSource, Plugin *plugin)
|
Chris@0
|
881 {
|
Chris@0
|
882 // caller should have ensured plugin is in m_plugins
|
Chris@0
|
883 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
884
|
Chris@0
|
885 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@0
|
886 ti != pi->second.end(); ++ti) {
|
Chris@0
|
887
|
Chris@0
|
888 const Transform &transform = ti->first;
|
Chris@0
|
889 const vector<FeatureWriter *> &writers = ti->second;
|
Chris@0
|
890
|
Chris@0
|
891 Transform::SummaryType summaryType = transform.getSummaryType();
|
Chris@0
|
892 PluginSummarisingAdapter::SummaryType pType =
|
Chris@0
|
893 (PluginSummarisingAdapter::SummaryType)summaryType;
|
Chris@0
|
894
|
Chris@0
|
895 if (transform.getSummaryType() == Transform::NoSummary) {
|
Chris@0
|
896 continue;
|
Chris@0
|
897 }
|
Chris@0
|
898
|
Chris@0
|
899 PluginSummarisingAdapter *adapter =
|
Chris@0
|
900 dynamic_cast<PluginSummarisingAdapter *>(plugin);
|
Chris@0
|
901 if (!adapter) {
|
Chris@0
|
902 cerr << "FeatureExtractionManager::writeSummaries: INTERNAL ERROR: Summary requested for transform, but plugin is not a summarising adapter" << endl;
|
Chris@0
|
903 continue;
|
Chris@0
|
904 }
|
Chris@0
|
905
|
Chris@0
|
906 Plugin::FeatureSet featureSet = adapter->getSummaryForAllOutputs
|
Chris@0
|
907 (pType, PluginSummarisingAdapter::ContinuousTimeAverage);
|
Chris@0
|
908
|
Chris@0
|
909 // cout << "summary type " << int(pType) << " for transform:" << endl << transform.toXmlString().toStdString()<< endl << "... feature set with " << featureSet.size() << " elts" << endl;
|
Chris@0
|
910
|
Chris@0
|
911 writeFeatures(audioSource, plugin, featureSet, summaryType);
|
Chris@0
|
912 }
|
Chris@0
|
913 }
|
Chris@0
|
914
|
Chris@0
|
915 void FeatureExtractionManager::writeFeatures(QString audioSource,
|
Chris@0
|
916 Plugin *plugin,
|
Chris@0
|
917 const Plugin::FeatureSet &features,
|
Chris@0
|
918 Transform::SummaryType summaryType)
|
Chris@0
|
919 {
|
Chris@0
|
920 // caller should have ensured plugin is in m_plugins
|
Chris@0
|
921 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
922
|
Chris@0
|
923 for (TransformWriterMap::const_iterator ti = pi->second.begin();
|
Chris@0
|
924 ti != pi->second.end(); ++ti) {
|
Chris@0
|
925
|
Chris@0
|
926 const Transform &transform = ti->first;
|
Chris@0
|
927 const vector<FeatureWriter *> &writers = ti->second;
|
Chris@0
|
928
|
Chris@0
|
929 if (transform.getSummaryType() != Transform::NoSummary &&
|
Chris@0
|
930 m_summaries.empty() &&
|
Chris@0
|
931 summaryType == Transform::NoSummary) {
|
Chris@0
|
932 continue;
|
Chris@0
|
933 }
|
Chris@0
|
934
|
Chris@0
|
935 if (transform.getSummaryType() != Transform::NoSummary &&
|
Chris@0
|
936 summaryType != Transform::NoSummary &&
|
Chris@0
|
937 transform.getSummaryType() != summaryType) {
|
Chris@0
|
938 continue;
|
Chris@0
|
939 }
|
Chris@0
|
940
|
Chris@0
|
941 string outputId = transform.getOutput().toStdString();
|
Chris@0
|
942
|
Chris@0
|
943 if (m_pluginOutputs[plugin].find(outputId) ==
|
Chris@0
|
944 m_pluginOutputs[plugin].end()) {
|
Chris@0
|
945 continue;
|
Chris@0
|
946 }
|
Chris@0
|
947
|
Chris@0
|
948 const Plugin::OutputDescriptor &desc =
|
Chris@0
|
949 m_pluginOutputs[plugin][outputId];
|
Chris@0
|
950
|
Chris@0
|
951 int outputIndex = m_pluginOutputIndices[outputId];
|
Chris@0
|
952 Plugin::FeatureSet::const_iterator fsi = features.find(outputIndex);
|
Chris@0
|
953 if (fsi == features.end()) continue;
|
Chris@0
|
954
|
Chris@0
|
955 for (int j = 0; j < (int)writers.size(); ++j) {
|
Chris@0
|
956 writers[j]->write
|
Chris@0
|
957 (audioSource, transform, desc, fsi->second,
|
Chris@0
|
958 Transform::summaryTypeToString(summaryType).toStdString());
|
Chris@0
|
959 }
|
Chris@0
|
960 }
|
Chris@0
|
961 }
|
Chris@0
|
962
|
Chris@31
|
963 void FeatureExtractionManager::testOutputFiles(QString audioSource)
|
Chris@31
|
964 {
|
Chris@31
|
965 for (PluginMap::iterator pi = m_plugins.begin();
|
Chris@31
|
966 pi != m_plugins.end(); ++pi) {
|
Chris@31
|
967
|
Chris@31
|
968 for (TransformWriterMap::iterator ti = pi->second.begin();
|
Chris@31
|
969 ti != pi->second.end(); ++ti) {
|
Chris@31
|
970
|
Chris@31
|
971 vector<FeatureWriter *> &writers = ti->second;
|
Chris@31
|
972
|
Chris@31
|
973 for (int i = 0; i < (int)writers.size(); ++i) {
|
Chris@31
|
974 writers[i]->testOutputFile(audioSource, ti->first.getIdentifier());
|
Chris@31
|
975 }
|
Chris@31
|
976 }
|
Chris@31
|
977 }
|
Chris@31
|
978 }
|
Chris@31
|
979
|
Chris@0
|
980 void FeatureExtractionManager::finish()
|
Chris@0
|
981 {
|
Chris@109
|
982 foreach (Plugin *plugin, m_orderedPlugins) {
|
Chris@109
|
983
|
Chris@109
|
984 PluginMap::iterator pi = m_plugins.find(plugin);
|
Chris@0
|
985
|
Chris@0
|
986 for (TransformWriterMap::iterator ti = pi->second.begin();
|
Chris@0
|
987 ti != pi->second.end(); ++ti) {
|
Chris@0
|
988
|
Chris@0
|
989 vector<FeatureWriter *> &writers = ti->second;
|
Chris@0
|
990
|
Chris@0
|
991 for (int i = 0; i < (int)writers.size(); ++i) {
|
Chris@0
|
992 writers[i]->flush();
|
Chris@0
|
993 writers[i]->finish();
|
Chris@0
|
994 }
|
Chris@0
|
995 }
|
Chris@0
|
996 }
|
Chris@0
|
997 }
|
Chris@0
|
998
|
Chris@0
|
999 void FeatureExtractionManager::print(Transform transform) const
|
Chris@0
|
1000 {
|
Chris@0
|
1001 QString qs;
|
Chris@0
|
1002 QTextStream qts(&qs);
|
Chris@0
|
1003 transform.toXml(qts);
|
Chris@0
|
1004 cerr << qs.toStdString() << endl;
|
Chris@0
|
1005 }
|