Skip to content

Instantly share code, notes, and snippets.

@hcodes
Created June 16, 2023 07:45
Show Gist options
  • Save hcodes/4270aafc23aac51656c13eeebcf3a9ca to your computer and use it in GitHub Desktop.
Save hcodes/4270aafc23aac51656c13eeebcf3a9ca to your computer and use it in GitHub Desktop.
log videoevents
function logVideoEvents(video) {
[
'canplay',
'canplaythrough',
'durationchange',
'ended',
'loadeddata',
'loadedmetadata',
'pause',
'play',
'playing',
'seeking',
'seeked',
'timeupdate',
'stalled',
'volumechange',
'waiting',
'suspend',
].forEach(function(item) {
video.addEventListener(item, function() {
console.log(item);
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment