Last active
May 17, 2024 07:45
-
-
Save edin-m/889fa79a0fa124b1a8c3 to your computer and use it in GitHub Desktop.
Revisions
-
edin-m renamed this gist
Mar 10, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
edin-m renamed this gist
Mar 4, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
edin-m created this gist
Feb 28, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <video></video> <br/> <input type="file" name="file" id="fileItem" onchange="onChange()" > <input type="submit" value="Play"> </form> <script type="text/javascript"> var URL = window.URL || window.webkitURL; var video = document.getElementsByTagName('video')[0]; function onChange() { var fileItem = document.getElementById('fileItem'); var files = fileItem.files; var file = files[0]; var url = URL.createObjectURL(file); video.src = url; video.load(); video.onloadeddata = function() { video.play(); } } </script> </body> </html>