muteUnmuteButton.addEventListener(‘click’, () => { if (video.muted) {
Creating a Custom HTML5 Video Player with CodePen** custom html5 video player codepen
video.addEventListener(‘timeupdate’, () => { const progress = (video muteUnmuteButton
video.muted = true; muteUnmuteButton.textContent = 'Unmute'; } }); muteUnmuteButton.textContent = 'Unmute'
playPauseButton.addEventListener(‘click’, () => { if (video.paused) {
video.muted = false; muteUnmuteButton.textContent = 'Mute'; } else {