2010-12-03 23:01:17 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2011-01-01 17:04:25 +01:00
|
|
|
// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-12-03 23:01:17 +01:00
|
|
|
//
|
|
|
|
// This program 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.
|
|
|
|
//
|
|
|
|
// This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Encoder_AAC.h"
|
|
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
#include "Model_Settings.h"
|
|
|
|
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
AACEncoder::AACEncoder(void)
|
|
|
|
:
|
|
|
|
m_binary_enc(lamexp_lookup_tool("neroAacEnc.exe")),
|
2011-12-04 20:33:06 +01:00
|
|
|
m_binary_tag(lamexp_lookup_tool("neroAacTag.exe")),
|
|
|
|
m_binary_sox(lamexp_lookup_tool("sox.exe"))
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2011-12-04 20:33:06 +01:00
|
|
|
if(m_binary_enc.isEmpty() || m_binary_tag.isEmpty() || m_binary_sox.isEmpty())
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
|
|
|
throw "Error initializing AAC encoder. Tool 'neroAacEnc.exe' is not registred!";
|
|
|
|
}
|
2011-01-23 02:19:18 +01:00
|
|
|
|
|
|
|
m_configProfile = 0;
|
|
|
|
m_configEnable2Pass = true;
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AACEncoder::~AACEncoder(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AACEncoder::encode(const QString &sourceFile, const AudioFileModel &metaInfo, const QString &outputFile, volatile bool *abortFlag)
|
|
|
|
{
|
2011-12-04 20:33:06 +01:00
|
|
|
const unsigned int fileDuration = (metaInfo.fileDuration() > 0) ? metaInfo.fileDuration() : detectLength(sourceFile, abortFlag);
|
|
|
|
|
2010-12-03 23:01:17 +01:00
|
|
|
QProcess process;
|
|
|
|
QStringList args;
|
|
|
|
const QString baseName = QFileInfo(outputFile).fileName();
|
|
|
|
|
|
|
|
switch(m_configRCMode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
2011-11-21 01:22:41 +01:00
|
|
|
args << "-q" << QString().sprintf("%.2f", qBound(0.0, static_cast<double>(m_configBitrate * 5) / 100.0, 1.0));
|
2010-12-03 23:01:17 +01:00
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
2011-11-08 15:12:31 +01:00
|
|
|
args << "-br" << QString::number(qMax(32, qMin(500, (m_configBitrate * 8))) * 1000);
|
2010-12-03 23:01:17 +01:00
|
|
|
break;
|
|
|
|
case SettingsModel::CBRMode:
|
2011-11-08 15:12:31 +01:00
|
|
|
args << "-cbr" << QString::number(qMax(32, qMin(500, (m_configBitrate * 8))) * 1000);
|
2010-12-03 23:01:17 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw "Bad rate-control mode!";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-01-23 02:19:18 +01:00
|
|
|
if(m_configEnable2Pass && (m_configRCMode == SettingsModel::ABRMode))
|
|
|
|
{
|
|
|
|
args << "-2pass";
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(m_configProfile)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
args << "-lc"; //Forces use of LC AAC profile
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
args << "-he"; //Forces use of HE AAC profile
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
args << "-hev2"; //Forces use of HEv2 AAC profile
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-02-09 23:36:17 +01:00
|
|
|
if(!m_configCustomParams.isEmpty()) args << m_configCustomParams.split(" ", QString::SkipEmptyParts);
|
|
|
|
|
2010-12-03 23:01:17 +01:00
|
|
|
args << "-if" << QDir::toNativeSeparators(sourceFile);
|
|
|
|
args << "-of" << QDir::toNativeSeparators(outputFile);
|
|
|
|
|
|
|
|
if(!startProcess(process, m_binary_enc, args))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bTimeout = false;
|
|
|
|
bool bAborted = false;
|
2011-11-16 22:56:32 +01:00
|
|
|
int prevProgress = -1;
|
|
|
|
|
2010-12-03 23:01:17 +01:00
|
|
|
|
|
|
|
QRegExp regExp("Processed\\s+(\\d+)\\s+seconds");
|
|
|
|
QRegExp regExp_pass1("First\\s+pass:\\s+processed\\s+(\\d+)\\s+seconds");
|
|
|
|
QRegExp regExp_pass2("Second\\s+pass:\\s+processed\\s+(\\d+)\\s+seconds");
|
|
|
|
|
|
|
|
while(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
if(*abortFlag)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
bAborted = true;
|
|
|
|
emit messageLogged("\nABORTED BY USER !!!");
|
|
|
|
break;
|
|
|
|
}
|
2011-06-14 13:06:27 +02:00
|
|
|
process.waitForReadyRead(m_processTimeoutInterval);
|
2010-12-03 23:01:17 +01:00
|
|
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
qWarning("NeroAacEnc process timed out <-- killing!");
|
2011-02-28 17:53:17 +01:00
|
|
|
emit messageLogged("\nPROCESS TIMEOUT !!!");
|
2010-12-03 23:01:17 +01:00
|
|
|
bTimeout = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while(process.bytesAvailable() > 0)
|
|
|
|
{
|
|
|
|
QByteArray line = process.readLine();
|
|
|
|
QString text = QString::fromUtf8(line.constData()).simplified();
|
|
|
|
if(regExp_pass1.lastIndexIn(text) >= 0)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
int progress = regExp_pass1.cap(1).toInt(&ok);
|
2011-12-04 20:33:06 +01:00
|
|
|
if(ok && (fileDuration > 0))
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2011-12-04 20:33:06 +01:00
|
|
|
int newProgress = qRound((static_cast<double>(progress) / static_cast<double>(fileDuration)) * 50.0);
|
2011-11-16 22:56:32 +01:00
|
|
|
if(newProgress > prevProgress)
|
|
|
|
{
|
|
|
|
emit statusUpdated(newProgress);
|
|
|
|
prevProgress = qMin(newProgress + 2, 99);
|
|
|
|
}
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(regExp_pass2.lastIndexIn(text) >= 0)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
int progress = regExp_pass2.cap(1).toInt(&ok);
|
2011-12-04 20:33:06 +01:00
|
|
|
if(ok && (fileDuration > 0))
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2011-12-04 20:33:06 +01:00
|
|
|
int newProgress = qRound((static_cast<double>(progress) / static_cast<double>(fileDuration)) * 50.0) + 50;
|
2011-11-16 22:56:32 +01:00
|
|
|
if(newProgress > prevProgress)
|
|
|
|
{
|
|
|
|
emit statusUpdated(newProgress);
|
|
|
|
prevProgress = qMin(newProgress + 2, 99);
|
|
|
|
}
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(regExp.lastIndexIn(text) >= 0)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
int progress = regExp.cap(1).toInt(&ok);
|
2011-12-04 20:33:06 +01:00
|
|
|
if(ok && (fileDuration > 0))
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2011-12-04 20:33:06 +01:00
|
|
|
int newProgress = qRound((static_cast<double>(progress) / static_cast<double>(fileDuration)) * 100.0);
|
2011-11-16 22:56:32 +01:00
|
|
|
if(newProgress > prevProgress)
|
|
|
|
{
|
|
|
|
emit statusUpdated(newProgress);
|
|
|
|
prevProgress = qMin(newProgress + 2, 99);
|
|
|
|
}
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(!text.isEmpty())
|
|
|
|
{
|
|
|
|
emit messageLogged(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process.waitForFinished();
|
|
|
|
if(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
emit statusUpdated(100);
|
|
|
|
emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
|
|
|
|
|
|
|
|
if(bTimeout || bAborted || process.exitStatus() != QProcess::NormalExit)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
emit messageLogged("\n-------------------------------\n");
|
|
|
|
|
|
|
|
args.clear();
|
|
|
|
args << QDir::toNativeSeparators(outputFile);
|
|
|
|
|
|
|
|
if(!metaInfo.fileName().isEmpty()) args << QString("-meta:title=%1").arg(metaInfo.fileName());
|
|
|
|
if(!metaInfo.fileArtist().isEmpty()) args << QString("-meta:artist=%1").arg(metaInfo.fileArtist());
|
|
|
|
if(!metaInfo.fileAlbum().isEmpty()) args << QString("-meta:album=%1").arg(metaInfo.fileAlbum());
|
|
|
|
if(!metaInfo.fileGenre().isEmpty()) args << QString("-meta:genre=%1").arg(metaInfo.fileGenre());
|
|
|
|
if(!metaInfo.fileComment().isEmpty()) args << QString("-meta:comment=%1").arg(metaInfo.fileComment());
|
|
|
|
if(metaInfo.fileYear()) args << QString("-meta:year=%1").arg(QString::number(metaInfo.fileYear()));
|
|
|
|
if(metaInfo.filePosition()) args << QString("-meta:track=%1").arg(QString::number(metaInfo.filePosition()));
|
2011-03-21 22:52:08 +01:00
|
|
|
if(!metaInfo.fileCover().isEmpty()) args << QString("-add-cover:%1:%2").arg("front", metaInfo.fileCover());
|
2010-12-03 23:01:17 +01:00
|
|
|
|
|
|
|
if(!startProcess(process, m_binary_tag, args))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bTimeout = false;
|
|
|
|
|
|
|
|
while(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
if(*abortFlag)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
bAborted = true;
|
|
|
|
emit messageLogged("\nABORTED BY USER !!!");
|
|
|
|
break;
|
|
|
|
}
|
2011-06-14 13:06:27 +02:00
|
|
|
process.waitForReadyRead(m_processTimeoutInterval);
|
2010-12-03 23:01:17 +01:00
|
|
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
qWarning("NeroAacTag process timed out <-- killing!");
|
2011-02-28 17:53:17 +01:00
|
|
|
emit messageLogged("\nPROCESS TIMEOUT !!!");
|
2010-12-03 23:01:17 +01:00
|
|
|
bTimeout = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while(process.bytesAvailable() > 0)
|
|
|
|
{
|
|
|
|
QByteArray line = process.readLine();
|
|
|
|
QString text = QString::fromUtf8(line.constData()).simplified();
|
|
|
|
if(!text.isEmpty())
|
|
|
|
{
|
|
|
|
emit messageLogged(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process.waitForFinished();
|
|
|
|
if(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
|
|
|
|
|
|
|
|
if(bTimeout || bAborted || process.exitStatus() != QProcess::NormalExit)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-12-04 20:33:06 +01:00
|
|
|
unsigned int AACEncoder::detectLength(const QString &sourceFile, volatile bool *abortFlag)
|
|
|
|
{
|
|
|
|
unsigned int duration = 0;
|
|
|
|
|
|
|
|
QProcess process;
|
|
|
|
QStringList args;
|
|
|
|
|
|
|
|
args << "--i" << sourceFile;
|
|
|
|
|
|
|
|
if(!startProcess(process, m_binary_sox, args))
|
|
|
|
{
|
|
|
|
return duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bTimeout = false;
|
|
|
|
bool bAborted = false;
|
|
|
|
|
|
|
|
QRegExp regExp("Duration\\s*:\\s*(\\d\\d):(\\d\\d):(\\d\\d)\\.(\\d\\d)", Qt::CaseInsensitive);
|
|
|
|
|
|
|
|
while(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
if(*abortFlag)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
bAborted = true;
|
|
|
|
emit messageLogged("\nABORTED BY USER !!!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
process.waitForReadyRead(m_processTimeoutInterval);
|
|
|
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
qWarning("SoX process timed out <-- killing!");
|
|
|
|
emit messageLogged("\nPROCESS TIMEOUT !!!");
|
|
|
|
bTimeout = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while(process.bytesAvailable() > 0)
|
|
|
|
{
|
|
|
|
QByteArray line = process.readLine();
|
|
|
|
QString text = QString::fromUtf8(line.constData()).simplified();
|
|
|
|
if(regExp.lastIndexIn(text) >= 0)
|
|
|
|
{
|
|
|
|
bool ok[4] = {false, false, false, false};
|
|
|
|
unsigned int tmp1 = regExp.cap(1).toUInt(&ok[0]);
|
|
|
|
unsigned int tmp2 = regExp.cap(2).toUInt(&ok[1]);
|
|
|
|
unsigned int tmp3 = regExp.cap(3).toUInt(&ok[2]);
|
|
|
|
unsigned int tmp4 = regExp.cap(4).toUInt(&ok[3]);
|
|
|
|
if(ok[0] && ok[1] && ok[2] && ok[3])
|
|
|
|
{
|
|
|
|
duration = (tmp1 * 3600) + (tmp2 * 60) + tmp3 + qRound(static_cast<double>(tmp4) / 100.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!text.isEmpty())
|
|
|
|
{
|
|
|
|
emit messageLogged(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process.waitForFinished();
|
|
|
|
if(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//qWarning("Duration detected is: %u", duration);
|
|
|
|
return duration;
|
|
|
|
}
|
|
|
|
|
2010-12-03 23:01:17 +01:00
|
|
|
QString AACEncoder::extension(void)
|
|
|
|
{
|
|
|
|
return "mp4";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AACEncoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
|
|
|
|
{
|
|
|
|
if(containerType.compare("Wave", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
if(formatType.compare("PCM", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-23 02:19:18 +01:00
|
|
|
|
|
|
|
void AACEncoder::setProfile(int profile)
|
|
|
|
{
|
|
|
|
m_configProfile = profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AACEncoder::setEnable2Pass(bool enabled)
|
|
|
|
{
|
|
|
|
m_configEnable2Pass = enabled;
|
|
|
|
}
|