变形虫音频
使用 Canvas 和 Web Audio API 的 Javascript 音频可视化工具
点击播放或暂停。 目前支持拖放链接。
用法
var player = new AmoebaAudio({
parent : document.getElementById("container")
});
player.load(url); // Must be called first
player.play();
player.pause();
player.toggle(); // Plays if paused or vice versa
player.draw(); // Draws to the generated canvas element added to the parent
代码大纲
new AmoebaAudio
创建一个新的音频播放器和所有相关的
1