Last active
June 25, 2021 14:57
-
-
Save bkeepers/4979576 to your computer and use it in GitHub Desktop.
Keep two HTML5 video elements in sync.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
videos = document.getElementsByTagName('video') | |
new VideoSync(videos[0], videos[1]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Keep two HTML5 video elements in sync. | |
# | |
# @primary - primary video with controls and audio | |
# @secondary - secondary video, | |
class @VideoSync | |
constructor: (@primary, @secondary) -> | |
@ready = false | |
@secondary.addEventListener 'canplay', => @ready = true | |
@primary.addEventListener 'play', => @secondary.play() | |
@primary.addEventListener 'pause', => @secondary.pause() | |
@primary.addEventListener 'timeupdate', @sync | |
@primary.addEventListener 'seeking', @sync | |
sync: => | |
@secondary.currentTime = @primary.currentTime if @ready |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks Brandon, this proof to be very helpful for me 👍
I wrote a similar implementation in TypeScript & RxJS but only amend it a bit to
removeEventListeners
when I am done with it (to save memory leak)