QAudioSink 類提供將音頻數據發送給音頻輸齣設備的接口。 更多...
| 頭: |
#include <QAudioSink>
|
| CMake: |
find_package(Qt6 REQUIRED COMPONENTS Multimedia)
target_link_libraries(mytarget PRIVATE Qt6::Multimedia)
|
| qmake: |
QT += multimedia
|
| 繼承: | QObject |
| QAudioSink (const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr) | |
| QAudioSink (const QAudioDevice & audioDevice , const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr) | |
| virtual | ~QAudioSink () override |
(從 6.10 起)
qsizetype
|
bufferFrameCount () const |
| qsizetype | bufferSize () const |
| qsizetype | bytesFree () const |
| qint64 | elapsedUSecs () const |
| QtAudio::Error | error () const |
| QAudioFormat | format () const |
(從 6.10 起)
qsizetype
|
framesFree () const |
| bool | isNull () const |
| qint64 | processedUSecs () const |
| void | reset () |
| void | resume () |
(從 6.10 起)
void
|
setBufferFrameCount (qsizetype value ) |
| void | setBufferSize (qsizetype value ) |
| void | setVolume (qreal volume ) |
| QIODevice * | start () |
| void | start (QIODevice * device ) |
| QtAudio::State | state () const |
| void | stop () |
| void | suspend () |
| qreal | volume () const |
| void | stateChanged (QtAudio::State state ) |
可以采用係統默認音頻輸齣設備構建音頻輸齣。也可以創建 QAudioSink 采用特定 QAudioDevice 。當創建音頻輸齣時,還應發送 QAudioFormat 用於迴放 (見 QAudioFormat 類描述瞭解細節)。
要播放文件:
開始播放音頻流的問題是隻需調用 start () 采用 QIODevice . QAudioSink will then fetch the data it needs from the io device. So playing back an audio file is as simple as:
QFile sourceFile; // class member. QAudioSink* audio; // class member. { sourceFile.setFileName("/tmp/test.raw"); sourceFile.open(QIODevice::ReadOnly); QAudioFormat format; // Set up the format, eg. format.setSampleRate(44100); format.setChannelCount(1); format.setSampleFormat(QAudioFormat::Int16); QAudioDevice info(QMediaDevices::defaultAudioOutput()); if (!info.isFormatSupported(format)) { qWarning() << "Raw audio format not supported by backend, cannot play audio."; return; } audio = new QAudioSink(format, this); connect(audio, QAudioSink::stateChanged, this, &AudioInputExample::handleStateChanged); audio->start(&sourceFile); }
文件將開始播放,假定音頻係統和輸齣設備支持它。若運氣不好,校驗怎麼瞭是采用 error () 函數。
文件播放完成後,需要停止設備:
void AudioOutputExample::stopAudioOutput() { audio->stop(); sourceFile.close(); delete audio; }
At any given time, the QAudioSink will be in one of four states: active, suspended, stopped, or idle. These states are described by the
QtAudio::State
enum. State changes are reported through the
stateChanged
() signal. You can use this signal to, for instance, update the GUI of the application; the mundane example here being changing the state of a
play/pause
button. You request a state change directly with
suspend
(),
stop
(),
reset
(),
resume
(),和
start
().
If an error occurs, you can fetch the error type 采用 error () function. Please see the QtAudio::Error enum for a description of the possible errors that are reported. The QAudioSink will enter the StoppedState when an error is encountered.
You can check for errors by connecting to the stateChanged () signal:
void AudioOutputExample::handleStateChanged(QtAudio::State newState) { switch (newState) { case QtAudio::IdleState: // Finished playing (no more data) AudioOutputExample::stopAudioOutput(); break; case QtAudio::StoppedState: // Stopped for other reasons if (audio->error() != QtAudio::NoError) { // Error handling } break; default: // ... other cases as appropriate break; } }
另請參閱 QAudioSource and QAudioDevice .
[explicit]
QAudioSink::
QAudioSink
(const
QAudioFormat
&
format
= QAudioFormat(),
QObject
*
parent
= nullptr)
Construct a new audio output and attach it to parent . The default audio output device is used with the output format parameters. If format is default-initialized, the format will be set to the preferred format of the audio device.
[explicit]
QAudioSink::
QAudioSink
(const
QAudioDevice
&
audioDevice
, const
QAudioFormat
&
format
= QAudioFormat(),
QObject
*
parent
= nullptr)
Construct a new audio output and attach it to parent . The device referenced by audioDevice is used with the output format parameters. If format is default-initialized, the format will be set to the preferred format of audioDevice .
[override virtual noexcept]
QAudioSink::
~QAudioSink
()
銷毀此音頻輸齣。
This will release any system resources used and free any buffers.
[since 6.10]
qsizetype
QAudioSink::
bufferFrameCount
() const
Returns the audio buffer size in frames.
If called before
start
(), returns platform default value. If called before
start()
but
setBufferSize
() 或
setBufferFrameCount
() was called prior, returns value set by
setBufferSize()
or
setBufferFrameCount()
. If called after
start()
, returns the actual buffer size being used. This may not be what was set previously by
setBufferSize()
or
setBufferFrameCount()
.
該函數在 Qt 6.10 引入。
另請參閱 setBufferFrameCount () 和 bufferSize .
Returns the audio buffer size in bytes.
If called before
start
(), returns platform default value. If called before
start()
but
setBufferSize
() 或
setBufferFrameCount
() was called prior, returns value set by
setBufferSize()
or
setBufferFrameCount()
. If called after
start()
, returns the actual buffer size being used. This may not be what was set previously by
setBufferSize()
or
setBufferFrameCount()
.
另請參閱 setBufferSize () 和 bufferFrameCount .
Returns the number of free bytes available in the audio buffer.
注意: The returned value is only valid while in QtAudio::ActiveState or QtAudio::IdleState state, otherwise returns zero.
另請參閱 framesFree .
Returns the microseconds since start () was called, including time in Idle and Suspend states.
返迴錯誤狀態。
返迴 QAudioFormat 被使用。
[since 6.10]
qsizetype
QAudioSink::
framesFree
() const
Returns the number of free frames available in the audio buffer.
注意: The returned value is only valid while in QtAudio::ActiveState or QtAudio::IdleState state, otherwise returns zero.
該函數在 Qt 6.10 引入。
另請參閱 bytesFree .
返迴
true
是
QAudioSink
instance is
null
,否則返迴
false
.
Returns the amount of audio data processed since start () was called (in microseconds).
Immediately halts audio output and discards any audio data currently in the buffers. All pending audio data pushed to QIODevice 被忽略。
另請參閱 stop ().
再繼續處理音頻數據後於 suspend ().
設置 state () to the state the sink had when suspend () was called, and sets error () to QAudioError::NoError. This function does nothing if the audio sink's state is not QtAudio::SuspendedState .
[since 6.10]
void
QAudioSink::
setBufferFrameCount
(
qsizetype
value
)
Sets the audio buffer size to value in frame count.
注意: 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 - call bufferFrameCount () anytime after start () to return the actual buffer size being used.
該函數在 Qt 6.10 引入。
另請參閱 bufferFrameCount () 和 setBufferSize .
Sets the audio buffer size to value in bytes.
注意: 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 - call bufferSize () anytime after start () to return the actual buffer size being used.
另請參閱 bufferSize () 和 setBufferFrameCount .
把輸齣音量設為 volume .
按綫性比例縮放的音量是從
0.0
(無聲) 到
1.0
(全音量)。將鉗製超齣此範圍的值。
默認音量為
1.0
.
注意: Adjustments to the volume will change the volume of this audio stream, not the global volume.
UI volume controls should usually be scaled non-linearly. For example, using a logarithmic scale will produce linear changes in perceived loudness, which is what a user would normally expect from a volume control. See QtAudio::convertVolume () 瞭解更多細節。
另請參閱 volume ().
返迴的指針指嚮內部 QIODevice being used to transfer data to the system's audio output. The device will already be open and write () can write data directly to it.
注意: 指針將變為無效,在流被停止或啓動另一個流之後。
若 QAudioSink 能夠訪問係統音頻設備, state () 返迴 QtAudio::IdleState , error () 返迴 QtAudio::NoError 和 stateChanged () 信號發射。
若在此過程中齣現問題, error () 返迴 QtAudio::OpenError , state () 返迴 QtAudio::StoppedState 和 stateChanged () 信號發射。
另請參閱 QIODevice .
Starts transferring audio data from the device to the system's audio output. The device 必須已打開以 ReadOnly or ReadWrite 模式。
若 QAudioSink is able to successfully output audio data, state () 返迴 QtAudio::ActiveState , error () 返迴 QtAudio::NoError 和 stateChanged () 信號發射。
若在此過程中齣現問題, error () 返迴 QtAudio::OpenError , state () 返迴 QtAudio::StoppedState 和 stateChanged () 信號發射。
另請參閱 QIODevice .
返迴音頻處理的狀態。
[signal]
void
QAudioSink::
stateChanged
(
QtAudio::State
state
)
此信號被發射當設備 state has changed. This is the current state of the audio output.
注意:
The
QtAudio
namespace was named QAudio up to and including Qt 6.6. String-based connections to this signal have to use
QAudio::State
as the parameter type:
connect(source, SIGNAL(stateChanged(QAudio::State)), ...);
Stops the audio output, detaching from the system resource.
設置 error () 到 QtAudio::NoError , state () 到 QtAudio::StoppedState and emit stateChanged () 信號。
注意: On Linux, and Darwin, this operation synchronously drains the underlying audio buffer, which may cause delays accordingly to the buffer payload. To reset all the buffers immediately, use the method reset 代替。
另請參閱 reset ().
Stops processing audio data, preserving buffered audio data.
設置 error () 到 QtAudio::NoError , state () 到 QtAudio::SuspendedState 並發射 stateChanged () 信號。
Returns the volume between 0.0 and 1.0 inclusive.
另請參閱 setVolume ().