AudioContext() 构造方法建立了一个新的 AudioContext 对象 它表明了一个由音频模块连接而成的音频处理图, 每个模块由 AudioNode 表示.javascript
let AudioContext = window.AudioContext || window.webkitAudioContext;
let audioContext = new AudioContext(); //实例化AudioContext对象
复制代码
let analyser;
analyser = audioContext.createAnalyser();
analyser.fftSize = 256;
复制代码
let audioSrc = audioContext.createMediaElementSource(audio); //从audio中获取声音源文件
audioSrc.connect(analyser);
analyser.connect(audioContext.destination);
复制代码
let dataArray = new Uint8Array(analyser.frequencyBinCount);
analyser.getByteFrequencyData(dataArray);
复制代码
要使动画动起来,咱们须要不断重绘Canvas标签里的内容,requestAnimationFrame 能够帮你以60fps的帧率绘制动画。css
function render() {
requestAnimationFrame(render);
//...
}
requestAnimationFrame(render);
复制代码
浏览器 | Chrome | Firefox | IE | Opera | Safari |
---|---|---|---|---|---|
支持版本 | 10.0 | 25.0 | 不支持 | 15.0 | 6.0 |
jshtml
let AudioContext = window.AudioContext || window.webkitAudioContext;
let audioContext = new AudioContext();
let analyser = audioContext.createAnalyser();
analyser.fftSize = 256;
analyser = audioContext.createAnalyser();
let audio = document.getElementById('audio');
let audioSrc = audioContext.createMediaElementSource(audio);
audioSrc.connect(analyser);
analyser.connect(audioContext.destination);
let canvas = document.getElementById('canvas');
let ctx = canvas.getContext("2d");
ctx.lineWidth = 2;
let grd = ctx.createLinearGradient(0, 0, 600, 0);
grd.addColorStop(0, "#00d0ff");
grd.addColorStop(1, "#eee");
let grd2 = ctx.createLinearGradient(0, 0, 600, 0);
grd2.addColorStop(0, "#fff");
grd2.addColorStop(1, "#e720ee");
let het=0;
var globalID;
function render() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
let dataArray = new Uint8Array(analyser.frequencyBinCount);
analyser.getByteFrequencyData(dataArray);
ctx.beginPath();
for (let i = 0; i < 200; i++) {
let value = dataArray[6*i];
ctx.fillStyle = grd;
ctx.fillRect(i * 5, 300, 2, -value + 1);
ctx.fillRect(i * 5, 280-value, 2, het);
ctx.fillStyle = grd2;
ctx.fillRect(i * 5, 300, 2, value + 1);
ctx.fillRect(i * 5, 320+value, 2, het);
}
globalID=requestAnimationFrame(render);
};
globalID=requestAnimationFrame(render);
var fileChange = document.getElementById('fileChooser');
fileChange.onchange = fileChange=(e)=>{
if( e.target.files[0]){
let playfile= URL.createObjectURL( e.target.files[0]);
audio.src=playfile;
let musicName = e.target.files[0].name.split('.')[0];
audio.play();
}
};
复制代码
htmljava
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<style type="text/css">
body{
height: 100%;
width: 100%;
background-color: #3f3f3f;
}
</style>
<body>
<audio id="audio" src="music/music.mp3">
Your browser does not support the audio element.
</audio>
<canvas id="canvas" width="800" height="600" >
Your browser does not support Canvas tag.
</canvas>
<input id="fileChooser" type="file" />
</body>
<script src="js/js.js" type="text/javascript" charset="utf-8"></script>
</html>
复制代码
示例:liazm.com/#/audioweb