Skip to content

Instantly share code, notes, and snippets.

@ymrl
Last active November 25, 2015 08:02
Show Gist options
  • Save ymrl/035564103cd6ba724de3 to your computer and use it in GitHub Desktop.
Save ymrl/035564103cd6ba724de3 to your computer and use it in GitHub Desktop.
videoタグのキャプチャ取ってdataURLにするやつ
(function(){var d=document,v=d.querySelectorAll('video');Array.prototype.forEach.call(v,function(e){var c=d.createElement('canvas'),x=c.getContext('2d');c.width=e.videoWidth;c.height=e.videoHeight;x.drawImage(e,0,0);window.open(c.toDataURL())});})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment