Home · All Classes · Modules

QAudioDeviceInfo Class Reference
[QtMultimedia module]

The QAudioDeviceInfo class provides an interface to query audio devices and their functionality. More...

Methods

Static Methods


Detailed Description

The QAudioDeviceInfo class provides an interface to query audio devices and their functionality.

QAudioDeviceInfo lets you query for audio devices--such as sound cards and USB headsets--that are currently available on the system. The audio devices available are dependent on the platform or audio plugins installed.

You can also query each device for the formats it supports. A format in this context is a set consisting of a specific byte order, channel, codec, frequency, sample rate, and sample type. A format is represented by the QAudioFormat class.

The values supported by the the device for each of these parameters can be fetched with supportedByteOrders(), supportedChannelCounts(), supportedCodecs(), supportedSampleRates(), supportedSampleSizes(), and supportedSampleTypes(). The combinations supported are dependent on the platform, audio plugins installed and the audio device capabilities. If you need a specific format, you can check if the device supports it with isFormatSupported(), or fetch a supported format that is as close as possible to the format with nearestFormat(). For instance:

         QAudioFormat format;
         format.setFrequency(44100);
         ...
         format.setSampleType(QAudioFormat.SignedInt);

         QAudioDeviceInfo info(QAudioDeviceInfo.defaultOutputDevice());

         if (!info.isFormatSupported(format))
             format = info.nearestFormat(format);

A QAudioDeviceInfo is used by Qt to construct classes that communicate with the device--such as QAudioInput, and QAudioOutput. The static functions defaultInputDevice(), defaultOutputDevice(), and availableDevices() let you get a list of all available devices. Devices are fetch according to the value of mode this is specified by the QAudio.Mode enum. The QAudioDeviceInfo returned are only valid for the QAudio.Mode.

For instance:

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

In this code sample, we loop through all devices that are able to output sound, i.e., play an audio stream in a supported format. For each device we find, we simply print the deviceName().


Method Documentation

QAudioDeviceInfo.__init__ (self)

Constructs an empty QAudioDeviceInfo object.

QAudioDeviceInfo.__init__ (self, QAudioDeviceInfo other)

Constructs a copy of other.

list-of-QAudioDeviceInfo QAudioDeviceInfo.availableDevices (QAudio.Mode mode)

Returns a list of audio devices that support mode.

QAudioDeviceInfo QAudioDeviceInfo.defaultInputDevice ()

Returns the name of the default input audio device. All platform and audio plugin implementations provide a default audio device to use.

QAudioDeviceInfo QAudioDeviceInfo.defaultOutputDevice ()

Returns the name of the default output audio device. All platform and audio plugin implementations provide a default audio device to use.

QString QAudioDeviceInfo.deviceName (self)

Returns human readable name of audio device.

Device names vary depending on platform/audio plugin being used.

They are a unique string identifiers for the audio device.

eg. default, Intel, U0x46d0x9a4

bool QAudioDeviceInfo.isFormatSupported (self, QAudioFormat format)

Returns true if settings are supported by the audio device of this QAudioDeviceInfo.

bool QAudioDeviceInfo.isNull (self)

Returns whether this QAudioDeviceInfo object holds a device definition.

QAudioFormat QAudioDeviceInfo.nearestFormat (self, QAudioFormat format)

Returns closest QAudioFormat to settings that system audio supports.

These settings are provided by the platform/audio plugin being used.

They also are dependent on the QAudio.Mode being used.

QAudioFormat QAudioDeviceInfo.preferredFormat (self)

Returns QAudioFormat of default settings.

These settings are provided by the platform/audio plugin being used.

They also are dependent on the QAudio.Mode being used.

A typical audio system would provide something like:

list-of-QAudioFormat.Endian QAudioDeviceInfo.supportedByteOrders (self)

Returns a list of supported byte orders.

list-of-int QAudioDeviceInfo.supportedChannelCounts (self)

Returns a list of supported channel counts.

This function was introduced in Qt 4.7.

list-of-int QAudioDeviceInfo.supportedChannels (self)

QStringList QAudioDeviceInfo.supportedCodecs (self)

Returns a list of supported codecs.

All platform and plugin implementations should provide support for:

"audio/pcm" - Linear PCM

For writing plugins to support additional codecs refer to:

http://www.iana.org/assignments/media-types/audio/

list-of-int QAudioDeviceInfo.supportedFrequencies (self)

list-of-int QAudioDeviceInfo.supportedSampleRates (self)

Returns a list of supported sample rates.

This function was introduced in Qt 4.7.

list-of-int QAudioDeviceInfo.supportedSampleSizes (self)

Returns a list of supported sample sizes.

list-of-QAudioFormat.SampleType QAudioDeviceInfo.supportedSampleTypes (self)

Returns a list of supported sample types.


PyQt 4.11.4 for X11Copyright © Riverbank Computing Ltd and The Qt Company 2015Qt 4.8.7