- HTML Tutorial
- HTML - Home
- HTML - Introduction
- HTML - Editors
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Headings
- HTML - Paragraphs
- HTML - Fonts
- HTML - Blocks
- HTML - Style Sheet
- HTML - Formatting
- HTML - Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Headers & Caption
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB
- HTML - HEX
- HTML - HSL
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - Video Player
HTML Local Video player
HTML features, include native video support without the need for Flash. Below player works based HTML, CSS and Java Script. You can drag and drop your local Video files into the container.
Example
Let's look at the following example, where we are going to allow the user to upload the local video file
<!DOCTYPE html> <html> <head> <style> body { background-color: #E8DAEF; text-align: center; } </style> </head> <body> <input type="file" accept="video/*"> <br> <video controls height="300" width="500"></video> <script> (function localFileVideoPlayer() { 'WELCOME' var x = function(event) { var vid = this.files[0] var a = window.a || window.webkitURL var y = a.createObjectURL(vid) var videoNode = document.querySelector('video') videoNode.src = y } var z = document.querySelector('input') z.addEventListener('change', x, false) })() </script> </body> </html>
When we run the above code, it will generate an output displaying the video controls allowing the user to upload the local video file on the webpage.
Screen Capture
Below recorder works based on html, CSS and java Script. Before enter into this page, user must be allow camera accessibility to cost images
Example
Consider the following example, where we are going to use the user camera and capture the image
<html> <head> <style> body { text-align: center; background-color: #EAFAF1; } </style> </head> <body> <video id="vid" controls autoplay></video> <canvas id="mytutorial" width="600" height="300" style="border:1px solid #d3d3d3;"></canvas> <button id="snapshot">Take Picture</button> <script> const x = document.getElementById('vid'); const mycanvas = document.getElementById('mytutorial'); const y = mycanvas.getContext('2d'); const clickpicture = document.getElementById('snapshot'); const a = { video: true, }; clickpicture.addEventListener('click', () => { y.drawImage(x, 1, 0, mycanvas.width, mycanvas.height); }); navigator.mediaDevices.getUserMedia(a).then((stream) => { x.srcObject = stream; }); </script> </body> </html>
On running the above code, the output window will pop up, displaying the canvas along with a capture a button on the webpage.