121 lines
3.7 KiB
C++
121 lines
3.7 KiB
C++
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
// 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)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool MP3Encoder::encode(const AudioFileModel &sourceFile, const QString &outputFile)
|
||
|
{
|
||
|
const QString baseName = QFileInfo(outputFile).fileName();
|
||
|
emit statusUpdated(baseName);
|
||
|
|
||
|
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();
|
||
|
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();
|
||
|
|
||
|
args << QDir::toNativeSeparators(sourceFile.filePath());
|
||
|
args << QDir::toNativeSeparators(outputFile);
|
||
|
|
||
|
process.start(lamexp_lookup_tool("lame.exe"), args);
|
||
|
if(!process.waitForStarted())
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
QRegExp regExp("\\(.*(\\d+)%\\)\\|");
|
||
|
|
||
|
while(process.state() != QProcess::NotRunning)
|
||
|
{
|
||
|
process.waitForReadyRead();
|
||
|
while(process.bytesAvailable() > 0)
|
||
|
{
|
||
|
QByteArray line = process.readLine();
|
||
|
qDebug("%s", line.constData());
|
||
|
QString text = QString::fromLocal8Bit(line.constData()).simplified();
|
||
|
if(regExp.lastIndexIn(line) >= 0)
|
||
|
{
|
||
|
emit statusUpdated(QString("%1 [%2%]").arg(baseName, regExp.cap(1)));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
process.waitForFinished();
|
||
|
|
||
|
if(process.state() != QProcess::NotRunning)
|
||
|
{
|
||
|
process.kill();
|
||
|
process.waitForFinished(-1);
|
||
|
}
|
||
|
|
||
|
if(process.exitStatus() != QProcess::NormalExit)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|