Default HTML5 camera input broken on Android / Chrome
I'm trying to create a simple web app for smartphones that lets the camera app take a picture. The standard html5 is super simple: <input type="file" accept="image/png, image/jpeg"> https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file So I tried this. $ cat index.html <!doctype html> <html> <body> <form action="/store-image/"> <label for="img">Select image:</label> <input type="file" id="img" name="img" accept="image/*" capture="camera"> <input type="submit"> </form> </body> </html> $ python3 -m http.server I go to my phone. Camera pops up, I submit the picture, and ... "Unable to complete previous operation due to low memory". Ok, the simplest stock html...