vuejs实现音频倍速播放

近来有一个实现音频倍速播放的需求,找了一圈都没有找到合适的并且满足我需求的插件,所以就用h5的video标签来实现项目需要的效果。

技术栈:vuejs,element-ui

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <!-- 引入样式 -->
  <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
  <style>
    * {
      margin: 0;
      padding: 0;
    }
    .call-record-audio {
      margin-top: 10px;
    }
    .audio-time,
    .audio-speed {
      font-size: 14px;
      color: #333;
      margin-left: 10px;
      line-height: 38px;
      float: left;
    }
    .audio-speed {
      cursor: pointer;
    }
    .audio-slider {
      width: 500px;
      margin: 0 20px;
      float: left;
    }
    .audio-btn {
      line-height: 38px;
      float: left;
    }
    .audio-btn>i {
      font-size: 24px;
      color: #066EB7;
      vertical-align: middle;
    }
  </style>
</head>

<body>
  <div class="clearfix" id="audio">
    <audio autoplay="autoplay" ref="audioPlayer" preload="auto"
      src="http://wechatapppro-1252524126.file.myqcloud.com/appG1VMUALC2470/audio_compressed/1505377565_4fd15d83213bceb23a97ad6af45f1dae.mp3">
      你的浏览器不支持audio标签
    </audio>
    <span class="audio-btn">
      <!-- 播放 -->
      <i class="el-icon-video-play" @click="playAudio" v-show="!isPlay"></i>
      <!-- 暂停 -->
      <i class="el-icon-video-pause" @click="pauseAudio" v-show="isPlay"></i>
    </span>
    <!-- 时间进度/总时长 -->
    <span class="audio-time">{{audioCurrentTime}}/{{audioAllTime}}</span>
    <!-- 进度条 -->
    <div class="audio-slider">
      <el-slider v-model="audioPercentage" :show-tooltip="false" @change="handleChange"></el-slider>
    </div>
    <!-- 设置倍速 -->
    <el-dropdown size="small" @command="changeSpeed">
      <span class="audio-speed">倍速:{{speed}}X</span>
      <el-dropdown-menu slot="dropdown">
        <el-dropdown-item v-for="(item, index) in multipleArray" :key="index" :command="item">
          {{item}}X
        </el-dropdown-item>
      </el-dropdown-menu>
    </el-dropdown>
  </div>
  <!-- 引入 Vue 文件 -->
  <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
  <!-- 引入组件库 -->
  <script src="https://unpkg.com/element-ui/lib/index.js"></script>
  <script>
    let vueApp = new Vue({
      el: '#audio',
      data() {
        return {
          audioPercentage: 0, // 音频进度百分比
          audioCurrentTime: '00:00',// 音频当前播放时间
          audioAllTime: '00:00', // 音频总播放时间
          audioAllDuration: 0, // 音频总播放秒数
          isPlay: false, // 是否正在播放
          multipleArray: [0.75, 1, 1.5, 2], // 倍速设置
          audioInterval: null, // 定时器
          speed: 1,
        }
      },
      methods: {
        /** 设置定时检测 */
        setAudioInterval() {
          this.audioInterval = setInterval(() => {
            this.getAudioTime();
            let audioPlayer = this.$refs.audioPlayer;
            if (audioPlayer.ended) {
              // 播放结束后是否重置数据
              // clearInterval(this.audioInterval);
              // this.audioPercentage = 0;
              // audioPlayer.currentTime = 0;
              // this.audioCurrentTime = '00:00';
              // this.isPlay = false;
            }
            audioPlayer.paused ? this.isPlay = false : this.isPlay = true
          }, 500)
        },
        /** 播放 */
        playAudio() {
          // 重设定时器
          clearInterval(this.audioInterval);
          this.getAudioTime();
          this.setAudioInterval();
          let audioPlayer = this.$refs.audioPlayer;
          audioPlayer.play();
          this.isPlay = true;
        },
        /** 暂停播放 */
        pauseAudio() {
          let audioPlayer = this.$refs.audioPlayer;
          audioPlayer.pause();
          this.isPlay = false;
        },
        /** 获取播放时间 */
        getAudioTime() {
          let audioPlayer = this.$refs.audioPlayer;
          this.audioAllTime = this.formatTime(audioPlayer.duration);
          this.audioAllDuration = audioPlayer.duration;
          this.audioCurrentTime = this.formatTime(audioPlayer.currentTime);
          //计算当前进度百分比
          this.audioPercentage = (audioPlayer.currentTime * 100 / audioPlayer.duration).toFixed(3);
          this.audioPercentage = Number(this.audioPercentage);
        },
        /** 滑动进度条 */
        handleChange(value) {
          // 设置播放时间
          let audioPlayer = this.$refs.audioPlayer;
          this.audioCurrentTime = this.formatTime(this.audioAllDuration * Number(value) / 100);
          const currentTime = Number(this.audioAllDuration * value / 100);
          audioPlayer.currentTime = parseInt(currentTime);
        },
        /** 设置倍速播放 */
        changeSpeed(command) {
          let audioPlayer = this.$refs.audioPlayer;
          audioPlayer.playbackRate = command;
          this.speed = command;
        },
        /** 时间格式话 */
        formatTime(second) {
          const secondType = typeof second
          if (secondType === 'number' || secondType === 'string') {
            second = parseInt(second)
            const hours = Math.floor(second / 3600);
            second = second - hours * 3600;
            second = second
            const mimute = Math.floor(second / 60)
            second = second - mimute * 60
            return ('0' + hours).slice(-2) + ':' + ('0' + mimute).slice(-2) + ':' + ('0' + second).slice(-2)
          } else {
            return '00:00'
          }
        },
      },
      mounted() {
        this.setAudioInterval();
      },
    })
  </script>
</body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,185评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,445评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,684评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,564评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,681评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,874评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,025评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,761评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,217评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,545评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,694评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,351评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,988评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,778评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,007评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,427评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,580评论 2 349

推荐阅读更多精彩内容

  • 基于Vue的一些资料 内容 UI组件 开发框架 实用库 服务端 辅助工具 应用实例 Demo示例 element★...
    尝了又尝阅读 1,142评论 0 1
  • Vue2.0+组件库总结 UI组件 element - 饿了么出品的Vue2的web UI工具套件 Vux - 基...
    szch阅读 1,969评论 1 52
  • 这是去年10月份写的一篇随笔,希望以后有机会实现这个小愿望。 前几日,打开窗,深呼吸,窗前的桂花香扑鼻而来。 那一...
    曾几光阴阅读 486评论 0 0
  • 一 她的父母离婚了,她和母亲两个人相依为命,母亲学历低,挣钱辛苦,但每月也会带她去吃一次牛排,离婚有十年了,母亲竟...
    李熬花阅读 207评论 0 0
  • 在我用UITbleView做一个个人详情页面的时候遇到了一个问题,我建了2个section,在section ==...
    深山老林飞阅读 564评论 0 2