-
-
Save fhefh2015/66353769ba848ff61d53c6a8da252d2d to your computer and use it in GitHub Desktop.
HTML video play file blob object url
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 characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment