錶示音頻的輸入通道。 更多...
| 頭: |
#include <QAudioInput>
|
| CMake: |
find_package(Qt6 REQUIRED COMPONENTS Multimedia)
target_link_libraries(mytarget PRIVATE Qt6::Multimedia)
|
| qmake: |
QT += multimedia
|
| 在 QML: | AudioInput |
| 繼承: | QObject |
| QAudioDevice | device () const |
| bool | isMuted () const |
| float | volume () const |
| void | setDevice (const QAudioDevice & device ) |
| void | setMuted (bool muted ) |
| void | setVolume (float volume ) |
| void | deviceChanged () |
| void | mutedChanged (bool muted ) |
| void | volumeChanged (float volume ) |
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.
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 QMediaDevices::audioInputs () list.
You can select the system default audio input by setting this property to a default constructed QAudioDevice 對象。
訪問函數:
| QAudioDevice | device () const |
| void | setDevice (const QAudioDevice & device ) |
通知程序信號:
| void | deviceChanged () |
此特性保持當前媒體的靜音狀態。
The value will be
true
if the input is muted; otherwise
false
.
訪問函數:
| bool | isMuted () const |
| void | setMuted (bool muted ) |
通知程序信號:
| void | mutedChanged (bool muted ) |
The property returns the volume of the audio input.
訪問函數:
| float | volume () const |
| void | setVolume (float volume ) |
通知程序信號:
| void | volumeChanged (float volume ) |