vue.js用benz-amr-recorder实现播放amr格式音频 AMR 录音机

vue.js实现播放amr格式

benz-amr-recorder - npm

安装

npm i benz-amr-recorder --save

引用

import BenzAMRRecorder from 'benz-amr-recorder'

html部分

<el-descriptions-item label="上报音频">
  <template v-if="ruleForm.AJYP == null">
    暂无音频
  </template>
  <template v-else>
    <div class="yingping" >
      <span  @click="playstop()" v-show="!shpzt"><img src="../../../assets/img/ypstop.png" class="boan"></span>
      <span  @click="play(ruleForm.AJYP)" v-show="shpzt"><img src="../../../assets/img/ypbeging.png" class="boan"></span>
      <input class="amr-progress" type="range" min="0" max="1" step="any" :value="ypdt" disabled>
      <span id="amr-cur">{{ypdt}}'</span>
      <span>/</span>
      <span id="amr-duration">{{ypleng}}'</span>
    </div>
  </template>
</el-descriptions-item>

初始化对象

data() {
  return {
   ypleng:0,
   ypdt:0,
   shpzt:true
  }
}

调用方法

 //播放语音
        play(url) {
            let that=this;
            this.shpzt=!this.shpzt
            amr = new BenzAMRRecorder();
            amr.initWithUrl(url).then(function() {
                amr.play();
                that.ypleng=amr.getDuration().toFixed(2)
                var iCount =setInterval(function () {
                    let spchang=amr.getCurrentPosition().toFixed(2)
                    if (spchang != 0.00) {
                            that.ypdt = amr.getCurrentPosition().toFixed(2)
                    } else {
                        clearInterval(iCount);

                    }
                }, 30);

            });
            amr.onEnded(function() {
                that.shpzt=true
                that.ypdt=0
                //console.log('播放完毕');
            })
            // amr.isPlaying() 返回音频的播放状态 是否正在播放 返回boolean类型
        },
        //停止播放
        playstop(){
            this.shpzt=!this.shpzt
            amr.stop();
        },

效果如下

源码:


<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"/>
    <meta name="format-detection" content="telephone=no"/>
    <title>AMR decode/encode tests</title>
</head>

<body>
<h1>AMR 录音机 Demo</h1>
<h2>解码、播放</h2>
<div id="player-amr">
    <p>
        加载演示文件:<button id="amr-load">加载、解码</button>
        <a href="res/mario.amr">下载演示文件:mario.amr</a>
    </p>
    <p>
        加载本地文件:<input type="file" id="amr-file" accept=".amr">(不会上传到任何服务器)
    </p>
    <p>
        <button id="amr-play" disabled>播放</button>
        <button id="amr-stop" disabled>停止</button>
        <input id="amr-progress" type="range" min="0" max="1" step="any" value="0" disabled>
        <label for="amr-progress">
            <span id="amr-cur">0'</span>
            <span>/</span>
            <span id="amr-duration">0'</span>
        </label>
    </p>
</div>
<h2>录音、编码</h2>
<div id="recorder-amr">
    <p>
        <button id="amr-record">开始录音</button>(不会上传到任何服务器)
    </p>
    <p>
        <button id="amr-play-record" disabled>播放录音</button>
        <a href="#" id="amr-down-record"><!--下载录音amr文件--></a>
        <span id="amr-record-duration">0'</span>
    </p>
