html audio
Audio 관련을 모아 둔다
Audio Tag
Visualizations Audio
API 설명
Visualizations with Web Audio API
순간에 대한 시각화
Making an Audio Waveform Visualizer with Vanilla JavaScript
총 길이에 대한 시각화
- examples
- 이슈
- 문제 : The AudioContext was not allowed to start
wavesurfer.on('ready', function () { wavesurfer.play() }
- 관련 이슈 : https://github.com/katspaugh/wavesurfer.js/issues/1657
- 결론 : 사용자 액션으로 play 하면 된다. 이유는 아직 모르겠다
- 문제 : The AudioContext was not allowed to start
Custom
Building a Custom HTML5 Audio Player With Javascript
TEST
Not implemented: HTMLMediaElement.prototype.pause
window.HTMLMediaElement.prototype.load = () => { /* do nothing */ };
window.HTMLMediaElement.prototype.play = () => { /* do nothing */ };
window.HTMLMediaElement.prototype.pause = () => { /* do nothing */ };
window.HTMLMediaElement.prototype.addTextTrack = () => { /* do nothing */ };