vue實現(xiàn)PC端錄音功能的實例代碼
錄音功能一般來說在移動端比較常見,但是在pc端也要實現(xiàn)按住說話的功能呢?項目需求:按住說話,時長不超過60秒,生成語音文件并上傳,我這里用的是recorder.js
1.項目中新建一個recorder.js文件,內(nèi)容如下,也可在百度上直接搜一個
// 兼容 window.URL = window.URL || window.webkitURL navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia let HZRecorder = function (stream, config) { config = config || {} config.sampleBits = config.sampleBits || 8 // 采樣數(shù)位 8, 16 config.sampleRate = config.sampleRate || (44100 / 6) // 采樣率(1/6 44100) let context = new (window.webkitAudioContext || window.AudioContext)() let audioInput = context.createMediaStreamSource(stream) let createScript = context.createScriptProcessor || context.createJavaScriptNode let recorder = createScript.apply(context, [4096, 1, 1]) let audioData = { size: 0, // 錄音文件長度 buffer: [], // 錄音緩存 inputSampleRate: context.sampleRate, // 輸入采樣率 inputSampleBits: 16, // 輸入采樣數(shù)位 8, 16 outputSampleRate: config.sampleRate, // 輸出采樣率 oututSampleBits: config.sampleBits, // 輸出采樣數(shù)位 8, 16 input: function (data) { this.buffer.push(new Float32Array(data)) this.size += data.length }, compress: function () { // 合并壓縮 // 合并 let data = new Float32Array(this.size) let offset = 0 for (let i = 0; i < this.buffer.length; i++) { data.set(this.buffer[i], offset) offset += this.buffer[i].length } // 壓縮 let compression = parseInt(this.inputSampleRate / this.outputSampleRate) let length = data.length / compression let result = new Float32Array(length) let index = 0; let j = 0 while (index < length) { result[index] = data[j] j += compression index++ } return result }, encodeWAV: function () { let sampleRate = Math.min(this.inputSampleRate, this.outputSampleRate) let sampleBits = Math.min(this.inputSampleBits, this.oututSampleBits) let bytes = this.compress() let dataLength = bytes.length * (sampleBits / 8) let buffer = new ArrayBuffer(44 + dataLength) let data = new DataView(buffer) let channelCount = 1// 單聲道 let offset = 0 let writeString = function (str) { for (let i = 0; i < str.length; i++) { data.setUint8(offset + i, str.charCodeAt(i)) } } // 資源交換文件標(biāo)識符 writeString('RIFF'); offset += 4 // 下個地址開始到文件尾總字節(jié)數(shù),即文件大小-8 data.setUint32(offset, 36 + dataLength, true); offset += 4 // WAV文件標(biāo)志 writeString('WAVE'); offset += 4 // 波形格式標(biāo)志 writeString('fmt '); offset += 4 // 過濾字節(jié),一般為 0x10 = 16 data.setUint32(offset, 16, true); offset += 4 // 格式類別 (PCM形式采樣數(shù)據(jù)) data.setUint16(offset, 1, true); offset += 2 // 通道數(shù) data.setUint16(offset, channelCount, true); offset += 2 // 采樣率,每秒樣本數(shù),表示每個通道的播放速度 data.setUint32(offset, sampleRate, true); offset += 4 // 波形數(shù)據(jù)傳輸率 (每秒平均字節(jié)數(shù)) 單聲道×每秒數(shù)據(jù)位數(shù)×每樣本數(shù)據(jù)位/8 data.setUint32(offset, channelCount * sampleRate * (sampleBits / 8), true); offset += 4 // 快數(shù)據(jù)調(diào)整數(shù) 采樣一次占用字節(jié)數(shù) 單聲道×每樣本的數(shù)據(jù)位數(shù)/8 data.setUint16(offset, channelCount * (sampleBits / 8), true); offset += 2 // 每樣本數(shù)據(jù)位數(shù) data.setUint16(offset, sampleBits, true); offset += 2 // 數(shù)據(jù)標(biāo)識符 writeString('data'); offset += 4 // 采樣數(shù)據(jù)總數(shù),即數(shù)據(jù)總大小-44 data.setUint32(offset, dataLength, true); offset += 4 // 寫入采樣數(shù)據(jù) if (sampleBits === 8) { for (let i = 0; i < bytes.length; i++ , offset++) { let s = Math.max(-1, Math.min(1, bytes[i])) let val = s < 0 ? s * 0x8000 : s * 0x7FFF val = parseInt(255 / (65535 / (val + 32768))) data.setInt8(offset, val, true) } } else { for (let i = 0; i < bytes.length; i++ , offset += 2) { let s = Math.max(-1, Math.min(1, bytes[i])) data.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7FFF, true) } } return new Blob([data], { type: 'audio/mp3' }) } } // 開始錄音 this.start = function () { audioInput.connect(recorder) recorder.connect(context.destination) } // 停止 this.stop = function () { recorder.disconnect() } // 獲取音頻文件 this.getBlob = function () { this.stop() return audioData.encodeWAV() } // 回放 this.play = function (audio) { let downRec = document.getElementById('downloadRec') downRec.href = window.URL.createObjectURL(this.getBlob()) downRec.download = new Date().toLocaleString() + '.mp3' audio.src = window.URL.createObjectURL(this.getBlob()) } // 上傳 this.upload = function (url, callback) { let fd = new FormData() fd.append('audioData', this.getBlob()) let xhr = new XMLHttpRequest() /* eslint-disable */ if (callback) { xhr.upload.addEventListener('progress', function (e) { callback('uploading', e) }, false) xhr.addEventListener('load', function (e) { callback('ok', e) }, false) xhr.addEventListener('error', function (e) { callback('error', e) }, false) xhr.addEventListener('abort', function (e) { callback('cancel', e) }, false) } /* eslint-disable */ xhr.open('POST', url) xhr.send(fd) } // 音頻采集 recorder.onaudioprocess = function (e) { audioData.input(e.inputBuffer.getChannelData(0)) // record(e.inputBuffer.getChannelData(0)); } } // 拋出異常 HZRecorder.throwError = function (message) { alert(message) throw new function () { this.toString = function () { return message } }() } // 是否支持錄音 HZRecorder.canRecording = (navigator.getUserMedia != null) // 獲取錄音機 HZRecorder.get = function (callback, config) { if (callback) { if (navigator.getUserMedia) { navigator.getUserMedia( { audio: true } // 只啟用音頻 , function (stream) { let rec = new HZRecorder(stream, config) callback(rec) } , function (error) { switch (error.code || error.name) { case 'PERMISSION_DENIED': case 'PermissionDeniedError': HZRecorder.throwError('用戶拒絕提供信息。') break case 'NOT_SUPPORTED_ERROR': case 'NotSupportedError': HZRecorder.throwError('瀏覽器不支持硬件設(shè)備。') break case 'MANDATORY_UNSATISFIED_ERROR': case 'MandatoryUnsatisfiedError': HZRecorder.throwError('無法發(fā)現(xiàn)指定的硬件設(shè)備。') break default: HZRecorder.throwError('無法打開麥克風(fēng)。異常信息:' + (error.code || error.name)) break } }) } else { HZRecorder.throwErr('當(dāng)前瀏覽器不支持錄音功能。'); return } } } export default HZRecorder
2.頁面中使用,具體如下
<template> <div class="wrap"> <el-form v-model="form"> <el-form-item> <input type="button" class="btn-record-voice" @mousedown.prevent="mouseStart" @mouseup.prevent="mouseEnd" v-model="form.time"/> <audio v-if="form.audioUrl" :src="form.audioUrl" controls="controls" class="content-audio" style="display: block;">語音</audio> </el-form-item> <el-form> </div> </template> <script> // 引入recorder.js import recording from '@/js/recorder/recorder.js' export default { data() { return { form: { time: '按住說話(60秒)', audioUrl: '' }, num: 60, // 按住說話時間 recorder: null, interval: '', audioFileList: [], // 上傳語音列表 startTime: '', // 語音開始時間 endTime: '', // 語音結(jié)束 } }, methods: { // 清除定時器 clearTimer () { if (this.interval) { this.num = 60 clearInterval(this.interval) } }, // 長按說話 mouseStart () { this.clearTimer() this.startTime = new Date().getTime() recording.get((rec) => { // 當(dāng)首次按下時,要獲取瀏覽器的麥克風(fēng)權(quán)限,所以這時要做一個判斷處理 if (rec) { // 首次按下,只調(diào)用一次 if (this.flag) { this.mouseEnd() this.flag = false } else { this.recorder = rec this.interval = setInterval(() => { if (this.num <= 0) { this.recorder.stop() this.num = 60 this.clearTimer() } else { this.num-- this.time = '松開結(jié)束(' + this.num + '秒)' this.recorder.start() } }, 1000) } } }) }, // 松開時上傳語音 mouseEnd () { this.clearTimer() this.endTime = new Date().getTime() if (this.recorder) { this.recorder.stop() // 重置說話時間 this.num = 60 this.time = '按住說話(' + this.num + '秒)' // 獲取語音二進制文件 let bold = this.recorder.getBlob() // 將獲取的二進制對象轉(zhuǎn)為二進制文件流 let files = new File([bold], 'test.mp3', {type: 'audio/mp3', lastModified: Date.now()}) let fd = new FormData() fd.append('file', files) fd.append('tenantId', 3) // 額外參數(shù),可根據(jù)選擇填寫 // 這里是通過上傳語音文件的接口,獲取接口返回的路徑作為語音路徑 this.uploadFile(fd) } } } } </script> <style scoped> </style>
3.除了上述代碼中的注釋外,還有一些地方需要注意
- 上傳語音時,一般會有兩個參數(shù),一個是語音的路徑,一個是語音的時長,路徑直接就是 this.form.audioUrl ,不過時長這里需要注意的是,由于我們一開始設(shè)置了定時器是有一秒的延遲,所以,要在獲取到的時長基礎(chǔ)上在減去一秒
- 初次按住說話一定要做判斷,不然就會報錯啦
- 第三點也是很重要的一點,因為我是在本地項目中測試的,可以實現(xiàn)錄音功能,但是打包到測試環(huán)境后,就無法訪問麥克風(fēng),經(jīng)過多方嘗試后,發(fā)現(xiàn)是由于我們測試環(huán)境的地址是http://***,而在谷歌瀏覽器中有這樣一種安全策略,只允許在localhost下及https下才可以訪問 ,因此換一下就完美的解決了這個問題了
- 在使用過程中,針對不同的瀏覽器可能會有些兼容性的問題,如果遇到了還需自己單獨處理下
總結(jié)
以上所述是小編給大家介紹的vue實現(xiàn)PC端錄音功能的實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!
相關(guān)文章
vue2文件流下載成功后文件格式錯誤、打不開及內(nèi)容缺失的解決方法
使用Vue時我們前端如何處理后端返回的文件流,下面這篇文章主要給大家介紹了關(guān)于vue2文件流下載成功后文件格式錯誤、打不開及內(nèi)容缺失的解決方法,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下2023-04-04詳解ElementUI之表單驗證、數(shù)據(jù)綁定、路由跳轉(zhuǎn)
本篇文章主要介紹了ElementUI之表單驗證、數(shù)據(jù)綁定、路由跳轉(zhuǎn),非常具有實用價值,需要的朋友可以參考下2017-06-06ElementPlus?Table表格實現(xiàn)可編輯單元格
本文主要介紹了ElementPlus?Table表格實現(xiàn)可編輯單元格,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2024-12-12使用ElementUI循環(huán)生成的Form表單添加校驗
這篇文章主要介紹了使用ElementUI循環(huán)生成的Form表單添加校驗,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-07-07vue實現(xiàn)拖動調(diào)整左右兩側(cè)容器大小
這篇文章主要為大家詳細介紹了vue實現(xiàn)拖動調(diào)整左右兩側(cè)容器大小,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-03-03