Vue 前端頁面利用MediaRecorder實現音頻錄製

来源:https://www.cnblogs.com/echo-lovely/p/18232248
-Advertisement-
Play Games

Don't Talk, code is here: 重點是startRecord 方法 <template> <div> <el-tooltip class="item" effect="dark" content="再次點擊 【開始錄音】 即為重新錄製,之前錄製的將被作廢" placement=" ...


Don't Talk, code is here:

重點是startRecord 方法

<template>
  <div>
    <el-tooltip class="item" effect="dark" content="再次點擊 【開始錄音】 即為重新錄製,之前錄製的將被作廢" placement="top">
      <el-button :disabled="isPlay" :icon="isRecording?'el-icon-turn-off-microphone  el-icon--right' : 'el-icon-microphone el-icon--right'" plain :type="isRecording ? 'danger' : 'primary'" size="mini" @click="togleAudioRecord">{{ isRecording ? '停止錄音' : '開始錄音' }}</el-button>
    </el-tooltip>
    <el-button plain :disabled="isRecording" type="info" size="mini" @click="toglePlayRecord">
      <svg-icon :icon-class="isPlay ? 'stop-white' :'play-fill-white' " />{{ isPlay ? '停止播放' : '試聽錄音' }}
    </el-button>
    <el-button icon="el-icon-upload el-icon--right" plain type="success" size="mini" @click="uploadRecord">上傳</el-button>
    <span :class="{ 'time-black': isPlay, 'time-red': isRecording && recordingSecond %2 === 0, 'time-pink': isRecording && recordingSecond %2 === 1 }" class="font-bold margin-horizon-10">{{ formatTimeFormSec(recordingSecond) }}</span>
    <audio ref="audio" :volume="0.85" @ended="audioPlayEnd" />
  </div>
</template>

<script>
export default {
  name: 'AudioRecorder',
  data() {
    return {
      isRecording: false,
      recordingSecond: 0,
      intervalSeed: null,
      isPlay: false,
      audioStream: null, // 用戶存儲媒體流
      audioRecorder: null, // 錄音對象
      audioBlob: null, // 錄音文件
      audioUrl: null // 錄音文件試聽url
    }
  },
  beforeDestroy() { // 組件銷毀時,停止當前正在執行的操作,釋放資源,防止記憶體泄漏
    // 如果正在錄製,則結束錄製
    this.isRecording && this.stopRecord()
    // 如果正在播放,則停止播放
    this.isPlay && this.stop()
  },
  methods: {
    togleAudioRecord() {
      this.isRecording = !this.isRecording
      if (this.isRecording) { // 需要開始錄音
        this.startRecord()
        this.startInterval() // 錄音時長計時器
      } else { // 需要結束錄音
        this.stopRecord()
        this.stopInterval()
      }
    },
    toglePlayRecord() {
      if (this.audioUrl == null) {
        this.$message.error('請先錄製音頻')
        return
      }
      this.isPlay = !this.isPlay
      if (this.isPlay) { // 需要播放
        this.play()
        this.startInterval() // 錄音時長計時器
      } else { // 停止播放
        this.stop()
        this.stopInterval()
      }
    },
    uploadRecord() { // TODO 上傳錄音

    },
    audioPlayEnd() { // 音頻播放結束將被調用
      this.isPlay = false
      this.stopInterval()
    },
    startRecord() { // 開始錄音
      navigator.mediaDevices.getUserMedia({ audio: true, video: false })
        .then(stream => {
          this.audioStream = stream
          this.audioRecorder = new MediaRecorder(stream)
          this.audioRecorder.start()
          this.audioRecorder.ondataavailable = e => {
            this.audioBlob = new Blob([e.data], { type: 'audio/wav' })
            this.audioUrl = URL.createObjectURL(this.audioBlob)
            this.$refs.audio.src = this.audioUrl
          }
        })
        .catch(err => {
          console.log(err)
        })
    },
    stopRecord() { // 結束錄音
      this.audioRecorder.stop()
      this.audioStream.getTracks().forEach(track => track.stop())
      this.audioRecorder = null
      this.audioStream = null
      this.audioBlob = null
      this.audioUrl = null
    },
    play() { // 開始播放
      this.$refs.audio.play()
    },
    stop() { // 停止播放
      this.$refs.audio.currentTime = 0
      this.$refs.audio.pause()
    },
    formatTimeFormSec(sec) { // 將錄製的秒數轉換為 00:01:01 格式的字元串
      const h = Math.floor(sec / 3600)
      const m = Math.floor(sec % 3600 / 60)
      const s = Math.floor(sec % 60)
      return (h > 9 ? h : '0' + h) + ':' + (m > 9 ? m : '0' + m) + ':' + (s > 9 ? s : '0' + s)
    },
    startInterval() { // 開始計時秒數
      this.recordingSecond = 0
      this.intervalSeed = setInterval(() => {
        this.recordingSecond++
      }, 1000)
    },
    stopInterval() { // 停止計時秒數
      clearInterval(this.intervalSeed)
    } }
}
</script>

