QAudioOutput 类

QAudioOutput 类提供把音频数据,发送到音频输出设备的接口。 更多...

头: #include <QAudioOutput>
qmake: QT += multimedia
继承: QObject

公共函数

QAudioOutput (const QAudioDeviceInfo & audioDevice , const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr)
QAudioOutput (const QAudioFormat & format = QAudioFormat(), QObject * parent = nullptr)
virtual ~QAudioOutput ()
int bufferSize () const
int bytesFree () const
QString category () const
qint64 elapsedUSecs () const
QAudio::Error error () const
QAudioFormat format () const
int notifyInterval () const
int periodSize () const
qint64 processedUSecs () const
void reset ()
void resume ()
void setBufferSize (int value )
void setCategory (const QString & category )
void setNotifyInterval (int ms )
void setVolume (qreal volume )
void start (QIODevice * device )
QIODevice * start ()
QAudio::State state () const
void stop ()
void suspend ()
qreal volume () const

信号

void notify ()
void stateChanged (QAudio::State state )

详细描述

可以构造音频输出采用系统的 默认音频输出设备 也是可能的,创建 QAudioOutput 采用特定 QAudioDeviceInfo 。当创建音频输出时,还应发送 QAudioFormat 用于回放 (见 QAudioFormat 类描述了解细节)。

要播放文件:

开始播放音频流的问题是只需调用 start () 采用 QIODevice 。QAudioOutput 然后从 IO 设备抓取它需要的数据。所以,回放音频文件就是这么简单:

QFile sourceFile;   // class member.
QAudioOutput* audio; // class member.
{
    sourceFile.setFileName("/tmp/test.raw");
    sourceFile.open(QIODevice::ReadOnly);
    QAudioFormat format;
    // Set up the format, eg.
    format.setSampleRate(8000);
    format.setChannelCount(1);
    format.setSampleSize(8);
    format.setCodec("audio/pcm");
    format.setByteOrder(QAudioFormat::LittleEndian);
    format.setSampleType(QAudioFormat::UnSignedInt);
    QAudioDeviceInfo info(QAudioDeviceInfo::defaultOutputDevice());
    if (!info.isFormatSupported(format)) {
        qWarning() << "Raw audio format not supported by backend, cannot play audio.";
        return;
    }
    audio = new QAudioOutput(format, this);
    connect(audio, SIGNAL(stateChanged(QAudio::State)), this, SLOT(handleStateChanged(QAudio::State)));
    audio->start(&sourceFile);
}
					

文件将开始播放,假定音频系统和输出设备支持它。若运气不好,校验怎么了是采用 error () 函数。

文件播放完成后,需要停止设备:

void AudioOutputExample::handleStateChanged(QAudio::State newState)
{
    switch (newState) {
        case QAudio::IdleState:
            // Finished playing (no more data)
            audio->stop();
            sourceFile.close();
            delete audio;
            break;
        case QAudio::StoppedState:
            // Stopped for other reasons
            if (audio->error() != QAudio::NoError) {
                // Error handling
            }
            break;
        default:
            // ... other cases as appropriate
            break;
    }
}
					

在任何给定时间,QAudioOutput 将处于 4 种状态之一:活动、挂起、停止、或空闲。这些状态的描述是通过 QAudio::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 ().

While the stream is playing, you can set a notify interval in milliseconds with setNotifyInterval (). This interval specifies the time between two emissions of the notify () signal. This is relative to the position in the stream, i.e., if the QAudioOutput is in the SuspendedState or the IdleState, the notify () signal is not emitted. A typical use-case would be to update a slider that allows seeking in the stream. If you want the time since playback started regardless of which states the audio output has been in, elapsedUSecs () is the function for you.

If an error occurs, you can fetch the error type 采用 error () function. Please see the QAudio::Error enum for a description of the possible errors that are reported. When an error is encountered, the state changes to QAudio::StoppedState . You can check for errors by connecting to the stateChanged () signal:

void AudioOutputExample::handleStateChanged(QAudio::State newState)
{
    switch (newState) {
        case QAudio::IdleState:
            // Finished playing (no more data)
            audio->stop();
            sourceFile.close();
            delete audio;
            break;
        case QAudio::StoppedState:
            // Stopped for other reasons
            if (audio->error() != QAudio::NoError) {
                // Error handling
            }
            break;
        default:
            // ... other cases as appropriate
            break;
    }
}
					

另请参阅 QAudioInput and QAudioDeviceInfo .

