I am new to Qt and I'm creating a simple application which will playback an audio file. I realized that I am lacking the Qt Multimedia API for audio when I wrote:
#include <QAudioOutput>
..and I get that there is no such file.
I downloaded the latest Qt SDK framework and I can't find a way to add these APIs. I am using Qt creator IDE.
IS there a way to get the multimedia functionality working maybe as an add-on or some other way?
Thanks.
QT += multimedia
and includingQAudioOutput
in another project worked. Do you have the multimedia headers in e.g.C:\QtSDK\Desktop\Qt\4.7.2\mingw\include\QtMultimedia
? – Gunpoint