怎么在vue中使用wavesurfer.js

這篇文章將為大家詳細講解有關怎么在vue中使用wavesurfer.js,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

創新互聯建站是一家集網站建設,海晏企業網站建設,海晏品牌網站建設,網站定制,海晏網站建設報價,網絡營銷,網絡優化,海晏網站推廣為一體的創新建站企業,幫助傳統企業提升企業形象加強企業競爭力。可充分滿足這一群體相比中小企業更為豐富、高端、多元的互聯網需求。同時我們時刻保持專業、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們為更多的企業打造出實用型網站。

首先引入wavesurfer.js

怎么在vue中使用wavesurfer.js

其次 封裝 wavesurfer.js`

<template>
 <div class="waveformOuter">
 <div id="waveform" ref="waveform" />
 <div class="play" @click="playMusic">
  <svg-icon v-if="!isPlaying" icon-class="play" class="icon myplay" />
  <svg-icon v-else icon-class="stop" class="icon mystop" />
  <p>{{ time }}</p>
 </div>
  <!-- <p>{{ url }}</p> -->
 </div>
</template>
<script>
import WaveSurfer from '@/assets/js/wavesurfer'
export default {
 props: ['url', 'toStopMusic', 'loadWave'],
 data() {
 return {
  isPlaying: false,
  time: '00:00',
  wavesurfer: null,
 }
 },
 watch: {
 'loadWave': function() {
  this.loadMusic()
 },
 'url': function() {
  // return this.wavesurfer.getCurrentTime()
  this.loadMusic(true)
  console.log('url---------------------------------------')
 },
 'toStopMusic': function() {
  console.log('toStopMusic---------------------------------------')
  if (this.wavesurfer) {
  this.wavesurfer.pause()
  }
 }
 },
 mounted() {
 this.$nextTick(() => {
  if (this.loadWave) {
  console.log('haha')
  this.loadMusic()
  }
 })
 },
 methods: {
 itemClick(node) {
  console.log(node.model.id)
 },
 buZero(num) {
  return num > 9 ? num : '0' + num
 },
 loadMusic(bool) {
  console.log('this.WaveSurfer--------------------------------------', WaveSurfer)
  if (this.wavesurfer) {
  if (bool) {
   this.time = '00:00'
   this.wavesurfer.load(this.url)
  }
  } else {
  this.wavesurfer = WaveSurfer.create({
   container: this.$refs.waveform,
   waveColor: 'violet',
   progressColor: 'purple'
  })
  this.wavesurfer.load(this.url)
  this.wavesurfer.on('ready', () => {
   // this.wavesurfer.play()
  })
  this.wavesurfer.on('audioprocess', (e) => {
   const times = Math.floor(e)
   this.time = this.buZero(Math.floor(times / 60)) + ':' + this.buZero(times % 60)
  })
  this.wavesurfer.on('finish', () => {
   this.isPlaying = false
  })
  }
 },
 stopMusic(){
  if (this.wavesurfer) {
   this.wavesurfer.stop();
  }
 },
 playMusic() {
  console.log("開始")
  console.log(this.wavesurfer)
  console.log("點擊開始播放按鈕",this.url)
  if (this.wavesurfer) {
  if (this.wavesurfer.isPlaying()) {
   this.isPlaying = false
  debugger
   this.wavesurfer.pause()
  } else {
   this.isPlaying = true
   this.wavesurfer.play()
  }
  }
 }
 }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.myplay{
 position: absolute;
 top: 50%;
 font-size: 17px;
 margin: -10px 0 0 -9px;
 left: 50%;
}
.mystop{
 position: absolute;
 top: 50%;
 margin: -15px 0 0 -18px;
 left: 50%;
 font-size: 25px;
}
#waveform{
 width: calc(100% - 150px);
 height:128px;
 float: left;
 margin-right: 22px;
 background: black;
}
.play{
 position: relative;
 width: 128px;
 height:128px;
 border-radius:3px;
 background-color:#EBEEF5;
 float: left;
 text-align: center;
}
.play p{
 margin-top: 85px;
 color: #3683FA;
}

.waveformOuter{
 margin-bottom: 20px;
 overflow: hidden;
}
</style>

再然后 在需要的組件中引入

<div class="luyin" v-if="this.isYinyin">
 <!-- {{this.isYinyin}} -->
 <my-wave-sufer ref="handleDialogClose" :url="luyinUrl" :load-wave="showDialog" :to-stop-music="!showDialog" />
</div>
isYinyin: false,//是否加載錄音組件
showDialog: true, //是否初始化錄音組件
luyinUrl: "", //錄音url 
數據庫錄音格式 123.wav

關于怎么在vue中使用wavesurfer.js就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

文章標題:怎么在vue中使用wavesurfer.js
新聞來源:http://m.kartarina.com/article14/pihjde.html

成都網站建設公司_創新互聯,為您提供建站公司企業網站制作網站營銷品牌網站制作網站制作網站維護

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

搜索引擎優化
主站蜘蛛池模板: 亚洲精品午夜无码专区| 无码国产色欲XXXXX视频| 人妻丰满熟妇无码区免费| 亚洲精品无码永久在线观看你懂的| 国产成人综合日韩精品无码不卡| 国产午夜无码精品免费看| 91精品日韩人妻无码久久不卡| 亚洲av成人无码网站…| 极品粉嫩嫩模大尺度无码视频 | 久久午夜福利无码1000合集| 97久久精品无码一区二区| 本道天堂成在人线av无码免费| 国产成人AV一区二区三区无码| 人妻av中文字幕无码专区| 亚洲日韩精品A∨片无码 | 性色AV无码中文AV有码VR| 暴力强奷在线播放无码| 久久久久无码精品国产app| 久久久久亚洲Av无码专| 亚洲精品无码久久久影院相关影片| 一本天堂ⅴ无码亚洲道久久| 亚洲va无码专区国产乱码| 成人年无码AV片在线观看| 精品亚洲成在人线AV无码| 亚洲国产精品无码成人片久久| 中文字幕人妻三级中文无码视频| 亚洲精品GV天堂无码男同| 无码人妻视频一区二区三区| 在线播放无码高潮的视频| 精品无码黑人又粗又大又长| 亚洲aⅴ无码专区在线观看| 精品无码免费专区毛片| 人妻少妇偷人精品无码| 人妻无码一区二区三区AV| 亚洲AV无码专区国产乱码电影| 亚洲中文久久精品无码ww16| 中文字幕无码一区二区三区本日 | 亚洲国产精品无码久久SM| 国精品无码A区一区二区| 在线精品自拍无码| 亚洲精品无码国产|