2010-11-17 19:35:50 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
|
|
|
// Copyright (C) 2004-2010 LoRd_MuldeR <MuldeR2@GMX.de>
|
|
|
|
//
|
|
|
|
// 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_MP3.h"
|
|
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
#include "Model_Settings.h"
|
|
|
|
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
|
|
|
#define IS_UNICODE(STR) (qstricmp(STR.toUtf8().constData(), QString::fromLocal8Bit(STR.toLocal8Bit()).toUtf8().constData()))
|
|
|
|
|
|
|
|
MP3Encoder::MP3Encoder(void) : m_binary(lamexp_lookup_tool("lame.exe"))
|
|
|
|
{
|
|
|
|
if(m_binary.isEmpty())
|
|
|
|
{
|
|
|
|
throw "Error initializing MP3 encoder. Tool 'lame.exe' is not registred!";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MP3Encoder::~MP3Encoder(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-11-20 02:14:22 +01:00
|
|
|
bool MP3Encoder::encode(const AudioFileModel &sourceFile, const QString &outputFile, volatile bool *abortFlag)
|
2010-11-17 19:35:50 +01:00
|
|
|
{
|
|
|
|
const QString baseName = QFileInfo(outputFile).fileName();
|
2010-11-20 02:14:22 +01:00
|
|
|
emit statusUpdated(0);
|
2010-11-17 19:35:50 +01:00
|
|
|
|
|
|
|
QProcess process;
|
|
|
|
process.setProcessChannelMode(QProcess::MergedChannels);
|
|
|
|
process.setReadChannel(QProcess::StandardOutput);
|
|
|
|
|
|
|
|
QStringList args;
|
|
|
|
args << "--nohist";
|
|
|
|
args << "-h";
|
|
|
|
|
|
|
|
switch(m_configRCMode)
|
|
|
|
{
|
|
|
|
case SettingsModel::VBRMode:
|
|
|
|
args << "-V" << QString::number(9 - min(9, m_configBitrate));
|
|
|
|
break;
|
|
|
|
case SettingsModel::ABRMode:
|
|
|
|
args << "--abr" << QString::number(SettingsModel::mp3Bitrates[min(13, m_configBitrate)]);
|
|
|
|
break;
|
|
|
|
case SettingsModel::CBRMode:
|
|
|
|
args << "--cbr";
|
|
|
|
args << "-b" << QString::number(SettingsModel::mp3Bitrates[min(13, m_configBitrate)]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw "Bad rate-control mode!";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!sourceFile.fileName().isEmpty()) args << (IS_UNICODE(sourceFile.fileName()) ? "--uTitle" : "--lTitle") << sourceFile.fileName();
|
|
|
|
if(!sourceFile.fileArtist().isEmpty()) args << (IS_UNICODE(sourceFile.fileArtist()) ? "--uArtist" : "--lArtist") << sourceFile.fileArtist();
|
2010-11-20 19:16:04 +01:00
|
|
|
if(!sourceFile.fileAlbum().isEmpty()) args << (IS_UNICODE(sourceFile.fileAlbum()) ? "--uAlbum" : "--lAlbum") << sourceFile.fileAlbum();
|
2010-11-17 19:35:50 +01:00
|
|
|
if(!sourceFile.fileGenre().isEmpty()) args << (IS_UNICODE(sourceFile.fileGenre()) ? "--uGenre" : "--lGenre") << sourceFile.fileGenre();
|
|
|
|
if(!sourceFile.fileComment().isEmpty()) args << (IS_UNICODE(sourceFile.fileComment()) ? "--uComment" : "--lComment") << sourceFile.fileComment();
|
2010-11-20 19:16:04 +01:00
|
|
|
if(sourceFile.fileYear()) args << "--ty" << QString::number(sourceFile.fileYear());
|
|
|
|
if(sourceFile.filePosition()) args << "--tn" << QString::number(sourceFile.filePosition());
|
|
|
|
|
|
|
|
//args << "--tv" << QString().sprintf("Encoder=LameXP v%d.%02d.%04d [%s]", lamexp_version_major(), lamexp_version_minor(), lamexp_version_build(), lamexp_version_release());
|
2010-11-17 19:35:50 +01:00
|
|
|
|
|
|
|
args << QDir::toNativeSeparators(sourceFile.filePath());
|
|
|
|
args << QDir::toNativeSeparators(outputFile);
|
|
|
|
|
2010-11-20 19:16:04 +01:00
|
|
|
process.start(m_binary, args);
|
2010-11-17 19:35:50 +01:00
|
|
|
if(!process.waitForStarted())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-11-20 02:14:22 +01:00
|
|
|
bool bTimeout = false;
|
|
|
|
bool bAborted = false;
|
|
|
|
|
2010-11-17 19:35:50 +01:00
|
|
|
QRegExp regExp("\\(.*(\\d+)%\\)\\|");
|
|
|
|
|
|
|
|
while(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
2010-11-20 02:14:22 +01:00
|
|
|
if(*abortFlag)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
bAborted = true;
|
|
|
|
break;
|
|
|
|
}
|
2010-11-17 19:35:50 +01:00
|
|
|
process.waitForReadyRead();
|
2010-11-20 02:14:22 +01:00
|
|
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
qWarning("LAME process timed out <-- killing!");
|
|
|
|
bTimeout = true;
|
|
|
|
break;
|
|
|
|
}
|
2010-11-17 19:35:50 +01:00
|
|
|
while(process.bytesAvailable() > 0)
|
|
|
|
{
|
|
|
|
QByteArray line = process.readLine();
|
2010-11-20 02:14:22 +01:00
|
|
|
QString text = QString::fromUtf8(line.constData()).simplified();
|
|
|
|
if(regExp.lastIndexIn(text) >= 0)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
int progress = regExp.cap(1).toInt(&ok);
|
|
|
|
if(ok) emit statusUpdated(progress);
|
|
|
|
}
|
|
|
|
else if(!text.isEmpty())
|
2010-11-17 19:35:50 +01:00
|
|
|
{
|
2010-11-20 02:14:22 +01:00
|
|
|
qDebug("%s", text.toUtf8().constData());
|
2010-11-17 19:35:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process.waitForFinished();
|
|
|
|
if(process.state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
process.kill();
|
|
|
|
process.waitForFinished(-1);
|
|
|
|
}
|
|
|
|
|
2010-11-20 02:14:22 +01:00
|
|
|
if(bTimeout || bAborted || process.exitStatus() != QProcess::NormalExit)
|
2010-11-17 19:35:50 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2010-11-20 02:14:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MP3Encoder::extension(void)
|
|
|
|
{
|
|
|
|
return "mp3";
|
|
|
|
}
|