vue實(shí)現(xiàn)PC端錄音功能的實(shí)例代碼
錄音功能一般來(lái)說(shuō)在移動(dòng)端比較常見(jiàn),但是在pc端也要實(shí)現(xiàn)按住說(shuō)話(huà)的功能呢?項(xiàng)目需求:按住說(shuō)話(huà),時(shí)長(zhǎng)不超過(guò)60秒,生成語(yǔ)音文件并上傳,我這里用的是recorder.js
1.項(xiàng)目中新建一個(gè)recorder.js文件,內(nèi)容如下,也可在百度上直接搜一個(gè)
// 兼容 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, // 錄音文件長(zhǎng)度 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)識(shí)符 writeString('RIFF'); offset += 4 // 下個(gè)地址開(kāi)始到文件尾總字節(jié)數(shù),即文件大小-8 data.setUint32(offset, 36 + dataLength, true); offset += 4 // WAV文件標(biāo)志 writeString('WAVE'); offset += 4 // 波形格式標(biāo)志 writeString('fmt '); offset += 4 // 過(guò)濾字節(jié),一般為 0x10 = 16 data.setUint32(offset, 16, true); offset += 4 // 格式類(lèi)別 (PCM形式采樣數(shù)據(jù)) data.setUint16(offset, 1, true); offset += 2 // 通道數(shù) data.setUint16(offset, channelCount, true); offset += 2 // 采樣率,每秒樣本數(shù),表示每個(gè)通道的播放速度 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)識(shí)符 writeString('data'); offset += 4 // 采樣數(shù)據(jù)總數(shù),即數(shù)據(jù)總大小-44 data.setUint32(offset, dataLength, true); offset += 4 // 寫(xiě)入采樣數(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' }) } } // 開(kāi)始錄音 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) // 獲取錄音機(jī) 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('用戶(hù)拒絕提供信息。') break case 'NOT_SUPPORTED_ERROR': case 'NotSupportedError': HZRecorder.throwError('瀏覽器不支持硬件設(shè)備。') break case 'MANDATORY_UNSATISFIED_ERROR': case 'MandatoryUnsatisfiedError': HZRecorder.throwError('無(wú)法發(fā)現(xiàn)指定的硬件設(shè)備。') break default: HZRecorder.throwError('無(wú)法打開(kāi)麥克風(fēng)。異常信息:' + (error.code || error.name)) break } }) } else { HZRecorder.throwErr('當(dāng)前瀏覽器不支持錄音功能。'); return } } } export default HZRecorder
2.頁(yè)面中使用,具體如下
<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;">語(yǔ)音</audio> </el-form-item> <el-form> </div> </template> <script> // 引入recorder.js import recording from '@/js/recorder/recorder.js' export default { data() { return { form: { time: '按住說(shuō)話(huà)(60秒)', audioUrl: '' }, num: 60, // 按住說(shuō)話(huà)時(shí)間 recorder: null, interval: '', audioFileList: [], // 上傳語(yǔ)音列表 startTime: '', // 語(yǔ)音開(kāi)始時(shí)間 endTime: '', // 語(yǔ)音結(jié)束 } }, methods: { // 清除定時(shí)器 clearTimer () { if (this.interval) { this.num = 60 clearInterval(this.interval) } }, // 長(zhǎng)按說(shuō)話(huà) mouseStart () { this.clearTimer() this.startTime = new Date().getTime() recording.get((rec) => { // 當(dāng)首次按下時(shí),要獲取瀏覽器的麥克風(fēng)權(quán)限,所以這時(shí)要做一個(gè)判斷處理 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 = '松開(kāi)結(jié)束(' + this.num + '秒)' this.recorder.start() } }, 1000) } } }) }, // 松開(kāi)時(shí)上傳語(yǔ)音 mouseEnd () { this.clearTimer() this.endTime = new Date().getTime() if (this.recorder) { this.recorder.stop() // 重置說(shuō)話(huà)時(shí)間 this.num = 60 this.time = '按住說(shuō)話(huà)(' + this.num + '秒)' // 獲取語(yǔ)音二進(jìn)制文件 let bold = this.recorder.getBlob() // 將獲取的二進(jìn)制對(duì)象轉(zhuǎn)為二進(jì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ù)選擇填寫(xiě) // 這里是通過(guò)上傳語(yǔ)音文件的接口,獲取接口返回的路徑作為語(yǔ)音路徑 this.uploadFile(fd) } } } } </script> <style scoped> </style>
3.除了上述代碼中的注釋外,還有一些地方需要注意
- 上傳語(yǔ)音時(shí),一般會(huì)有兩個(gè)參數(shù),一個(gè)是語(yǔ)音的路徑,一個(gè)是語(yǔ)音的時(shí)長(zhǎng),路徑直接就是 this.form.audioUrl ,不過(guò)時(shí)長(zhǎng)這里需要注意的是,由于我們一開(kāi)始設(shè)置了定時(shí)器是有一秒的延遲,所以,要在獲取到的時(shí)長(zhǎng)基礎(chǔ)上在減去一秒
- 初次按住說(shuō)話(huà)一定要做判斷,不然就會(huì)報(bào)錯(cuò)啦
- 第三點(diǎn)也是很重要的一點(diǎn),因?yàn)槲沂窃诒镜仨?xiàng)目中測(cè)試的,可以實(shí)現(xiàn)錄音功能,但是打包到測(cè)試環(huán)境后,就無(wú)法訪問(wèn)麥克風(fēng),經(jīng)過(guò)多方嘗試后,發(fā)現(xiàn)是由于我們測(cè)試環(huán)境的地址是http://***,而在谷歌瀏覽器中有這樣一種安全策略,只允許在localhost下及https下才可以訪問(wèn) ,因此換一下就完美的解決了這個(gè)問(wèn)題了
- 在使用過(guò)程中,針對(duì)不同的瀏覽器可能會(huì)有些兼容性的問(wèn)題,如果遇到了還需自己?jiǎn)为?dú)處理下
總結(jié)
以上所述是小編給大家介紹的vue實(shí)現(xiàn)PC端錄音功能的實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!
- vue使用recorder.js實(shí)現(xiàn)錄音功能
- Vue實(shí)現(xiàn)懸浮框自由移動(dòng)+錄音功能的示例代碼
- vue實(shí)現(xiàn)錄音功能js-audio-recorder帶波浪圖效果的示例
- vue使用recorder-core.js實(shí)現(xiàn)錄音功能
- vue使用js-audio-recorder實(shí)現(xiàn)錄音功能
- vue實(shí)現(xiàn)錄音并轉(zhuǎn)文字功能包括PC端web手機(jī)端web(實(shí)現(xiàn)過(guò)程)
- Vue如何使用js-audio-recorder插件實(shí)現(xiàn)錄音功能并將文件轉(zhuǎn)成wav上傳
相關(guān)文章
Vue實(shí)現(xiàn)簡(jiǎn)單搜索功能的示例代碼
在vue項(xiàng)目中,搜索功能是我們經(jīng)常需要使用的一個(gè)場(chǎng)景,最常用的是在列表數(shù)據(jù)中搜索一個(gè)想要的,今天的例子就是我們實(shí)現(xiàn)vue從列表數(shù)據(jù)中搜索,希望對(duì)大家有所幫助2023-03-03vue2文件流下載成功后文件格式錯(cuò)誤、打不開(kāi)及內(nèi)容缺失的解決方法
使用Vue時(shí)我們前端如何處理后端返回的文件流,下面這篇文章主要給大家介紹了關(guān)于vue2文件流下載成功后文件格式錯(cuò)誤、打不開(kāi)及內(nèi)容缺失的解決方法,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下2023-04-04詳解ElementUI之表單驗(yàn)證、數(shù)據(jù)綁定、路由跳轉(zhuǎn)
本篇文章主要介紹了ElementUI之表單驗(yàn)證、數(shù)據(jù)綁定、路由跳轉(zhuǎn),非常具有實(shí)用價(jià)值,需要的朋友可以參考下2017-06-06基于Vue實(shí)現(xiàn)簡(jiǎn)單的權(quán)限控制
這篇文章主要為大家學(xué)習(xí)介紹了如何基于Vue實(shí)現(xiàn)簡(jiǎn)單的權(quán)限控制,文中的示例代碼講解詳細(xì),具有一定的參考價(jià)值,需要的小伙伴可以了解一下2023-07-07ElementPlus?Table表格實(shí)現(xiàn)可編輯單元格
本文主要介紹了ElementPlus?Table表格實(shí)現(xiàn)可編輯單元格,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2024-12-12使用ElementUI循環(huán)生成的Form表單添加校驗(yàn)
這篇文章主要介紹了使用ElementUI循環(huán)生成的Form表單添加校驗(yàn),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-07-07vue實(shí)現(xiàn)拖動(dòng)調(diào)整左右兩側(cè)容器大小
這篇文章主要為大家詳細(xì)介紹了vue實(shí)現(xiàn)拖動(dòng)調(diào)整左右兩側(cè)容器大小,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-03-03