QAudioSource Class

The QAudioSource class provides an interface for receiving audio data from an audio input device. 更多...

頭: #include <QAudioSource>
CMake: find_package(Qt6 REQUIRED COMPONENTS Multimedia)
target_link_libraries(mytarget PRIVATE Qt6::Multimedia)
qmake: QT += multimedia
繼承: QObject

公共函數

QAudioSource (const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr)
QAudioSource (const QAudioDevice & audioDevice , const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr)
virtual ~QAudioSource ()
qsizetype bufferSize () const
qsizetype bytesAvailable () const
qint64 elapsedUSecs () const
QAudio::Error error () const
QAudioFormat format () const
bool isNull () const
qint64 processedUSecs () const
void reset ()
void resume ()
void setBufferSize (qsizetype value )
void setVolume (qreal volume )
void start (QIODevice * device )
QIODevice * start ()
QAudio::State state () const
void stop ()
void suspend ()
qreal volume () const

信號

void stateChanged (QAudio::State state )

詳細描述

You can construct an audio input with the system's default audio input device. It is also possible to create QAudioSource with a specific QAudioDevice 。當創建音頻輸入時,還應發送 QAudioFormat 用於錄製 (見 QAudioFormat 類描述瞭解細節)。

要錄製到文件:

QAudioSource lets you record audio with an audio input device. The default constructor of this class will use the systems default audio device, but you can also specify a QAudioDevice for a specific device. You also need to pass in the QAudioFormat in which you wish to record.

Starting up the QAudioSource is simply a matter of calling start () 采用 QIODevice opened for writing. For instance, to record to a file, you can:

QFile destinationFile;   // Class member
QAudioSource* audio; // Class member
{
    destinationFile.setFileName("/tmp/test.raw");
    destinationFile.open( QIODevice::WriteOnly | QIODevice::Truncate );
    QAudioFormat format;
    // Set up the desired format, for example:
    format.setSampleRate(8000);
    format.setChannelCount(1);
    format.setSampleFormat(QAudioFormat::UInt8);
    QAudioDevice info = QMediaDevices::defaultAudioInput();
    if (!info.isFormatSupported(format)) {
        qWarning() << "Default format not supported, trying to use the nearest.";
    }
    audio = new QAudioSource(format, this);
    connect(audio, SIGNAL(stateChanged(QAudio::State)), this, SLOT(handleStateChanged(QAudio::State)));
    QTimer::singleShot(3000, this, SLOT(stopRecording()));
    audio->start(&destinationFile);
    // Records audio for 3000ms
}
					

