summaryrefslogtreecommitdiff
path: root/dgedit/audioextractor.cc
blob: 71e0b2af62511fe943dd5c286ea290694a8464b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            audioextractor.cc
 *
 *  Sat Nov 21 13:09:35 CET 2009
 *  Copyright 2009 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of DrumGizmo.
 *
 *  DrumGizmo is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  DrumGizmo is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with DrumGizmo; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "audioextractor.h"

#include <QDomDocument>
#include <QFile>
#include <QDir>
#include <QApplication>

#include <sndfile.h>

#define INSTRUMENT_VERSION "2.0"

typedef struct {
  SNDFILE *fh;
  float *data;
} audiodata_t;

AudioExtractor::AudioExtractor(Selections &s, QObject *parent)
  : QObject(parent), selections(s)
{
}

void AudioExtractor::exportSelections()
{
  emit setMaximumProgress(selections.ids().size() + 1/* for xml writing*/);
  int progress = 0;
  emit progressUpdate(progress++);
  qApp->processEvents();

  // Open all input audio files:
  audiodata_t audiodata[audiofiles.size()];

  int idx = 0;
  AudioFileList::iterator j = audiofiles.begin();
  while(j != audiofiles.end()) {
    QString file = j->first;

    SF_INFO sf_info;
    audiodata[idx].fh = sf_open(file.toStdString().c_str(), SFM_READ, &sf_info);
    if(!audiodata[idx].fh) {
      printf("Load error '%s'\n", file.toStdString().c_str());
      return;
    }

    audiodata[idx].data = NULL;

    j++;
    idx++;
  }
  
  idx = 1;
  QVector<sel_id_t> sels = selections.ids();

  // Sort selections by velocity
  for(int v1 = 0; v1 < sels.size(); v1++) {
    for(int v2 = 0; v2 < sels.size(); v2++) {

      Selection sel1 = selections.get(sels[v1]);
      Selection sel2 = selections.get(sels[v2]);

      if(sel1.energy < sel2.energy) {
        sel_id_t vtmp = sels[v1];
        sels[v1] = sels[v2];
        sels[v2] = vtmp;
      }
    }
  }

  // Iterate and write audio files
  QVector<sel_id_t>::iterator si = sels.begin();
  while(si != sels.end()) {
    Selection sel = selections.get(*si);
    size_t offset = sel.from;
    size_t size = sel.to - sel.from;
    size_t fadein = sel.fadein;
    size_t fadeout = sel.fadeout;


    // Read all input audio file chunks:
    for(int i = 0; i < audiofiles.size(); i++) {

      // Clear out old buffer (if one exists)
      if(audiodata[i].data) {
        delete audiodata[i].data;
        audiodata[i].data = NULL;
      }

      SNDFILE *fh = audiodata[i].fh;

      sf_seek(fh, offset, SEEK_SET);

      float *data = new float[size];
      sf_read_float(fh, data, size); 

      // Apply linear fadein
      for(size_t fi = 0; fi < fadein; fi++) {
        float val = ((float)fi / (float)fadein);
        if(fi < size) data[fi] *= val;
      }

      // Apply fadeout
      for(size_t fo = 0; fo < fadeout; fo++) {
        float val = 1.0 - ((float)fo / (float)fadeout);
        if( (((size - fadeout) + fo) < size) &&
            (((size - fadeout) + fo) >= 0) ) {
          data[(size - fadeout) + fo] *= val;
        }
      }

      audiodata[i].data = data;
    }

    // Create output path:
    QString path = exportpath + "/" + prefix + "/samples";
    QDir d;
    d.mkpath(path);

    // Write all sample chunks to single output file:
    QString file = path + "/" + QString::number(idx) + "-" + prefix + ".wav";
    
    SF_INFO sf_info;
    sf_info.format = SF_FORMAT_WAV | SF_FORMAT_FLOAT;
    sf_info.samplerate = 44100;
    sf_info.channels = audiofiles.size();

    SNDFILE *ofh = sf_open(file.toStdString().c_str(), SFM_WRITE, &sf_info);
    if(!ofh) {
      printf("Open for write error...\n");
      return;
    }

    for(size_t ob = 0; ob < size; ob++) {
      float obuf[audiofiles.size()];
      for(int ai = 0; ai < audiofiles.size(); ai++) {
        obuf[ai] = audiodata[ai].data[ob];
      }
      sf_write_float(ofh, obuf, audiofiles.size()); 
    }
    sf_close(ofh);

    idx++;
    si++;

    emit progressUpdate(progress++);
    qApp->processEvents();
  }

  // Close all input audio files:
  for(int i = 0; i < audiofiles.size(); i++) {
    if(audiodata[i].data) {
      delete audiodata[i].data;
      audiodata[i].data = NULL;
    }

    sf_close(audiodata[i].fh);
  }

  QDomDocument doc;
  QDomProcessingInstruction header =
    doc.createProcessingInstruction("xml", "version='1.0' encoding='UTF-8'");
  doc.appendChild(header); 

  QDomElement instrument = doc.createElement("instrument");
  instrument.setAttribute("version", INSTRUMENT_VERSION);
  instrument.setAttribute("name", prefix);
  doc.appendChild(instrument);

  QDomElement samples = doc.createElement("samples");
  instrument.appendChild(samples);

  {
  // Do the adding to the xml file one sample at the time.
  int index = 0;
  QVector<sel_id_t>::iterator si = sels.begin();
  while(si != sels.end()) {
    index++;

    Selection i = selections.get(*si);
    i.name = prefix + "-" + QString::number(index);

    QDomElement sample = doc.createElement("sample");
    sample.setAttribute("name", i.name);
    sample.setAttribute("power", QString::number(i.energy));
    samples.appendChild(sample);

    selections.update(*si, i);

    int channelnum = 1; // Filechannel numbers are 1-based.
    AudioFileList::iterator j = audiofiles.begin();
    while(j != audiofiles.end()) {

      QString file = j->first;
      QString name = j->second;

      QDomElement audiofile = doc.createElement("audiofile");
      audiofile.setAttribute("file", "samples/" + 
                             QString::number(index) + "-" + prefix + ".wav");
      audiofile.setAttribute("channel", name);
      audiofile.setAttribute("filechannel", QString::number(channelnum));
      sample.appendChild(audiofile);
      channelnum++;
      j++;
    }

    si++;
  }
  }
  
  QFile xmlfile(exportpath + "/" + prefix + "/" + prefix + ".xml");
  xmlfile.open(QIODevice::WriteOnly);
  xmlfile.write(doc.toByteArray());
  xmlfile.close();

  emit progressUpdate(progress++);
  qApp->processEvents();
}

void AudioExtractor::addFile(QString file, QString name)
{
  QPair<QString, QString> pair;
  pair.first = file;
  pair.second = name;
  audiofiles.push_back(pair);
}

void AudioExtractor::removeFile(QString file, QString name)
{
  AudioFileList::iterator j = audiofiles.begin();
  while(j != audiofiles.end()) {
    if(file == j->first/* && name == j->second*/) {
      audiofiles.erase(j);
      return;
    }
    j++;
  }
}

void AudioExtractor::setOutputPrefix(const QString &p)
{
  prefix = p;
}

void AudioExtractor::setExportPath(const QString &path)
{
  exportpath = path;
}

void AudioExtractor::changeName(QString file, QString name)
{
  AudioFileList::iterator j = audiofiles.begin();
  while(j != audiofiles.end()) {
    if(file == j->first) {
      j->second = name;
      return;
    }
    j++;
  }
}