美文网首页
2020-04-10

2020-04-10

作者: LO_0668 | 来源:发表于2020-04-10 19:17 被阅读0次

    // #### 录音
    // 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 {
        //   // 浏览器不支持当前接口
    
        // }

    相关文章

      网友评论

          本文标题:2020-04-10

          本文链接:https://www.haomeiwen.com/subject/kmedmhtx.html