OSDN Git Service

Updated Monkey's Audio binary to v4.11 (2013-01-20), including STDERR flush fix.
[lamexp/LameXP.git] / src / Encoder_Opus.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #include "Encoder_Opus.h"
23
24 #include "Global.h"
25 #include "Model_Settings.h"
26
27 #include <QProcess>
28 #include <QDir>
29 #include <QUUid>
30
31 OpusEncoder::OpusEncoder(void)
32 :
33         m_binary(lamexp_lookup_tool("opusenc.exe"))
34 {
35         if(m_binary.isEmpty())
36         {
37                 throw "Error initializing Opus encoder. Tool 'opusenc.exe' is not registred!";
38         }
39
40         m_configOptimizeFor = 0;
41         m_configEncodeComplexity = 10;
42         m_configFrameSize = 3;
43 }
44
45 OpusEncoder::~OpusEncoder(void)
46 {
47 }
48
49 bool OpusEncoder::encode(const QString &sourceFile, const AudioFileModel &metaInfo, const QString &outputFile, volatile bool *abortFlag)
50 {
51         const unsigned int fileDuration = metaInfo.fileDuration();
52         
53         QProcess process;
54         QStringList args;
55
56         switch(m_configRCMode)
57         {
58         case SettingsModel::VBRMode:
59                 args << "--vbr";
60                 break;
61         case SettingsModel::ABRMode:
62                 args << "--cvbr";
63                 break;
64         case SettingsModel::CBRMode:
65                 args << "--hard-cbr";
66                 break;
67         default:
68                 throw "Bad rate-control mode!";
69                 break;
70         }
71
72         //switch(m_configOptimizeFor)
73         //{
74         //case 0:
75         //      args << "--music";
76         //      break;
77         //case 1:
78         //      args << "--speech";
79         //      break;
80         //}
81
82         args << "--comp" << QString::number(m_configEncodeComplexity);
83
84         switch(m_configFrameSize)
85         {
86         case 0:
87                 args << "--framesize" << "2.5";
88                 break;
89         case 1:
90                 args << "--framesize" << "5";
91                 break;
92         case 2:
93                 args << "--framesize" << "10";
94                 break;
95         case 3:
96                 args << "--framesize" << "20";
97                 break;
98         case 4:
99                 args << "--framesize" << "40";
100                 break;
101         case 5:
102                 args << "--framesize" << "60";
103                 break;
104         }
105
106         args << QString("--bitrate") << QString::number(qMax(0, qMin(500, m_configBitrate * 8)));
107
108         if(!metaInfo.fileName().isEmpty()) args << "--title" << cleanTag(metaInfo.fileName());
109         if(!metaInfo.fileArtist().isEmpty()) args << "--artist" << cleanTag(metaInfo.fileArtist());
110         if(!metaInfo.fileAlbum().isEmpty()) args << "--album" << cleanTag(metaInfo.fileAlbum());
111         if(!metaInfo.fileGenre().isEmpty()) args << "--genre" << cleanTag(metaInfo.fileGenre());
112         if(metaInfo.fileYear()) args << "--date" << QString::number(metaInfo.fileYear());
113         if(metaInfo.filePosition()) args << "--comment" << QString("tracknumber=%1").arg(QString::number(metaInfo.filePosition()));
114         if(!metaInfo.fileComment().isEmpty()) args << "--comment" << QString("comment=%1").arg(cleanTag(metaInfo.fileComment()));
115         
116         if(!m_configCustomParams.isEmpty()) args << m_configCustomParams.split(" ", QString::SkipEmptyParts);
117
118         args << QDir::toNativeSeparators(sourceFile);
119         args << QDir::toNativeSeparators(outputFile);
120
121         if(!startProcess(process, m_binary, args))
122         {
123                 return false;
124         }
125
126         bool bTimeout = false;
127         bool bAborted = false;
128         int prevProgress = -1;
129
130         QRegExp regExp("\\((\\d+)%\\)");
131
132         while(process.state() != QProcess::NotRunning)
133         {
134                 if(*abortFlag)
135                 {
136                         process.kill();
137                         bAborted = true;
138                         emit messageLogged("\nABORTED BY USER !!!");
139                         break;
140                 }
141                 process.waitForReadyRead(m_processTimeoutInterval);
142                 if(!process.bytesAvailable() && process.state() == QProcess::Running)
143                 {
144                         process.kill();
145                         qWarning("Opus process timed out <-- killing!");
146                         emit messageLogged("\nPROCESS TIMEOUT !!!");
147                         bTimeout = true;
148                         break;
149                 }
150                 while(process.bytesAvailable() > 0)
151                 {
152                         QByteArray line = process.readLine();
153                         QString text = QString::fromUtf8(line.constData()).simplified();
154                         if(regExp.lastIndexIn(text) >= 0)
155                         {
156                                 bool ok = false;
157                                 int progress = regExp.cap(1).toInt(&ok);
158                                 if(ok && (progress > prevProgress))
159                                 {
160                                         emit statusUpdated(progress);
161                                         prevProgress = qMin(progress + 2, 99);
162                                 }
163                         }
164                         else if(!text.isEmpty())
165                         {
166                                 emit messageLogged(text);
167                         }
168                 }
169         }
170
171         process.waitForFinished();
172         if(process.state() != QProcess::NotRunning)
173         {
174                 process.kill();
175                 process.waitForFinished(-1);
176         }
177         
178         emit statusUpdated(100);
179         emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
180
181         if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS)
182         {
183                 return false;
184         }
185         
186         return true;
187 }
188
189 void OpusEncoder::setOptimizeFor(int optimizeFor)
190 {
191         m_configOptimizeFor = qBound(0, optimizeFor, 2);
192 }
193
194 void OpusEncoder::setEncodeComplexity(int complexity)
195 {
196         m_configEncodeComplexity = qBound(0, complexity, 10);
197 }
198
199 void OpusEncoder::setFrameSize(int frameSize)
200 {
201         m_configFrameSize = qBound(0, frameSize, 5);
202 }
203
204 QString OpusEncoder::extension(void)
205 {
206         return "opus";
207 }
208
209 bool OpusEncoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
210 {
211         if(containerType.compare("Wave", Qt::CaseInsensitive) == 0)
212         {
213                 if(formatType.compare("PCM", Qt::CaseInsensitive) == 0)
214                 {
215                         return true;
216                 }
217         }
218
219         return false;
220 }
221
222 const unsigned int *OpusEncoder::supportedChannelCount(void)
223 {
224         return NULL;
225 }
226
227 const unsigned int *OpusEncoder::supportedBitdepths(void)
228 {
229         static const unsigned int supportedBPS[] = {8, 16, 24, AudioFileModel::BITDEPTH_IEEE_FLOAT32, NULL};
230         return supportedBPS;
231 }
232
233 const bool OpusEncoder::needsTimingInfo(void)
234 {
235         return true;
236 }