内容表

上一话题

音频输出范例

下一话题

QML 摄像头范例

音频录制器范例

Discovering the available devices and supported codecs.

Audio Recorder demonstrates how to identify the available devices and supported codecs, and the use of QAudioRecorder 类。

../_images/audiorecorder.png

运行范例

要运行范例从 Qt Creator ,打开 欢迎 模式,然后选择范例从 范例 . For more information, visit Building and Running an Example.

显示窗口和音频设置

We display a window for the user to select the appropriate audio input, codec, container, and sample rate. Allow a setting of either quality or bitrate. Finally, the output file can be selected and recording can be started.

The lists are setup using the audioInputs() , supportedAudioCodecs() , supportedContainers() , supportedContainers() ,和 supportedAudioSampleRates() methods. The quality slider is setup from 0 (zero) to VeryHighQuality with a default value of NormalQuality , while the bitrates are hardcoded into the list.

录制音频

To record audio we simply create a QAudioRecorder 对象。

audioRecorder = new QAudioRecorder(this);
											

And setup the lists as described above. The text on the record and pause buttons are toggled depending on the state audioRecorder object. This means that if the state is StoppedState then the button text will be “Record” and “Pause”. In RecordingState the record button will have the text “Stop”, and in PausedState the pause button will have the text “Resume”.

Pressing the buttons will also result in a toggle based on the state. If recording is stopped, then pressing the record button will setup the QAudioEncoderSettings based on the values of the selection lists, will set the encoding settings and container on the audioRecorder object, and start recording using the record() 方法。

QAudioEncoderSettings settings;
settings.setCodec(boxValue(ui->audioCodecBox).toString());
settings.setSampleRate(boxValue(ui->sampleRateBox).toInt());
settings.setBitRate(boxValue(ui->bitrateBox).toInt());
settings.setQuality(QMultimedia::EncodingQuality(ui->qualitySlider->value()));
settings.setEncodingMode(ui->constantQualityRadioButton->isChecked() ?
                         QMultimedia::ConstantQualityEncoding :
                         QMultimedia::ConstantBitRateEncoding);
QString container = boxValue(ui->containerBox).toString();
audioRecorder->setEncodingSettings(settings, QVideoEncoderSettings(), container);
audioRecorder->record();
											

While recording, the status bar of the application is updated with duration information from the durationChanged signal from the audioRecorder 对象。

ui->statusbar->showMessage(tr("Recorded %1 sec").arg(duration / 1000));
											

范例工程 @ code.qt.io