QMediaDevices#
The QMediaDevices
class provides information about available multimedia input and output devices. More…
New in version 6.1.
Synopsis#
Properties#
Signals#
def
audioInputsChanged
()def
audioOutputsChanged
()def
videoInputsChanged
()
Static functions#
def
audioInputs
()def
audioOutputs
()def
defaultAudioInput
()def
defaultAudioOutput
()def
defaultVideoInput
()def
videoInputs
()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
The QMediaDevices
class provides information about the available multimedia devices and the system defaults. It monitors the following three groups:
Audio input devices (Microphones)
Audio output devices (Speakers, Headsets)
Video input devices (Cameras)
QMediaDevices
provides a separate list for each device group. If it detects that a new device has been connected to the system or an attached device has been disconnected from the system, it will update the corresponding device list and emit a signal notifying about the change.
QMediaDevices
monitors the system defaults for each device group. It will notify about any changes done through the system settings. For example, if the user selects a new default audio output in the system settings, QMediaDevices
will update the default audio output accordingly and emit a signal. If the system does not provide a default for a camera or an audio input, QMediaDevices
will select the first device from the list as the default device.
While using the default input and output devices is often sufficient for playing back or recording multimedia, there is often a need to explicitly select the device to be used.
QMediaDevices
is a singleton object and all getters are thread-safe.
- class PySide6.QtMultimedia.QMediaDevices([parent=None])#
- Parameters:
parent –
PySide6.QtCore.QObject
Note
Properties can be used directly when from __feature__ import true_property
is used or via accessor functions otherwise.
- property PᅟySide6.QtMultimedia.QMediaDevices.audioInputs#
Returns a list of available audio input devices on the system.
Those devices are usually microphones. Devices can be either built-in, or connected through for example USB or Bluetooth.
- Access functions:
audioInputs
()Signal
audioInputsChanged
()
- property PᅟySide6.QtMultimedia.QMediaDevices.audioOutputs#
Returns a list of available audio output devices on the system.
Those devices are usually loudspeakers or head sets. Devices can be either built-in, or connected through for example USB or Bluetooth.
- Access functions:
audioOutputs
()Signal
audioOutputsChanged
()
- property PᅟySide6.QtMultimedia.QMediaDevices.defaultAudioInput: PySide6.QtMultimedia.QAudioDevice#
Returns the default audio input device.
The default device can change during the runtime of the application. The audioInputsChanged()
signal is emitted in this case.
- Access functions:
Signal
audioInputsChanged
()
- property PᅟySide6.QtMultimedia.QMediaDevices.defaultAudioOutput: PySide6.QtMultimedia.QAudioDevice#
Returns the default audio output device.
The default device can change during the runtime of the application. The audioOutputsChanged()
signal is emitted in this case.
- Access functions:
Signal
audioOutputsChanged
()
- property PᅟySide6.QtMultimedia.QMediaDevices.defaultVideoInput: PySide6.QtMultimedia.QCameraDevice#
Returns the default camera on the system.
Note
The returned object should be checked using isNull() before being used, in case there is no default camera or no cameras at all.
The default device can change during the runtime of the application. The videoInputsChanged()
signal is emitted in that case.
See also
- Access functions:
Signal
videoInputsChanged
()
- property PᅟySide6.QtMultimedia.QMediaDevices.videoInputs#
Returns a list of available cameras on the system.
- Access functions:
videoInputs
()Signal
videoInputsChanged
()
- static PySide6.QtMultimedia.QMediaDevices.audioInputs()#
Getter of property audioInputs
.
- PySide6.QtMultimedia.QMediaDevices.audioInputsChanged()#
Notification signal of property audioInputs
.
- static PySide6.QtMultimedia.QMediaDevices.audioOutputs()#
Getter of property audioOutputs
.
- PySide6.QtMultimedia.QMediaDevices.audioOutputsChanged()#
Notification signal of property audioOutputs
.
- static PySide6.QtMultimedia.QMediaDevices.defaultAudioInput()#
- Return type:
Getter of property defaultAudioInput
.
- static PySide6.QtMultimedia.QMediaDevices.defaultAudioOutput()#
- Return type:
Getter of property defaultAudioOutput
.
- static PySide6.QtMultimedia.QMediaDevices.defaultVideoInput()#
- Return type:
Getter of property defaultVideoInput
.
- static PySide6.QtMultimedia.QMediaDevices.videoInputs()#
Getter of property videoInputs
.
- PySide6.QtMultimedia.QMediaDevices.videoInputsChanged()#
Notification signal of property videoInputs
.