1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
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, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #include "Decoder_MP3.h"
29 #include <MUtils/Exception.h>
36 MP3Decoder::MP3Decoder(void)
38 m_binary(lamexp_tools_lookup("mpg123.exe"))
40 if(m_binary
.isEmpty())
42 MUTILS_THROW("Error initializing MPG123 decoder. Tool 'mpg123.exe' is not registred!");
46 MP3Decoder::~MP3Decoder(void)
50 bool MP3Decoder::decode(const QString
&sourceFile
, const QString
&outputFile
, volatile bool *abortFlag
)
55 args
<< "-v" << "--utf8" << "-w" << QDir::toNativeSeparators(outputFile
);
56 args
<< QDir::toNativeSeparators(sourceFile
);
58 if(!startProcess(process
, m_binary
, args
))
63 bool bTimeout
= false;
64 bool bAborted
= false;
65 int prevProgress
= -1;
67 QRegExp
regExp("\\s+Time:\\s+(\\d+):(\\d+)\\.(\\d+)\\s+\\[(\\d+):(\\d+)\\.(\\d+)\\],");
69 while(process
.state() != QProcess::NotRunning
)
75 emit
messageLogged("\nABORTED BY USER !!!");
78 process
.waitForReadyRead(m_processTimeoutInterval
);
79 if(!process
.bytesAvailable() && process
.state() == QProcess::Running
)
82 qWarning("mpg123 process timed out <-- killing!");
83 emit
messageLogged("\nPROCESS TIMEOUT !!!");
87 while(process
.bytesAvailable() > 0)
89 QByteArray line
= process
.readLine();
90 QString text
= QString::fromUtf8(line
.constData()).simplified();
91 if(regExp
.lastIndexIn(text
) >= 0)
94 for(int i
= 0; i
< 6; i
++)
97 int temp
= regExp
.cap(i
+1).toInt(&ok
);
98 values
[i
] = (ok
? temp
: 0);
100 int timeDone
= (60 * values
[0]) + values
[1];
101 int timeLeft
= (60 * values
[3]) + values
[4];
102 if(timeDone
> 0 || timeLeft
> 0)
104 int newProgress
= qRound((static_cast<double>(timeDone
) / static_cast<double>(timeDone
+ timeLeft
)) * 100.0);
105 if(newProgress
> prevProgress
)
107 emit
statusUpdated(newProgress
);
108 prevProgress
= qMin(newProgress
+ 2, 99);
112 else if(!text
.isEmpty())
114 emit
messageLogged(text
);
119 process
.waitForFinished();
120 if(process
.state() != QProcess::NotRunning
)
123 process
.waitForFinished(-1);
126 emit
statusUpdated(100);
127 emit
messageLogged(QString().sprintf("\nExited with code: 0x%04X", process
.exitCode()));
129 if(bTimeout
|| bAborted
|| process
.exitCode() != EXIT_SUCCESS
)
137 bool MP3Decoder::isFormatSupported(const QString
&containerType
, const QString
&containerProfile
, const QString
&formatType
, const QString
&formatProfile
, const QString
&formatVersion
)
139 if(containerType
.compare("MPEG Audio", Qt::CaseInsensitive
) == 0 || containerType
.compare("Wave", Qt::CaseInsensitive
) == 0)
141 if(formatType
.compare("MPEG Audio", Qt::CaseInsensitive
) == 0)
143 if(formatProfile
.compare("Layer 3", Qt::CaseInsensitive
) == 0 || formatProfile
.compare("Layer 2", Qt::CaseInsensitive
) == 0)
145 if(formatVersion
.compare("Version 1", Qt::CaseInsensitive
) == 0 || formatVersion
.compare("Version 2", Qt::CaseInsensitive
) == 0)
156 QStringList
MP3Decoder::supportedTypes(void)
158 return QStringList() << "MPEG Audio Layer III (*.mp3 *.mpa)" << "MPEG Audio Layer II (*.mp2 *.mpa)" << "MPEG Audio Layer I ( *.mp1 *.mpa)";