html5取得影片的長寛
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style>
</style>
<script src="https://code.jquery.com/jquery-2.2.3.min.js" ></script>
</head>
<body>
<video autobuffer="true" id="video" controls="true">
<source src="C:\\test.mp4"></scource>
</video>
</body>
</html>
<script>
$(function () {
$("#video").bind("loadedmetadata", function () {
var width = this.videoWidth;
var height = this.videoHeight;
alert(width);
// ...
});
});
</script>