-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscript.js
111 lines (89 loc) · 2.91 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
const audioCtx = new (window.AudioContext || window.webkitAudioContext)();
const audioElement = document.querySelector('audio');
const canvasElement = document.querySelector('canvas');
const canvasCtx = canvasElement.getContext('2d');
const playPauseButton = document.querySelector('.play-pause');
const seekbar = document.querySelector('.seekbar');
const volumeBar = document.querySelector('.volume');
const pauseIcon = `<span class="material-icons">
pause
</span>`;
const playIcon = `<span class="material-icons">
play_arrow
</span>`;
const replayIcon = `<span class="material-icons">
replay
</span>`;
const WIDTH = canvasElement.clientWidth;
const HEIGHT = canvasElement.clientHeight;
seekbar.value = 0;
volumeBar.value = 100;
let audioState = {
isReplay : false,
isPaused : true,
};
playPauseButton.addEventListener('click', togglePlayPause);
audioElement.addEventListener('timeupdate', setProgress);
audioElement.addEventListener('ended', onEnd);
audioElement.addEventListener('canplay',setDuration);
seekbar.addEventListener('input', onSeek);
volumeBar.addEventListener('input', onVolumeSeek);
const source = audioCtx.createMediaElementSource(audioElement);
const analyser = audioCtx.createAnalyser();
analyser.fftSize = 256;
source.connect(analyser);
analyser.connect(audioCtx.destination);
const bufferLength = analyser.frequencyBinCount;
const dataArray = new Uint8Array(bufferLength);
function draw() {
analyser.getByteFrequencyData(dataArray);
canvasCtx.fillStyle = 'rgb(2, 2, 2)';
canvasCtx.fillRect(0, 0, WIDTH, HEIGHT);
const barWidth = (WIDTH / bufferLength) * 2.5;
let barHeight;
let x = 0;
for(let i = 0; i < bufferLength; i++) {
barHeight = dataArray[i] / 2.8;
canvasCtx.fillStyle = `rgb(50,50, 200)`;
canvasCtx.fillRect(x, HEIGHT - barHeight, barWidth, barHeight);
x += barWidth + 1;
}
requestAnimationFrame(draw);
}
draw();
function togglePlayPause() {
audioCtx.resume().then(() => {
if(audioState.isPaused) {
playPauseButton.innerHTML = pauseIcon;
audioElement.play();
} else {
if(audioState.isReplay) { // Replay
playPauseButton.innerHTML = pauseIcon;
audioElement.play();
audioState.isReplay = false;
return;
}
playPauseButton.innerHTML = playIcon;
audioElement.pause();
}
audioState.isPaused = !audioState.isPaused;
});
}
function setProgress() {
seekbar.value = audioElement.currentTime;
}
function setDuration() {
seekbar.max = audioElement.duration;
}
function onEnd() {
playPauseButton.innerHTML = replayIcon;
audioElement.currentTime = 0;
seekbar.value = 0;
audioState.isReplay = true;
}
function onSeek(evt) {
audioElement.currentTime = evt.target.value;
}
function onVolumeSeek(evt) {
audioElement.volume = evt.target.value / 100;
}