Skip to content

Instantly share code, notes, and snippets.

@nbw
Created July 30, 2018 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbw/a5107dceddb0e36eabbdd1cd69d9b11d to your computer and use it in GitHub Desktop.
Save nbw/a5107dceddb0e36eabbdd1cd69d9b11d to your computer and use it in GitHub Desktop.
function draw(video, canvas, context, frameRate) {
context.drawImage(video, 0, 0, canvas.width, canvas.height);
setTimeout(draw, 1/frameRate, video, canvas, context, frameRate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment