about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-06-30 16:35:25 -0400
committerelioat <elioat@tilde.institute>2024-06-30 16:35:25 -0400
commitafdf31268d6be9264171dde6a6ebab745ec981fe (patch)
treeef334e20f684bc6f665f634f09f8a39ba030f748
parent977be648748b2124719e309817a3652d512eb2c7 (diff)
downloadtour-afdf31268d6be9264171dde6a6ebab745ec981fe.tar.gz
an idea is born
-rw-r--r--js/dither-video/video.js2
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;