Why am I missing the Qt Multimedia functionality?

13,527

Solution 1

Try including it like this:

#include <QtMultimedia/QAudioOutput>

Solution 2

Without more info it's hard to say, but possibly your include paths are just incomplete. Read https://doc.qt.io/archives/qt-4.7/qtmultimedia.html and be sure to add

QT += multimedia

to your project file.

Solution 3

try sudo apt-get install qtmultimedia5-dev

Share:
13,527
satg
Author by

satg

Updated on June 23, 2022

Comments

  • satg
    satg almost 2 years

    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.

  • user1016736
    user1016736 over 10 years
    The audiooutput example includes the 'audiooutput.pro file which has the following: "QT += multimedia widgets"