成员函数文档编制

QAudioOutput:: QAudioOutput (const QAudioDeviceInfo & 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 参数。

QAudioOutput:: QAudioOutput (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 参数。

[signal] void QAudioOutput:: notify ()

This signal is emitted when a certain interval of milliseconds of audio data has been processed. The interval is set by setNotifyInterval ().

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

此信号被发射当设备 state has changed. This is the current state of the audio output.

[虚拟] QAudioOutput:: ~QAudioOutput ()

销毁此音频输出。

This will release any system resources used and free any buffers.

int QAudioOutput:: 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 ().

int QAudioOutput:: bytesFree () const

Returns the number of free bytes available in the audio buffer.

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

QString QAudioOutput:: category () const

Returns the audio category of this audio stream.

Some platforms can group audio streams into categories and manage their volumes independently, or display them in a system mixer control. You can set this property to allow the platform to distinguish the purpose of your streams.

另请参阅 setCategory ().

qint64 QAudioOutput:: elapsedUSecs () const

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

QAudio::Error QAudioOutput:: error () const

返回错误状态。

QAudioFormat QAudioOutput:: format () const

返回 QAudioFormat 被使用。

int QAudioOutput:: notifyInterval () const

返回通知间隔 (以毫秒为单位)。

另请参阅 setNotifyInterval ().

int QAudioOutput:: periodSize () const

Returns the period size in bytes. This is the amount of data required each period to prevent buffer underrun, and to ensure uninterrupted playback.

注意: It is recommended to provide at least enough data for a full period with each write operation.

qint64 QAudioOutput:: processedUSecs () const

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

void QAudioOutput:: reset ()

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

void QAudioOutput:: 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 QAudioOutput:: setBufferSize ( int value )

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 ().

void QAudioOutput:: setCategory (const QString & category )

Sets the audio category of this audio stream to category .

Some platforms can group audio streams into categories and manage their volumes independently, or display them in a system mixer control. You can set this property to allow the platform to distinguish the purpose of your streams.

Not all platforms support audio stream categorization. In this case, the function call will be ignored.

Changing an audio output stream's category while it is opened will not take effect until it is reopened.

另请参阅 category ().

void QAudioOutput:: setNotifyInterval ( int ms )

Sets the interval for notify () signal to be emitted. This is based on the ms of audio data processed, not on wall clock time. The minimum resolution of the timer is platform specific and values should be checked with notifyInterval () to confirm the actual value being used.

另请参阅 notifyInterval ().

void QAudioOutput:: setVolume ( qreal volume )

把输出音量设为 volume .

按线性比例缩放的音量是从 0.0 (无声) 到 1.0 (全音量)。将钳制超出此范围的值。

默认音量为 1.0 .

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

通常,UI 音量控件应按非线性比例缩放。例如,使用对数比例缩放将产生感知响度的线性变化,这通常是用户期望的音量控制。见 QAudio::convertVolume () 了解更多细节。

另请参阅 volume ().

void QAudioOutput:: start ( QIODevice * device )

Starts transferring audio data from the device to the system's audio output. The device 必须已打开以 ReadOnly or ReadWrite 模式。

QAudioOutput is able to successfully output audio data, state () 返回 QAudio::ActiveState , error () 返回 QAudio::NoError stateChanged () 信号发射。

若在此过程中出现问题, error () 返回 QAudio::OpenError , state () 返回 QAudio::StoppedState stateChanged () 信号发射。

另请参阅 QIODevice .

QIODevice *QAudioOutput:: start ()

返回的指针指向内部 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.

注意: 指针将变为无效,在流被停止或启动另一个流之后。

QAudioOutput 能够访问系统音频设备, state () 返回 QAudio::IdleState , error () 返回 QAudio::NoError stateChanged () 信号发射。

若在此过程中出现问题, error () 返回 QAudio::OpenError , state () 返回 QAudio::StoppedState stateChanged () 信号发射。

另请参阅 QIODevice .

QAudio::State QAudioOutput:: state () const

返回音频处理的状态。

void QAudioOutput:: stop ()

Stops the audio output, detaching from the system resource.

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

void QAudioOutput:: suspend ()

Stops processing audio data, preserving buffered audio data.

设置 error () 到 QAudio::NoError , state () 到 QAudio::SuspendedState 并发射 stateChanged () 信号。

qreal QAudioOutput:: volume () const

Returns the volume between 0.0 and 1.0 inclusive.

另请参阅 setVolume ().