PySide6.QtMultimedia.QAudioInput¶
- class QAudioInput¶
- Represents an input channel for audio. More… - Synopsis¶- Properties¶- Methods¶- def - __init__()
- def - device()
- def - isMuted()
- def - volume()
 - Slots¶- def - setDevice()
- def - setMuted()
- def - setVolume()
 - Signals¶- def - deviceChanged()
- def - mutedChanged()
- def - volumeChanged()
 - 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¶- This class represents an input channel that can be used together with - QMediaCaptureSession. It enables the selection of the physical input device to be used, muting the channel, and changing the channel’s volume.- Note - Properties can be used directly when - from __feature__ import true_propertyis used or via accessor functions otherwise.- property deviceᅟ: QAudioDevice¶
 - This property holds The audio device connected to this input.. - The device property represents the audio device connected to this input. This property can be used to select an input device from the - audioInputs()list.- You can select the system default audio input by setting this property to a default constructed - QAudioDeviceobject.- Access functions:
- Signal - deviceChanged()
 
 - property mutedᅟ: bool¶
 - This property holds The muted state of the current media.. - The value will be - trueif the input is muted; otherwise- false.- Access functions:
- Signal - mutedChanged()
 
 - property volumeᅟ: float¶
 - The property returns the volume of the audio input. - Access functions:
- Signal - volumeChanged()
 
 - __init__(deviceInfo[, parent=None])
- Parameters:
- deviceInfo – - QAudioDevice
- parent – - QObject
 
 
 - device()¶
- Return type:
 - See also 
 - Getter of property - deviceᅟ.- deviceChanged()¶
 - Notification signal of property - deviceᅟ.- isMuted()¶
- Return type:
- bool 
 
 - Getter of property - mutedᅟ.- mutedChanged(muted)¶
- Parameters:
- muted – bool 
 
 - Notification signal of property - mutedᅟ.- setDevice(device)¶
- Parameters:
- device – - QAudioDevice
 - See also 
 - Setter of property - deviceᅟ.- Setter of property - mutedᅟ.- Setter of property - volumeᅟ.- volume()¶
- Return type:
- float 
 - See also 
 - Getter of property - volumeᅟ.- volumeChanged(volume)¶
- Parameters:
- volume – float 
 
 - Notification signal of property - volumeᅟ.