+ 1
Can i insert audio or video from my pc
Can i insert directly audio or video from my PC without using net. Which are already present in my PC đ». Then how to do that
1 Answer
+ 5
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:
1-'change' event is fired
2-Get the first File object from the input.files FileList
3-Make an object URL that points to the File object
4-Set the object URL to the video.src property
5-Lean back and watch :)
http://jsfiddle.net/dsbonev/cCCZ2/embedded/result,js,html,css/