2010-12-03 23:01:17 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2018-01-17 21:18:10 +01:00
|
|
|
// Copyright (C) 2004-2018 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
|
2013-10-23 20:56:57 +02:00
|
|
|
// (at your option) any later version, but always including the *additional*
|
|
|
|
// restrictions defined in the "License.txt" file.
|
2010-12-03 23:01:17 +01:00
|
|
|
//
|
|
|
|
// 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>
|
|
|
|
|
2013-10-07 02:28:01 +02:00
|
|
|
static int index2bitrate(const int index)
|
|
|
|
{
|
|
|
|
return (index < 32) ? ((index + 1) * 8) : ((index - 15) * 16);
|
|
|
|
}
|
|
|
|
|
2016-11-13 20:09:29 +01:00
|
|
|
#define IS_VALID(X) (((X) != 0U) && ((X) != UINT_MAX))
|
|
|
|
|
2013-10-07 02:28:01 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Encoder Info
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class AACEncoderInfo : public AbstractEncoderInfo
|
|
|
|
{
|
|
|
|
virtual bool isModeSupported(int mode) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad RC mode specified!");
|
2013-10-07 02:28:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int valueCount(int mode) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
return 21;
|
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
return 41;
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad RC mode specified!");
|
2013-10-07 02:28:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int valueAt(int mode, int index) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
return qBound(0, index * 5, 100);
|
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
return qBound(8, index2bitrate(index), 400);
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad RC mode specified!");
|
2013-10-07 02:28:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int valueType(int mode) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
return TYPE_QUALITY_LEVEL_FLT;
|
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
return TYPE_APPROX_BITRATE;
|
|
|
|
break;
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
return TYPE_BITRATE;
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad RC mode specified!");
|
2013-10-07 02:28:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *description(void) const
|
|
|
|
{
|
|
|
|
static const char* s_description = "Nero AAC Encoder (\x0C2\x0A9 Nero AG)";
|
|
|
|
return s_description;
|
|
|
|
}
|
2015-05-10 16:34:07 +02:00
|
|
|
|
|
|
|
virtual const char *extension(void) const
|
|
|
|
{
|
|
|
|
static const char* s_extension = "mp4";
|
|
|
|
return s_extension;
|
|
|
|
}
|
2016-01-30 17:51:10 +01:00
|
|
|
|
|
|
|
virtual bool isResamplingSupported(void) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-07 02:28:01 +02:00
|
|
|
}
|
|
|
|
static const g_aacEncoderInfo;
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Encoder implementation
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-12-03 23:01:17 +01:00
|
|
|
AACEncoder::AACEncoder(void)
|
|
|
|
:
|
2016-04-16 13:26:21 +02:00
|
|
|
m_binary_enc(lamexp_tools_lookup(L1S("neroAacEnc.exe"))),
|
|
|
|
m_binary_tag(lamexp_tools_lookup(L1S("neroAacTag.exe")))
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2016-04-16 13:26:21 +02:00
|
|
|
if(m_binary_enc.isEmpty() || m_binary_tag.isEmpty())
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Error initializing AAC encoder. Tool 'neroAacEnc.exe' is not registred!");
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-04-18 21:05:28 +02:00
|
|
|
bool AACEncoder::encode(const QString &sourceFile, const AudioFileModel_MetaInfo &metaInfo, const unsigned int duration, const unsigned int channels, const QString &outputFile, QAtomicInt &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:
|
2016-04-16 13:26:21 +02:00
|
|
|
args << L1S("-q") << QString().sprintf("%.2f", double(qBound(0, m_configBitrate * 5, 100)) / 100.0);
|
2010-12-03 23:01:17 +01:00
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
2016-04-16 13:26:21 +02:00
|
|
|
args << L1S("-br") << QString::number(qBound(8, index2bitrate(m_configBitrate), 400) * 1000);
|
2010-12-03 23:01:17 +01:00
|
|
|
break;
|
|
|
|
case SettingsModel::CBRMode:
|
2016-04-16 13:26:21 +02:00
|
|
|
args << L1S("-cbr") << QString::number(qBound(8, index2bitrate(m_configBitrate), 400) * 1000);
|
2010-12-03 23:01:17 +01:00
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad rate-control mode!");
|
2010-12-03 23:01:17 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-01-23 02:19:18 +01:00
|
|
|
if(m_configEnable2Pass && (m_configRCMode == SettingsModel::ABRMode))
|
|
|
|
{
|
2016-04-16 13:26:21 +02:00
|
|
|
args << L1S("-2pass");
|
2011-01-23 02:19:18 +01:00
|
|
|
}
|
|
|
|
|
2016-11-13 20:09:29 +01:00
|
|
|
int selectedProfile = m_configProfile;
|
|
|
|
if ((selectedProfile == 3) && IS_VALID(channels) && (channels != 2))
|
2011-01-23 02:19:18 +01:00
|
|
|
{
|
2016-11-13 20:09:29 +01:00
|
|
|
emit messageLogged("WARNING: Cannot use HE-AAC v2 (SBR+PS) with Mono input --> reverting to HE-AAC (SBR)");
|
|
|
|
selectedProfile = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(selectedProfile)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
//Do *not* overwrite profile -> let the encoder decide!
|
|
|
|
break;
|
2011-01-23 02:19:18 +01:00
|
|
|
case 1:
|
2016-04-16 13:26:21 +02:00
|
|
|
args << L1S("-lc"); //Forces use of LC AAC profile
|
2011-01-23 02:19:18 +01:00
|
|
|
break;
|
|
|
|
case 2:
|
2016-04-16 13:26:21 +02:00
|
|
|
args << L1S("-he"); //Forces use of HE AAC profile
|
2011-01-23 02:19:18 +01:00
|
|
|
break;
|
|
|
|
case 3:
|
2016-11-13 20:09:29 +01:00
|
|
|
args << L1S("-hev2"); //Forces use of HEv2 AAC profile
|
2011-01-23 02:19:18 +01:00
|
|
|
break;
|
2016-11-13 20:09:29 +01:00
|
|
|
default:
|
|
|
|
MUTILS_THROW("Bad AAC Profile specified!");
|
2011-01-23 02:19:18 +01:00
|
|
|
}
|
|
|
|
|
2011-02-09 23:36:17 +01:00
|
|
|
if(!m_configCustomParams.isEmpty()) args << m_configCustomParams.split(" ", QString::SkipEmptyParts);
|
|
|
|
|
2016-04-16 13:26:21 +02:00
|
|
|
args << L1S("-if") << QDir::toNativeSeparators(sourceFile);
|
|
|
|
args << L1S("-of") << QDir::toNativeSeparators(outputFile);
|
2010-12-03 23:01:17 +01:00
|
|
|
|
|
|
|
if(!startProcess(process, m_binary_enc, args))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-16 22:56:32 +01:00
|
|
|
int prevProgress = -1;
|
2017-12-10 21:46:56 +01:00
|
|
|
QRegExp regExp_sp(L1S("\\bprocessed\\s+(\\d+)\\s+seconds"), Qt::CaseInsensitive);
|
2017-12-10 22:21:42 +01:00
|
|
|
QRegExp regExp_mp(L1S("\\b(\\w+)\\s+pass:\\s+processed\\s+(\\d+)\\s+seconds"), Qt::CaseInsensitive);
|
2011-11-16 22:56:32 +01:00
|
|
|
|
2017-12-10 21:46:56 +01:00
|
|
|
const result_t result = awaitProcess(process, abortFlag, [this, &prevProgress, &duration, ®Exp_sp, ®Exp_mp](const QString &text)
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2017-12-10 21:46:56 +01:00
|
|
|
if (regExp_mp.lastIndexIn(text) >= 0)
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2017-12-10 21:46:56 +01:00
|
|
|
int timeElapsed;
|
|
|
|
if ((duration > 0) && MUtils::regexp_parse_int32(regExp_mp, timeElapsed, 2))
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2017-12-10 21:46:56 +01:00
|
|
|
const bool second_pass = (regExp_mp.cap(1).compare(L1S("second"), Qt::CaseInsensitive) == 0);
|
2017-12-10 22:21:42 +01:00
|
|
|
const int newProgress = qRound((second_pass ? 50.0 : 0.0) + ((static_cast<double>(timeElapsed) / static_cast<double>(duration)) * 50.0));
|
2017-12-10 21:46:56 +01:00
|
|
|
if (newProgress > prevProgress)
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2017-12-10 21:46:56 +01:00
|
|
|
emit statusUpdated(newProgress);
|
2017-12-11 20:00:50 +01:00
|
|
|
prevProgress = NEXT_PROGRESS(newProgress);
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-10 21:46:56 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (regExp_sp.lastIndexIn(text) >= 0)
|
|
|
|
{
|
|
|
|
int timeElapsed;
|
|
|
|
if ((duration > 0) && MUtils::regexp_parse_int32(regExp_sp, timeElapsed))
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2017-12-10 22:21:42 +01:00
|
|
|
const int newProgress = qRound((static_cast<double>(timeElapsed) / static_cast<double>(duration)) * 100.0);
|
2017-12-10 21:46:56 +01:00
|
|
|
if (newProgress > prevProgress)
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2017-12-10 21:46:56 +01:00
|
|
|
emit statusUpdated(newProgress);
|
2017-12-11 20:00:50 +01:00
|
|
|
prevProgress = NEXT_PROGRESS(newProgress);
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-10 21:46:56 +01:00
|
|
|
return true;
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
2017-12-10 21:46:56 +01:00
|
|
|
return false;
|
|
|
|
});
|
2010-12-03 23:01:17 +01:00
|
|
|
|
2017-12-10 21:46:56 +01:00
|
|
|
if(result != RESULT_SUCCESS)
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-24 13:43:25 +02:00
|
|
|
if(metaInfo.empty(false))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-16 13:26:21 +02:00
|
|
|
emit messageLogged(L1S("\n-------------------------------\n"));
|
2010-12-03 23:01:17 +01:00
|
|
|
|
|
|
|
args.clear();
|
|
|
|
args << QDir::toNativeSeparators(outputFile);
|
|
|
|
|
2015-10-24 13:43:25 +02:00
|
|
|
if(!metaInfo.title().isEmpty()) args << QString("-meta:title=%1").arg(cleanTag(metaInfo.title()));
|
|
|
|
if(!metaInfo.artist().isEmpty()) args << QString("-meta:artist=%1").arg(cleanTag(metaInfo.artist()));
|
|
|
|
if(!metaInfo.album().isEmpty()) args << QString("-meta:album=%1").arg(cleanTag(metaInfo.album()));
|
|
|
|
if(!metaInfo.genre().isEmpty()) args << QString("-meta:genre=%1").arg(cleanTag(metaInfo.genre()));
|
2013-10-12 22:55:41 +02:00
|
|
|
if(!metaInfo.comment().isEmpty()) args << QString("-meta:comment=%1").arg(cleanTag(metaInfo.comment()));
|
2015-10-24 13:43:25 +02:00
|
|
|
if(metaInfo.year()) args << QString("-meta:year=%1").arg(QString::number(metaInfo.year()));
|
|
|
|
if(metaInfo.position()) args << QString("-meta:track=%1").arg(QString::number(metaInfo.position()));
|
|
|
|
if(!metaInfo.cover().isEmpty()) args << QString("-add-cover:%1:%2").arg("front", metaInfo.cover());
|
2010-12-03 23:01:17 +01:00
|
|
|
|
|
|
|
if(!startProcess(process, m_binary_tag, args))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-10 21:46:56 +01:00
|
|
|
return (awaitProcess(process, abortFlag) == RESULT_SUCCESS);
|
2010-12-03 23:01:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AACEncoder::isFormatSupported(const QString &containerType, const QString &containerProfile, const QString &formatType, const QString &formatProfile, const QString &formatVersion)
|
|
|
|
{
|
2016-04-16 13:26:21 +02:00
|
|
|
if(containerType.compare(L1S("Wave"), Qt::CaseInsensitive) == 0)
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
2016-04-16 13:26:21 +02:00
|
|
|
if(formatType.compare(L1S("PCM"), Qt::CaseInsensitive) == 0)
|
2010-12-03 23:01:17 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-23 02:19:18 +01:00
|
|
|
|
|
|
|
void AACEncoder::setProfile(int profile)
|
|
|
|
{
|
2016-11-13 20:09:29 +01:00
|
|
|
m_configProfile = qBound(0, profile, 3);
|
2011-01-23 02:19:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void AACEncoder::setEnable2Pass(bool enabled)
|
|
|
|
{
|
|
|
|
m_configEnable2Pass = enabled;
|
|
|
|
}
|
2012-07-21 19:16:12 +02:00
|
|
|
|
|
|
|
const bool AACEncoder::needsTimingInfo(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2013-10-07 02:28:01 +02:00
|
|
|
|
|
|
|
const AbstractEncoderInfo *AACEncoder::getEncoderInfo(void)
|
|
|
|
{
|
|
|
|
return &g_aacEncoderInfo;
|
|
|
|
}
|