我正在尝试使用QAudioDecoder类解码.wav文件。即使我已通过添加将QtMultimedia模块包含到我的.pro文件中,
但我收到一个错误,即未找到QAudioDecoder的服务。我看不出问题出在哪里。QT += multimedia
我在 Windows 7 上使用带有 MingGW 4.8 32 位的 Qt 5.1.0。
错误信息:
defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.audiodecode"
.pro文件:
QT += core
QT += multimedia
QT -= gui
TARGET = test
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp
主文件:
#include <QCoreApplication>
#include <QAudioDecoder>
#include <QAudioBuffer>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QString pathToFile = "C:/Users/Mateusz/Documents/Szkola/Sound Processing/Lab1/artificial/easy/506Hz.wav";
QAudioDecoder decoder;
decoder.setSourceFilename(pathToFile);
decoder.start();
while(decoder.bufferAvailable()) {
QAudioBuffer buffer = decoder.read();
qDebug() << "Buffer size: " << buffer.byteCount();
}
return a.exec();
}