This will start recording if the format specified is supported by the input device (you can check this with QAudioDevice::isFormatSupported (). In case there are any snags, use the error () function to check what went wrong. We stop recording in the stopRecording() 槽。

void AudioInputExample::stopRecording()
{
    audio->stop();
    destinationFile.close();
    delete audio;
}
					

At any point in time, QAudioSource will be in one of four states: active, suspended, stopped, or idle. These states are specified by the QAudio::State enum. You can request a state change directly through suspend (), resume (), stop (), reset (),和 start (). The current state is reported by state (). QAudioSink will also signal you when the state changes ( stateChanged ()).

QAudioSource provides several ways of measuring the time that has passed since the start () of the recording. The processedUSecs() function returns the length of the stream in microseconds written, i.e., it leaves out the times the audio input was suspended or idle. The elapsedUSecs () function returns the time elapsed since start () was called regardless of which states the QAudioSource has been in.

If an error should occur, you can fetch its reason with error (). The possible error reasons are described by the QAudio::Error enum. The QAudioSource will enter the StoppedState when an error is encountered. Connect to the stateChanged () signal to handle the error:

void AudioInputExample::handleStateChanged(QAudio::State newState)
{
    switch (newState) {
        case QAudio::StoppedState:
            if (audio->error() != QAudio::NoError) {
                // Error handling
            } else {
                // Finished recording
            }
            break;
        case QAudio::ActiveState:
            // Started recording - read from IO device
            break;
        default:
            // ... other cases as appropriate
            break;
    }
}
					

另請參閱 QAudioSink and QAudioDevice .

成員函數文檔編製

[explicit] QAudioSource:: QAudioSource (const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr)

Construct a new audio input and attach it to parent . The default audio input device is used with the output format 參數。

[explicit] QAudioSource:: QAudioSource (const QAudioDevice & audioDevice , const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr)

Construct a new audio input and attach it to parent . The device referenced by audioDevice is used with the input format 參數。

[虛擬] QAudioSource:: ~QAudioSource ()

Destroy this audio input.

qsizetype QAudioSource:: bufferSize () const

Returns the audio buffer size in bytes.

If called before start (), returns platform default value. If called before start () but setBufferSize () was called prior, returns value set by setBufferSize (). If called after start (), returns the actual buffer size being used. This may not be what was set previously by setBufferSize ().

另請參閱 setBufferSize ().

qsizetype QAudioSource:: bytesAvailable () const

Returns the amount of audio data available to read in bytes.

Note: returned value is only valid while in QAudio::ActiveState or QAudio::IdleState state, otherwise returns zero.

qint64 QAudioSource:: elapsedUSecs () const

Returns the microseconds since start () was called, including time in Idle and Suspend states.

QAudio::Error QAudioSource:: error () const

返迴錯誤狀態。

QAudioFormat QAudioSource:: format () const

返迴 QAudioFormat 被使用。

bool QAudioSource:: isNull () const

返迴 true if the audio source is null ,否則返迴 false .

qint64 QAudioSource:: processedUSecs () const

Returns the amount of audio data processed since start () was called in microseconds.

void QAudioSource:: reset ()

Drops all audio data in the buffers, resets buffers to zero.

void QAudioSource:: resume ()

再繼續處理音頻數據後於 suspend ().

設置 error () 到 QAudio::NoError . Sets state () 到 QAudio::ActiveState if you previously called start( QIODevice *). Sets state () 到 QAudio::IdleState if you previously called start (). emits stateChanged () 信號。

void QAudioSource:: setBufferSize ( qsizetype value )

Sets the audio buffer size to value 字節。

Note: This function can be called anytime before start (), calls to this are ignored after start (). It should not be assumed that the buffer size set is the actual buffer size used, calling bufferSize () anytime after start () will return the actual buffer size being used.

另請參閱 bufferSize ().

void QAudioSource:: setVolume ( qreal volume )

Sets the input volume to volume .

按綫性比例縮放的音量是從 0.0 (無聲) 到 1.0 (全音量)。將鉗製超齣此範圍的值。

If the device does not support adjusting the input volume then volume will be ignored and the input volume will remain at 1.0.

默認音量為 1.0 .

Note: Adjustments to the volume will change the volume of this audio stream, not the global volume.

另請參閱 volume ().

void QAudioSource:: start ( QIODevice * device )

開始將音頻數據從係統的音頻輸入傳輸到 devicedevice 必須已打開以 WriteOnly , 追加 or ReadWrite 模式。

QAudioSource 能夠成功獲取音頻數據, state () 返迴 QAudio::ActiveState or QAudio::IdleState , error () 返迴 QAudio::NoError stateChanged () 信號發射。

若在此過程中齣現問題, error () 返迴 QAudio::OpenError , state () 返迴 QAudio::StoppedState stateChanged () 信號發射。

另請參閱 QIODevice .

QIODevice *QAudioSource:: start ()

返迴的指針指嚮內部 QIODevice 用於傳輸來自係統音頻輸入的數據。設備已打開且 read () can read data directly from it.

注意: 指針將變為無效,在流被停止或啓動另一個流之後。

QAudioSource 能夠訪問係統音頻設備, state () 返迴 QAudio::IdleState , error () 返迴 QAudio::NoError stateChanged () 信號發射。

若在此過程中齣現問題, error () 返迴 QAudio::OpenError , state () 返迴 QAudio::StoppedState stateChanged () 信號發射。

另請參閱 QIODevice .

QAudio::State QAudioSource:: state () const

返迴音頻處理的狀態。

[signal] void QAudioSource:: stateChanged ( QAudio::State state )

此信號被發射當設備 state 已改變。

void QAudioSource:: stop ()

Stops the audio input, detaching from the system resource.

設置 error () 到 QAudio::NoError , state () 到 QAudio::StoppedState and emit stateChanged () 信號。

void QAudioSource:: suspend ()

Stops processing audio data, preserving buffered audio data.

設置 error () 到 QAudio::NoError , state () 到 QAudio::SuspendedState and emit stateChanged () 信號。

qreal QAudioSource:: volume () const

返迴輸入音量。

If the device does not support adjusting the input volume the returned value will be 1.0.

另請參閱 setVolume ().