<style lang="scss" scoped>
.time-black{
  color: #303133;
}

.time-red{
  color: #ff0000;
}

.time-pink{
  color: #ff6767;
}

.font-bold{
  font-weight: bolder;
}

.margin-horizon-10{
  margin: 0 10px;
}
</style>

環境

  1. Vue 2.?
  2. Element-ui
  3. Ruoyi-vue

備註

代碼是完整的組件,放在

      <el-form-item label="錄音">
        <AudioRecorder />
      </el-form-item>

顯示起來剛剛好。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • title: Vuex 4與狀態管理實戰指南 date: 2024/6/6 updated: 2024/6/6 excerpt: 這篇文章介紹了使用Vuex進行Vue應用狀態管理的最佳實踐,包括為何需要狀態管理,Vuex的核心概念如store、actions、mutations和getters,以及 ...
  • ‍ 寫在開頭 點贊 + 收藏 學會 [webpack由淺入深]系列的內容 第一層: 瞭解一個小功能的完整流程. 看完可以滿足好奇心和應付原理級別面試. 第二層: 源碼陪讀, webpack源碼比較靈活, 自己看容易陷入迷惑. 文章里會貼出關鍵流程的代碼來輔助閱讀源碼. 如果你正在 ...
  • 工作中難免會遇到各種各樣的數據結構,較為全面的瞭解數組操作,對於複雜數據結構的處理會非常有用且節省時間。所以想在這裡總結一下工作中常用的數組操作,都是一些非常基礎的知識,大家看個樂就好~ ...
  • Promise 對象使用 ★ Promise 基本認識 Promise 是一個對象,用於表示非同步操作的最終完成(或失敗)及其結果值。它允許你關聯處理程式,這些處理程式將在非同步操作成功完成時或者失敗時調用,從而避免了更複雜的嵌套回調(即回調地獄)。Promise 對象通常用於執行非同步操作,如網路請求、 ...
  • title: Vue 3 Teleport:掌控渲染的藝術 date: 2024/6/5 updated: 2024/6/5 description: 這篇文章介紹了Vue3框架中的一個創新特性——Teleport,它允許開發者將組件內容投送到文檔對象模型(DOM)中的任意位置,即使這個位置在組件的 ...
  • ‍ 寫在開頭 點贊 + 收藏 學會 首先明確一點,localStorage是同步的 一、首先為什麼會有這樣的問題 localStorage 是 Web Storage API 的一部分,它提供了一種存儲鍵值對的機制。localStorage 的數據是持久存儲在用戶的硬碟上的 ...
  • 前端跨域問題的解決方案通常涉及幾種不同的方法,每種方法都有其特定的應用場景和優缺點。以下是一些常見的前端跨域解決方案: JSONP(JSON with Padding) 原理:利用<script>標簽沒有跨域限制的特性,通過動態創建<script>標簽並設置其src屬性為跨域請求的URL,來實現跨域 ...
  • Web 性能是 Web 開發的一個重要方面,側重於網頁載入速度以及對用戶輸入的響應速度 通過優化網站來改善性能,可以在為用戶提供更好的體驗 網頁性能既廣泛又非常深入 1. 為什麼性能這麼重要? 1. 性能關乎留住用戶 性能對於任何線上業務都至關重要 與載入速度緩慢、讓人感覺運行緩慢的網站相比,載入速... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...