// #### 录音
// if (navigator.mediaDevices) {
// // 创建录音环境
// navigator.mediaDevices.getUserMedia({
// audio: {
// channelCount: 2, // 声道
// echoCancellation: true, // 回声控制
// // sampleSize: // 采样大小
// sampleRate: 24000,// 采样率
// }
// })
// .then((stream) => {
// // 创建录音对象
// this.graffiti.audioRecorder = new MediaRecorder(stream, {
// mimeType: "audio/webm", // 格式
// audioBitsPerSecond: 128000, //比特率
// ignoreMutedMedia: true,
// })
// // 开始录音回调函数
// this.graffiti.audioRecorder.onstart = e => {
// }
// // 录音过程
// this.graffiti.audioRecorder.ondataavailable = e => {
// this.graffiti.audioChunks.push(e.data)
// }
// // 录音结束
// this.graffiti.audioRecorder.onstop = e => {
// }
// // 开始录音
// this.graffiti.audioRecorder.start(1000)
// })
// .catch(function(err) {
// console.log('点评录音报错: ' + err);
// })
// } else {
// // 浏览器不支持当前接口
// }
网友评论