Play local (hard-drive) video file with HTML5 video tag?
It is possible to play a local video file. <input type=”file” accept=”video/*”/> <video controls autoplay></video> When a file is selected via the input element: ‘change’ event is fired Get the first File object from the input.files FileList Make an object URL that points to the File object Set the object URL to the video.src property … Read more