Today I Learned - Rocky Kev

TIL how to open up your webcam with html

POSTED ON:

TAGS:

This is done with the capture attribute which can take two values.

// capture 'user' for front camera
<input type="file" capture="user" accept="image/*">

// capture 'environment' for front camera
<input type="file" capture="environment" accept="image/*">

If this attribute is missing, the user agent is free to decide on its own what to do. If the requested facing mode isn't available, the user agent may fall back to its preferred default mode.

MDN on input type file capture


Related TILs

Tagged:

TIL Content sectioning

Content sectioning or landmarks, like sidebar, content, footer. You know, like better names.

TIL php-fpm

PHP runs as a separated service when using PHP-FPM. By using this PHP version as language interpreter, requests are processed through a TCP/IP socket; so that the Nginx web server only handles the HTTP requests and PHP-FPM interprets the PHP code. The fact of having two separate services is key for increasing efficiency.

TIL Considering Device Obsolescence with web development

I'm incredibly guilty of pushing to build for the latest tech. For good reason too - you can write less code, use more native functions, and things are just more likely to work.