diff options
author | elioat <elioat@tilde.institute> | 2024-06-30 16:35:25 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-06-30 16:35:25 -0400 |
commit | afdf31268d6be9264171dde6a6ebab745ec981fe (patch) | |
tree | ef334e20f684bc6f665f634f09f8a39ba030f748 | |
parent | 977be648748b2124719e309817a3652d512eb2c7 (diff) | |
download | tour-afdf31268d6be9264171dde6a6ebab745ec981fe.tar.gz |
an idea is born
-rw-r--r-- | js/dither-video/video.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/dither-video/video.js b/js/dither-video/video.js index 0da0157..124fab2 100644 --- a/js/dither-video/video.js +++ b/js/dither-video/video.js @@ -3,6 +3,8 @@ const video = document.getElementById('webcam'); const canvas = document.getElementById('ditheredOutput'); const context = canvas.getContext('2d'); +// IDEA: Turn this into camera, where you can capture frames from the video feed and save them as .png files!? + let stream = null; let isCameraOn = false; |