CopperSpice API
1.9.2
|
The QAudioEncoderSettings class provides a set of audio encoder settings. More...
Public Methods | |
QAudioEncoderSettings () | |
QAudioEncoderSettings (const QAudioEncoderSettings &other) | |
~QAudioEncoderSettings () | |
int | bitRate () const |
int | channelCount () const |
QString | codec () const |
QMultimedia::EncodingMode | encodingMode () const |
QVariant | encodingOption (const QString &option) const |
QVariantMap | encodingOptions () const |
bool | isNull () const |
bool | operator!= (const QAudioEncoderSettings &other) const |
QAudioEncoderSettings & | operator= (const QAudioEncoderSettings &other) |
bool | operator== (const QAudioEncoderSettings &other) const |
QMultimedia::EncodingQuality | quality () const |
int | sampleRate () const |
void | setBitRate (int bitrate) |
void | setChannelCount (int channels) |
void | setCodec (const QString &codecName) |
void | setEncodingMode (QMultimedia::EncodingMode mode) |
void | setEncodingOption (const QString &option, const QVariant &value) |
void | setEncodingOptions (const QVariantMap &options) |
void | setQuality (QMultimedia::EncodingQuality quality) |
void | setSampleRate (int rate) |
The QAudioEncoderSettings class provides a set of audio encoder settings.
A audio encoder settings object is used to specify the audio encoder settings used by QMediaRecorder. Audio encoder settings are selected by constructing a QAudioEncoderSettings object, setting the desired properties and then passing it to a QMediaRecorder instance using the QMediaRecorder::setEncodingSettings() method.
QAudioEncoderSettings::QAudioEncoderSettings | ( | ) |
Construct a null audio encoder settings object.
QAudioEncoderSettings::QAudioEncoderSettings | ( | const QAudioEncoderSettings & | other | ) |
Constructs a copy of the audio encoder settings with other.
QAudioEncoderSettings::~QAudioEncoderSettings | ( | ) |
Destroys an audio encoder settings object.
int QAudioEncoderSettings::bitRate | ( | ) | const |
Returns the bit rate of the compressed audio stream in bits per second.
int QAudioEncoderSettings::channelCount | ( | ) | const |
Returns the number of audio channels.
QString QAudioEncoderSettings::codec | ( | ) | const |
Returns the audio codec.
QMultimedia::EncodingMode QAudioEncoderSettings::encodingMode | ( | ) | const |
Returns the audio encoding mode.
Returns the value of encoding option.
QVariantMap QAudioEncoderSettings::encodingOptions | ( | ) | const |
Returns the all the encoding options as QVariantMap.
bool QAudioEncoderSettings::isNull | ( | ) | const |
Identifies if an audio settings object is initialized. Returns true if the settings object is null, and false if it is not.
bool QAudioEncoderSettings::operator!= | ( | const QAudioEncoderSettings & | other | ) | const |
Determines if other is of equal value to an audio encoder settings object. Returns true if the settings objects are not of equal value, and true if they are of equal value.
QAudioEncoderSettings & QAudioEncoderSettings::operator= | ( | const QAudioEncoderSettings & | other | ) |
Copy assigns from other and returns a reference to this object.
bool QAudioEncoderSettings::operator== | ( | const QAudioEncoderSettings & | other | ) | const |
Determines if other is of equal value to an audio encoder settings object. Returns true if the settings objects are of equal value, and false if they are not of equal value.
QMultimedia::EncodingQuality QAudioEncoderSettings::quality | ( | ) | const |
Returns the audio encoding quality.
int QAudioEncoderSettings::sampleRate | ( | ) | const |
Returns the audio sample rate in Hz.
void QAudioEncoderSettings::setBitRate | ( | int | bitrate | ) |
Sets the bit rate of the encoded audio stream to bitrate.
void QAudioEncoderSettings::setChannelCount | ( | int | channels | ) |
Sets the number of audio channels. A value of -1 indicates the encoder should make an optimal choice based on what is available from the audio source and the limitations of the codec.
void QAudioEncoderSettings::setCodec | ( | const QString & | codecName | ) |
Sets the audio codec to the value of codecName.
void QAudioEncoderSettings::setEncodingMode | ( | QMultimedia::EncodingMode | mode | ) |
Sets the audio encoding mode to the value of mode.
If QMultimedia::ConstantQualityEncoding is set, the quality encoding parameter is used and bit rate is ignored, otherwise the bitrate is used. The audio codec, channels count and sample rate settings are used in all the encoding modes.
Set the encoding option to value. The supported set and meaning of encoding options are system and selected codec specific.
void QAudioEncoderSettings::setEncodingOptions | ( | const QVariantMap & | options | ) |
Replace all the encoding options with options. The supported set and meaning of encoding options are system and selected codec specific.
void QAudioEncoderSettings::setQuality | ( | QMultimedia::EncodingQuality | quality | ) |
Set the audio encoding to the value of quality.
Setting the audio quality parameter allows backend to choose the balanced set of encoding parameters to achieve the desired quality level. The quality settings parameter is only used in the constant quality encoding mode.
void QAudioEncoderSettings::setSampleRate | ( | int | rate | ) |
Sets the audio sample rate in Hz to the value of rate.
A value of -1 indicates the encoder should make an optimal choice based on what is available from the audio source and the limitations of the codec.