Use "remix" filter instead of "-c" option for downmixing. Hopefully gives better results. Default WAVE channel ordering is assumed.

This commit is contained in:
LoRd_MuldeR 2011-08-06 21:52:56 +02:00
parent 1fdfab1160
commit 3f90295c70
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
#define VER_LAMEXP_MINOR_LO 3
#define VER_LAMEXP_TYPE Alpha
#define VER_LAMEXP_PATCH 8
#define VER_LAMEXP_BUILD 624
#define VER_LAMEXP_BUILD 625
///////////////////////////////////////////////////////////////////////////////
// Tools versions

View File

@ -51,8 +51,8 @@ bool DownmixFilter::apply(const QString &sourceFile, const QString &outputFile,
args << "-V3" << "-S";
args << "--guard" << "--temp" << ".";
args << QDir::toNativeSeparators(sourceFile);
args << "-c2";
args << QDir::toNativeSeparators(outputFile);
args << "remix" << "1,3,4,5,7,9" << "2,3,4,6,8,9";
if(!startProcess(process, m_binary, args))
{