├── .DS_Store ├── assets ├── video │ └── demo.mov ├── images │ └── sample.webp └── styles │ └── main.css ├── readme.md ├── index.html ├── app.js └── LICENSE /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfavour/camera-demo/HEAD/.DS_Store -------------------------------------------------------------------------------- /assets/video/demo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfavour/camera-demo/HEAD/assets/video/demo.mov -------------------------------------------------------------------------------- /assets/images/sample.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixfavour/camera-demo/HEAD/assets/images/sample.webp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Camera Demo 2 | This application is one that explains how the media peripherals on any device can be interfaced natively using JavaScript. 3 | 4 | This repository was created to support an article that explains this code in detail. -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |