您的位置:首页 > 财经 > 产业 > 海外版tiktok官网入口_建站行业严重产能过剩_投资网站建设方案_抖音代运营收费详细价格

海外版tiktok官网入口_建站行业严重产能过剩_投资网站建设方案_抖音代运营收费详细价格

2024/11/18 9:09:55 来源:https://blog.csdn.net/qq_53270554/article/details/142784106  浏览:    关键词:海外版tiktok官网入口_建站行业严重产能过剩_投资网站建设方案_抖音代运营收费详细价格
海外版tiktok官网入口_建站行业严重产能过剩_投资网站建设方案_抖音代运营收费详细价格
前言

这两天写项目刚好遇到Ai对话相关的需求,需要录音功能,绘制录制波形图,写了一个函数用canvas实现可视化,保留分享一下,有需要的直接粘贴即可,使用时传入一个1024长的,0-255大小的Uint8Array类型音频数据源

<canvas ref="canvasRef" width="800" height="200"></canvas>
const drawWaveform = (audioArray) => {const canvas = canvasRef.value;if (!canvas || !audioArray) return;const ctx = canvas.getContext('2d');if (!ctx) return;const width = canvas.width;const height = canvas.height;const bufferLength = audioArray.length;// 清除画布ctx.clearRect(0, 0, width, height);// 设置线条样式ctx.strokeStyle = '#4f35b5';ctx.lineWidth = 2;ctx.beginPath();const sliceWidth = width / bufferLength;let x = 0;for (let i = 0; i < bufferLength; i++) {const value = audioArray[i] / 255.0;  // 将0-255的值归一化为0-1const y = value * height;if (i === 0) {ctx.moveTo(x, y);} else {ctx.lineTo(x, y);}x += sliceWidth;}ctx.stroke();
};

通过requestAnimationFrame调用即可

示例:

// 持续更新波形
const updateWaveform = () => {ensureRecorder(() => {audioArray.value = recorder!.getRecordAnalyseData();drawWaveform(audioArray.value);animationFrameId = requestAnimationFrame(updateWaveform);});
};

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com