Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QAudioDeviceInfo finds no default audio device on Ubuntu

I am trying to run the basic example from the QAudioDeviceInfo class reference, but Qt is not finding a default audio device.

Running this code shows no output:

foreach (const QAudioDeviceInfo &deviceInfo,  QAudioDeviceInfo::availableDevices(QAudio::AudioOutput))
    qDebug() << "Device name: " << deviceInfo.deviceName();

I'm running Qt Creator 2.7.1 with Qt 5.0.2 on Ubuntu 13.10. Qt Multimedia was installed via apt-get. My pro file has QT += multimedia. My header file includes:

#include <QAudio>
#include <QAudioOutput>
#include <QAudioDeviceInfo>

Any ideas as to what I might be doing wrong?

like image 425
maxmcmahon Avatar asked Feb 21 '14 16:02

maxmcmahon


2 Answers

It was fixed with a simple command:

sudo apt-get install libqt5multimedia5-plugins

Qt Multimedia requires this plugin package for audio backend support.

like image 190
maxmcmahon Avatar answered Oct 16 '22 22:10

maxmcmahon


Had same issue in windows. Fixed it by replacing Qt5Multimedia.dll in \Python34\Lib\site-packages\PyQt* with one from \Qt\Tools\QtCreator\bin.

Spend some time finding solution so decided to leave it here.

like image 3
user3733855 Avatar answered Oct 17 '22 00:10

user3733855