2010-11-26 00:29:53 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2016-01-03 15:53:42 +01:00
|
|
|
// Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-11-26 00:29:53 +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-11-26 00:29:53 +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_Vorbis.h"
|
|
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
#include "Model_Settings.h"
|
|
|
|
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QDir>
|
|
|
|
|
2013-10-02 19:17:33 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Encoder Info
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class VorbisEncoderInfo : public AbstractEncoderInfo
|
|
|
|
{
|
|
|
|
virtual bool isModeSupported(int mode) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad RC mode specified!");
|
2013-10-02 19:17:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int valueCount(int mode) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
return 12;
|
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
return 60;
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad RC mode specified!");
|
2013-10-02 19:17:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int valueAt(int mode, int index) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
return qBound(-2, index - 2, 10);
|
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
return qBound(32, (index + 4) * 8, 500);
|
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad RC mode specified!");
|
2013-10-02 19:17:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int valueType(int mode) const
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
2013-10-07 02:28:01 +02:00
|
|
|
return TYPE_QUALITY_LEVEL_INT;
|
2013-10-02 19:17:33 +02:00
|
|
|
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-02 19:17:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *description(void) const
|
|
|
|
{
|
|
|
|
static const char* s_description = "OggEnc2 Vorbis Encoder (aoTuV)";
|
|
|
|
return s_description;
|
|
|
|
}
|
2015-05-10 16:34:07 +02:00
|
|
|
|
|
|
|
virtual const char *extension(void) const
|
|
|
|
{
|
|
|
|
static const char* s_extension = "ogg";
|
|
|
|
return s_extension;
|
|
|
|
}
|
2013-10-03 18:48:07 +02:00
|
|
|
}
|
|
|
|
static const g_vorbisEncoderInfo;
|
2013-10-02 19:17:33 +02:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Encoder implementation
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-11-26 00:29:53 +01:00
|
|
|
VorbisEncoder::VorbisEncoder(void)
|
|
|
|
:
|
2014-12-20 23:44:43 +01:00
|
|
|
m_binary(lamexp_tools_lookup("oggenc2.exe"))
|
2010-11-26 00:29:53 +01:00
|
|
|
{
|
2011-04-11 02:53:29 +02:00
|
|
|
if(m_binary.isEmpty())
|
2010-11-26 00:29:53 +01:00
|
|
|
{
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Error initializing Vorbis encoder. Tool 'oggenc2.exe' is not registred!");
|
2010-11-26 00:29:53 +01:00
|
|
|
}
|
2011-01-21 23:25:55 +01:00
|
|
|
|
|
|
|
m_configBitrateMaximum = 0;
|
|
|
|
m_configBitrateMinimum = 0;
|
2011-01-23 23:03:44 +01:00
|
|
|
m_configSamplingRate = 0;
|
2010-11-26 00:29:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
VorbisEncoder::~VorbisEncoder(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-12 22:55:41 +02:00
|
|
|
bool VorbisEncoder::encode(const QString &sourceFile, const AudioFileModel_MetaInfo &metaInfo, const unsigned int duration, const QString &outputFile, volatile bool *abortFlag)
|
2010-11-26 00:29:53 +01:00
|
|
|
{
|
|
|
|
QProcess process;
|
|
|
|
QStringList args;
|
|
|
|
const QString baseName = QFileInfo(outputFile).fileName();
|
|
|
|
|
|
|
|
switch(m_configRCMode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
2013-10-02 19:17:33 +02:00
|
|
|
args << "-q" << QString::number(qBound(-2, m_configBitrate - 2, 10));
|
2010-11-26 00:29:53 +01:00
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
2013-10-02 19:17:33 +02:00
|
|
|
args << "-b" << QString::number(qBound(32, (m_configBitrate + 4) * 8, 500));
|
2010-11-26 00:29:53 +01:00
|
|
|
break;
|
|
|
|
default:
|
2014-11-30 21:32:23 +01:00
|
|
|
MUTILS_THROW("Bad rate-control mode!");
|
2010-11-26 00:29:53 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-01-21 23:25:55 +01:00
|
|
|
if((m_configBitrateMaximum > 0) && (m_configBitrateMinimum > 0) && (m_configBitrateMinimum <= m_configBitrateMaximum))
|
|
|
|
{
|
2013-10-02 19:17:33 +02:00
|
|
|
args << "--min-bitrate" << QString::number(qBound(32, m_configBitrateMinimum, 500));
|
|
|
|
args << "--max-bitrate" << QString::number(qBound(32, m_configBitrateMaximum, 500));
|
2011-01-21 23:25:55 +01:00
|
|
|
}
|
|
|
|
|
2011-01-23 23:03:44 +01:00
|
|
|
if(m_configSamplingRate > 0)
|
|
|
|
{
|
|
|
|
args << "--resample" << QString::number(m_configSamplingRate) << "--converter" << QString::number(0);
|
|
|
|
}
|
|
|
|
|
2013-10-12 22:55:41 +02:00
|
|
|
if(!metaInfo.title().isEmpty()) args << "-t" << cleanTag(metaInfo.title());
|
|
|
|
if(!metaInfo.artist().isEmpty()) args << "-a" << cleanTag(metaInfo.artist());
|
|
|
|
if(!metaInfo.album().isEmpty()) args << "-l" << cleanTag(metaInfo.album());
|
|
|
|
if(!metaInfo.genre().isEmpty()) args << "-G" << cleanTag(metaInfo.genre());
|
|
|
|
if(!metaInfo.comment().isEmpty()) args << "-c" << QString("comment=%1").arg(cleanTag(metaInfo.comment()));
|
|
|
|
if(metaInfo.year()) args << "-d" << QString::number(metaInfo.year());
|
|
|
|
if(metaInfo.position()) args << "-N" << QString::number(metaInfo.position());
|
2010-11-26 00:29:53 +01:00
|
|
|
|
|
|
|
//args << "--tv" << QString().sprintf("Encoder=LameXP v%d.%02d.%04d [%s]", lamexp_version_major(), lamexp_version_minor(), lamexp_version_build(), lamexp_version_release());
|
|
|
|
|
2011-02-09 23:36:17 +01:00
|
|
|
if(!m_configCustomParams.isEmpty()) args << m_configCustomParams.split(" ", QString::SkipEmptyParts);
|
|
|
|
|
2010-11-26 00:29:53 +01:00
|
|
|
args << "-o" << QDir::toNativeSeparators(outputFile);
|
2010-12-01 23:14:47 +01:00
|
|
|
args << QDir::toNativeSeparators(sourceFile);
|
2010-11-26 00:29:53 +01:00
|
|
|
|
2011-04-11 02:53:29 +02:00
|
|
|
if(!startProcess(process, m_binary, args))
|
2010-11-26 00:29:53 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bTimeout = false;
|
|
|
|
bool bAborted = false;
|
2011-11-16 22:56:32 +01:00
|
|
|
int prevProgress = -1;
|
2010-11-26 00:29:53 +01:00
|
|
|
|
|
|
|
QRegExp regExp("\\[.*(\\d+)[.,](\\d+)%\\]");
|
|
|
|
|
|
|
|
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-11-26 00:29:53 +01:00
|
|
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
qWarning("OggEnc process timed out <-- killing!");
|
2011-02-28 17:53:17 +01:00
|
|
|
emit messageLogged("\nPROCESS TIMEOUT !!!");
|
2010-11-26 00:29:53 +01:00
|
|
|
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 = false;
|
|
|
|
int progress = regExp.cap(1).toInt(&ok);
|
2011-11-16 22:56:32 +01:00
|
|
|
if(ok && (progress > prevProgress))
|
|
|
|
{
|
|
|
|
emit statusUpdated(progress);
|
|
|
|
prevProgress = qMin(progress + 2, 99);
|
|
|
|
}
|
2010-11-26 00:29:53 +01:00
|
|
|
}
|
|
|
|
else if(!text.isEmpty())
|
|
|
|
{
|
|
|
|
emit messageLogged(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process.waitForFinished();
|
|
|
|
if(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
}
|
|
|
|
|
2010-12-02 23:26:30 +01:00
|
|
|
emit statusUpdated(100);
|
2010-11-26 00:29:53 +01:00
|
|
|
emit messageLogged(QString().sprintf("\nExited with code: 0x%04X", process.exitCode()));
|
|
|
|
|
2011-12-22 00:06:34 +01:00
|
|
|
if(bTimeout || bAborted || process.exitCode() != EXIT_SUCCESS)
|
2010-11-26 00:29:53 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VorbisEncoder::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;
|
|
|
|
}
|
|
|
|
}
|
2010-11-27 19:41:58 +01:00
|
|
|
else if(containerType.compare("FLAC", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
if(formatType.compare("FLAC", Qt::CaseInsensitive) == 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2010-11-26 00:29:53 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-21 23:25:55 +01:00
|
|
|
|
|
|
|
void VorbisEncoder::setBitrateLimits(int minimumBitrate, int maximumBitrate)
|
|
|
|
{
|
|
|
|
m_configBitrateMinimum = minimumBitrate;
|
|
|
|
m_configBitrateMaximum = maximumBitrate;
|
|
|
|
}
|
2011-01-23 23:03:44 +01:00
|
|
|
|
|
|
|
void VorbisEncoder::setSamplingRate(int value)
|
|
|
|
{
|
|
|
|
m_configSamplingRate = value;
|
|
|
|
}
|
2013-10-02 19:17:33 +02:00
|
|
|
|
|
|
|
const AbstractEncoderInfo *VorbisEncoder::getEncoderInfo(void)
|
|
|
|
{
|
|
|
|
return &g_vorbisEncoderInfo;
|
|
|
|
}
|