• 【wavesurfer.js实战范例】多区域音频标注(含区域实时切换显示)


    在这里插入图片描述
    通过多选框,实现多区域显示的实时切换,实现原理:

    1. 每次切换时先清除所有区域
    2. 对选中区域进行重绘
    <template>
      <div style="padding: 30px">
        <el-row type="flex" justify="center">
          <el-checkbox-group v-model="showList" @change="showListChange">
            <el-checkbox
              v-for="(regionInfo, regionKey) in regionDic"
              :label="regionKey"
              :key="'region' + regionKey"
            >
              <div class="colorTag" :style="{ background: regionInfo.color }">div>
              {{ regionInfo.label }}el-checkbox
            >
          el-checkbox-group>
        el-row>
        <div class="waveBox" ref="wave_Ref">div>
      div>
    template>
    
    <script>
    import WaveSurfer from "wavesurfer.js";
    // 导入插件--区域
    import RegionsPlugin from "wavesurfer.js/dist/plugin/wavesurfer.regions.min.js";
    // 导入插件--指针轴
    import CursorPlugin from "wavesurfer.js/dist/plugin/wavesurfer.cursor.js";
    
    export default {
      data() {
        return {
          showList: ["1", "2", "3", "4", "5"],
          wavesurfer: null,
          regionDic: {
            1: {
              label: "前奏",
              color: "rgba(255, 255, 0, 0.5)",
              dataMark: "preludeList",
            },
            2: {
              label: "男声",
              color: "rgba(0, 0, 255, 0.5)",
              dataMark: "boyVoiceList",
            },
            3: {
              label: "女声",
              color: "rgba(255, 0, 0, 0.5)",
              dataMark: "girlVoiceList",
            },
            4: {
              label: "男/女合唱",
              color: "rgba(0, 255, 255, 0.5)",
              dataMark: "chorusList",
            },
            5: {
              label: "间奏",
              color: "rgba(255, 0, 255, 0.5)",
              dataMark: "interludeList",
            },
          },
    
          boyVoiceList: [
            {
              start: 14,
              end: 26,
            },
            {
              start: 59,
              end: 64,
            },
            {
              start: 109,
              end: 134,
            },
            {
              start: 148,
              end: 160,
            },
          ],
    
          girlVoiceList: [
            {
              start: 27,
              end: 39,
            },
            {
              start: 52,
              end: 58,
            },
          ],
    
          preludeList: [
            {
              start: 0,
              end: 14,
            },
          ],
    
          // 男女合唱
          chorusList: [
            {
              start: 40,
              end: 52,
            },
            {
              start: 65,
              end: 71,
            },
            {
              start: 97,
              end: 109,
            },
            {
              start: 135,
              end: 147,
            },
            {
              start: 161,
              end: 173,
            },
          ],
          // 间奏
          interludeList: [
            {
              start: 72,
              end: 96,
            },
          ],
        };
      },
      mounted() {
        this.$nextTick(() => {
          this.wavesurfer = WaveSurfer.create({
            container: this.$refs.wave_Ref,
            plugins: [
              // 插件--区域的配置
              RegionsPlugin.create({}),
    
              // 插件--指针轴的配置
              CursorPlugin.create({
                showTime: true,
                opacity: 1,
                customShowTimeStyle: {
                  "background-color": "#000",
                  color: "#fff",
                  padding: "2px",
                  "font-size": "10px",
                },
              }),
            ],
          });
          this.wavesurfer.load(require("./《祝福你》群星_粤语.mp3"));
          // 自动播放
          let that = this;
          this.wavesurfer.on("ready", function () {
            that.wavesurfer.play();
          });
          this.drawRegion();
        });
      },
      methods: {
        showListChange() {
          this.wavesurfer.clearRegions();
          this.drawRegion();
        },
        wavesurferAddRegion(start, end, color) {
          this.wavesurfer.addRegion({
            start: start, // 区域开始时间
            end: end, // 区域结束时间
            color: color, // 区域颜色
            drag: false, // 是否可拖拽
            resize: false, // 是否可改变大小
          });
        },
        drawRegion() {
          this.showList.forEach((regionType) => {
            let regionInfo = this.regionDic[regionType];
            this[regionInfo.dataMark].forEach((item) => {
              this.wavesurferAddRegion(item.start, item.end, regionInfo.color);
            });
          });
        },
      },
    };
    script>
    <style scoped>
    .colorTag {
      display: inline-block;
      height: 10px;
      width: 30px;
    }
    .waveBox {
      border: 1px solid gray;
      margin-top: 15px;
    }
    style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
  • 相关阅读:
    基于B2C的网上拍卖系统——秒杀与竞价
    【Pytorch】Visualization of Fature Maps(2)
    容器化|自建 MySQL 集群迁移到 Kubernetes
    上海市青少年算法2022年11月月赛(丙组)
    ARM系统中9种中断响应步骤记录
    如何选择优质的静动态住宅代理IP提供商?
    图新地球:如何导入修改了高程基准(椭球)的CAD文件
    【通信】基于增广矩阵束的L型阵列的二维DOA估计附matlab完整代码
    正则表达式——4.贪婪与非贪婪搜寻、特殊字符
    961题库 北航计算机 计算机网络 附答案 简答题形式
  • 原文地址:https://blog.csdn.net/weixin_41192489/article/details/127671570