QAudioInput Class

代表音频输入通道。更多

头文件: #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)

详细说明

该类表示可与QMediaCaptureSession 一起使用的输入通道。它可以选择要使用的物理输入设备、静音通道和更改通道音量。

属性文档

device : QAudioDevice

此属性表示连接到此输入端的音频设备。

设备属性表示连接到此输入的音频设备。该属性可用于从QMediaDevices::audioInputs() 列表中选择输入设备。

通过将此属性设置为默认构建的QAudioDevice 对象,可以选择系统默认的音频输入。

访问功能:

QAudioDevice device() const
void setDevice(const QAudioDevice &device)

Notifier 信号:

void deviceChanged()

muted : bool

该属性用于保存当前媒体的静音状态。

如果输入处于静音状态,其值将为true ;否则为false

访问功能:

bool isMuted() const
void setMuted(bool muted)

Notifier 信号:

void mutedChanged(bool muted)

volume : float

该属性返回音频输入的音量。

访问功能

float volume() const
void setVolume(float volume)

通知信号:

void volumeChanged(float volume)

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.