</div>
<script src="./BenzAMRRecorder.js"></script>
<!--suppress ES6ModulesDependencies, ES6ConvertVarToLetConst -->
<script>
    (function () {
        function E(selector) {
            return document.querySelector(selector);
        }

        /**** 解码、播放 ****/

        var amr;

        var loadDemoBtn = E('#amr-load');
        var loadAmrFile = E('#amr-file');
        var playBtn = E('#amr-play');
        var stopBtn = E('#amr-stop');
        var progressCtrl = E('#amr-progress');
        var isDragging = false;
        var cur = E('#amr-cur');
        var duration = E('#amr-duration');

        setInterval(function () {
            if (amr) {
                cur.innerHTML = amr.getCurrentPosition().toFixed(2) + '\'';
                if (!isDragging) {
                    progressCtrl.value = amr.getCurrentPosition().toFixed(2);
                }
            } else {
                cur.innerHTML = '0\'';
            }
        }, 10);

        loadDemoBtn.onclick = function() {
            amr = new BenzAMRRecorder();
            loadDemoBtn.setAttribute('disabled', true);
            loadAmrFile.setAttribute('disabled', true);
            playBtn.setAttribute('disabled', true);
            stopBtn.setAttribute('disabled', true);
            progressCtrl.setAttribute('disabled', true);
            amr.initWithUrl('./res/mario.amr').then(function () {
                loadDemoBtn.removeAttribute('disabled');
                loadAmrFile.removeAttribute('disabled');
                playBtn.removeAttribute('disabled');
                stopBtn.removeAttribute('disabled');
                progressCtrl.removeAttribute('disabled');
                progressCtrl.setAttribute('max', amr.getDuration());
                duration.innerHTML = amr.getDuration().toFixed(2) + '\'';
            });

            // 绑定事件
            amr.onPlay(function () {
                console.log('Event: play');
                playBtn.innerHTML = '暂停';
            });
            amr.onStop(function () {
                console.log('Event: stop');
                playBtn.innerHTML = '播放';
            });
            amr.onPause(function () {
                console.log('Event: pause');
                playBtn.innerHTML = '继续';
            });
            amr.onResume(function () {
                console.log('Event: resume');
                playBtn.innerHTML = '暂停';
            });
            amr.onEnded(function () {
                console.log('Event: ended');
                playBtn.innerHTML = '播放';
            });
            amr.onAutoEnded(function () {
                console.log('Event: autoEnded');
            });
            amr.onStartRecord(function () {
                console.log('Event: startRecord');
            });
            amr.onFinishRecord(function () {
                console.log('Event: finishRecord');
            });
            amr.onCancelRecord(function () {
                console.log('Event: cancelRecord');
            });
        };

        playBtn.onclick = function () {
            amr.playOrPauseOrResume();
        };

        stopBtn.onclick = function () {
            amr.stop();
        };

        progressCtrl.onmousedown = function () {
            isDragging = true;
        };
        progressCtrl.onmouseup = function () {
            isDragging = false;
        };
        progressCtrl.onchange = function (e) {
            amr.setPosition(e.target.value);
        };

        loadAmrFile.onchange = function() {
            amr = new BenzAMRRecorder();
            loadDemoBtn.setAttribute('disabled', true);
            loadAmrFile.setAttribute('disabled', true);
            playBtn.setAttribute('disabled', true);
            amr.initWithBlob(this.files[0]).then(function () {
                loadDemoBtn.removeAttribute('disabled');
                loadAmrFile.removeAttribute('disabled');
                playBtn.removeAttribute('disabled');
                duration.innerHTML = amr.getDuration().toFixed(2) + '\'';
            });

            // 绑定事件
            amr.onPlay(function () {
                console.log('Event: play');
                playBtn.innerHTML = '停止';
            });
            amr.onStop(function () {
                console.log('Event: stop');
                playBtn.innerHTML = '播放';
            });
            amr.onEnded(function () {
                console.log('Event: ended');
                playBtn.innerHTML = '播放';
            });
            amr.onAutoEnded(function () {
                console.log('Event: autoEnded');
            });
            amr.onStartRecord(function () {
                console.log('Event: startRecord');
            });
            amr.onFinishRecord(function () {
                console.log('Event: finishRecord');
            });
            amr.onCancelRecord(function () {
                console.log('Event: cancelRecord');
            });
        };

        /***** 录音、编码 *****/

        var amrForRecorder;

        var recordBtn = E('#amr-record');
        var playRecordBtn = E('#amr-play-record');
        var downRecordLink = E('#amr-down-record');
        var recordDuration = E('#amr-record-duration');

        recordBtn.onclick = function () {
            if (amrForRecorder && amrForRecorder.isRecording()) {
                recordBtn.innerHTML = '开始录音';
                playRecordBtn.removeAttribute('disabled');
                amrForRecorder.finishRecord().then(() => {
                    downRecordLink.href = window.URL.createObjectURL(amrForRecorder.getBlob());
                    downRecordLink.innerHTML = '下载录音amr文件';
                    recordDuration.innerHTML = amrForRecorder.getDuration().toFixed(2) + '\'';
                });
            } else {
                recordBtn.innerHTML = '停止录音';
                playRecordBtn.setAttribute('disabled', true);
                amrForRecorder = new BenzAMRRecorder();
                amrForRecorder.initWithRecord().then(() => {
                    amrForRecorder.startRecord();
                }).catch(function(e) {
                    alert(e.message || e.name || JSON.stringify(e));
                });

                // 绑定事件
                amrForRecorder.onPlay(function () {
                    console.log('Recorder Event: play');
                    playRecordBtn.innerHTML = '停止播放';
                });
                amrForRecorder.onStop(function () {
                    console.log('Recorder Event: stop');
                    playRecordBtn.innerHTML = '播放录音';
                });
                amrForRecorder.onEnded(function () {
                    console.log('Recorder Event: ended');
                    playRecordBtn.innerHTML = '播放录音';
                });
                amrForRecorder.onAutoEnded(function () {
                    console.log('Recorder Event: autoEnded');
                });
                amrForRecorder.onStartRecord(function () {
                    console.log('Recorder Event: startRecord');
                    recordBtn.innerHTML = '停止录音';
                });
                amrForRecorder.onFinishRecord(function () {
                    console.log('Recorder Event: finishRecord');
                    recordBtn.innerHTML = '开始录音';
                });
                amrForRecorder.onCancelRecord(function () {
                    console.log('Recorder Event: cancelRecord');
                    recordBtn.innerHTML = '开始录音';
                });
            }
        };

        playRecordBtn.onclick = function () {
            if (amrForRecorder.isPlaying()) {
                amrForRecorder.stop();
            } else {
                amrForRecorder.play();
            }
        };
    })();
</script>
</body>
</html>

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值