QAudioInputSelectorControl¶
The
QAudioInputSelectorControl
class provides an audio input selector media control. More…

Detailed Description¶
The
QAudioInputSelectorControl
class provides descriptions of the audio inputs available on a system and allows one to be selected as the audio input of a media service.The interface name of
QAudioInputSelectorControl
isorg.qt-project.qt.audioinputselectorcontrol/5.0
as defined inQAudioInputSelectorControl_iid
.See also
-
class
QAudioInputSelectorControl
([parent=None])¶ - param parent
QObject
Constructs a new audio input selector control with the given
parent
.
-
PySide2.QtMultimedia.QAudioInputSelectorControl.
activeInput
()¶ - Return type
unicode
Returns the name of the currently selected audio input.
See also
-
PySide2.QtMultimedia.QAudioInputSelectorControl.
activeInputChanged
(name)¶ - Parameters
name – unicode
-
PySide2.QtMultimedia.QAudioInputSelectorControl.
availableInputs
()¶ - Return type
Returns a list of the names of the available audio inputs.
-
PySide2.QtMultimedia.QAudioInputSelectorControl.
availableInputsChanged
()¶
-
PySide2.QtMultimedia.QAudioInputSelectorControl.
defaultInput
()¶ - Return type
unicode
Returns the name of the default audio input.
-
PySide2.QtMultimedia.QAudioInputSelectorControl.
inputDescription
(name)¶ - Parameters
name – unicode
- Return type
unicode
Returns the description of the input
name
.
-
PySide2.QtMultimedia.QAudioInputSelectorControl.
setActiveInput
(name)¶ - Parameters
name – unicode
Set the active audio input to
name
.See also