about summary refs log tree commit diff stats
path: root/js/dither-video/video.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dither-video/video.js')
-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;