AudioOutput Class

( Phonon::AudioOutput )

The AudioOutput class is used to send data to audio output devices. 更多...

頭: #include <Phonon/AudioOutput>
Since: Qt 4.4
繼承: QObject and MediaNode

特性

公共函數

AudioOutput (Phonon::Category category , QObject * parent = 0)
AudioOutput (QObject * parent = 0)
Phonon::Category category () const
bool isMuted () const
QString name () const
AudioOutputDevice outputDevice () const
qreal volume () const
qreal volumeDecibel () const

公共槽

void setMuted (bool mute )
void setName (const QString & newName )
bool setOutputDevice (const Phonon::AudioOutputDevice & newAudioOutputDevice )
void setVolume (qreal newVolume )
void setVolumeDecibel (qreal newVolumeDecibel )

信號

void mutedChanged (bool muted )
void outputDeviceChanged (const Phonon::AudioOutputDevice & newAudioOutputDevice )
void volumeChanged (qreal newVolume )

額外繼承成員

詳細描述

The AudioOutput class is used to send data to audio output devices.

The AudioOutput class plays sound over a sound device. The audio output needs to be connected to a MediaObject using createPath(). To start playback, you call play() on the media object.

    Phonon::MediaObject *mediaObject = new Phonon::MediaObject(this);
    mediaObject->setCurrentSource(Phonon::MediaSource("/mymusic/barbiegirl.wav"));
    Phonon::AudioOutput *audioOutput =
        new Phonon::AudioOutput(Phonon::MusicCategory, this);
    Phonon::Path path = Phonon::createPath(mediaObject, audioOutput);
					

The class supports changing the volume (). It is also possible to mute the sound.

To find out what AudioOutputDevice s are available for AudioOutput ,可以調用 BackendCapabilities::availableAudioOutputDevices (). A default device is selected by the backend, but it is possible to set the device to be used with setOutputDevice ()。 outputDeviceChanged () signal will be emitted if the device changes.

If an error occurs with the playback, for instance, if no valid output device is found, the media object will receive a stateChanged() signal with the ErrorState .

Note that the default values of properties are dependent on the backend.

另請參閱 Phonon::VolumeSlider , 音樂播放器範例 , BackendCapabilities ,和 Phonon 模塊 .

特性文檔編製

muted : bool

This property tells whether the output is muted.

Muting the output has the same effect as calling setVolume (0.0).

訪問函數:

bool isMuted () const
void setMuted (bool mute )

通知程序信號:

void mutedChanged (bool muted )

name : QString

This is the name that appears in Mixer applications that control the volume of this output.

訪問函數:

QString name () const
void setName (const QString & newName )

outputDevice : AudioOutputDevice

This property holds the (hardware) destination for the output.

The default device is determined by the Category and the global configuration for that category. Normally you don't need to override this setting - letting the user change the global configuration is the right choice. You can still override the device though, if you have good reasons to do so.

訪問函數:

AudioOutputDevice outputDevice () const
bool setOutputDevice (const Phonon::AudioOutputDevice & newAudioOutputDevice )

另請參閱 outputDeviceChanged ().

volume : qreal

This is the current loudness of the output.

(it is using Stevens' law to calculate the change in voltage internally).

訪問函數:

qreal volume () const
void setVolume (qreal newVolume )

通知程序信號:

void volumeChanged (qreal newVolume )

另請參閱 volumeDecibel .

volumeDecibel : qreal

This is the current volume of the output in decibel.

0 dB means no change in volume, -6dB means an attenuation of the voltage to 50% and an attenuation of the power to 25%, -inf dB means silence.

訪問函數:

qreal volumeDecibel () const
void setVolumeDecibel (qreal newVolumeDecibel )

另請參閱 volume .

成員函數文檔編製

AudioOutput:: AudioOutput ( Phonon::Category category , QObject * parent = 0)

創建新的 AudioOutput 采用給定 parent that defines output to a physical device.

The category can be used by mixer applications to group volume controls of applications into categories. That makes it easier for the user to identify the programs. The category is also used for the default output device that is configured centrally. As an example: often users want to have the audio signal of a VoIP application go to their USB headset while all other sounds should go to the internal soundcard.

另請參閱 Phonon::categoryToString() and outputDevice .

AudioOutput:: AudioOutput ( QObject * parent = 0)

創建新的 AudioOutput that defines output to the system default device with the {Phonon::Category::}{ NoCategory } category

另請參閱 Phonon::categoryToString() and outputDevice .

Phonon::Category AudioOutput:: category () const

Returns the category of this output.

另請參閱 Phonon::AudioOutput::AudioOutput().

[signal] void AudioOutput:: outputDeviceChanged (const Phonon::AudioOutputDevice & newAudioOutputDevice )

This signal is emitted when the (hardware) device for the output has changed. newAudioOutputDevice is the new device.

The change can happen either through setOutputDevice or if the global configuration for the used category has changed.

另請參閱 outputDevice .