html video播放本地视频文件(无需获取文件绝对路径)

  • Post author:
  • Post category:其他


<video style="display:none;" controls="controls" id="aa" oncanplaythrough="myFunction(this)"></video>
<input type="file" onchange="changeFile(this)" >
<script>
    function myFunction(ele) {
     //视频时长  单位秒
        alert(Math.floor(ele.duration));
    }        
    function changeFile(ele){
        var video = ele.files[0];
        var url = URL.createObjectURL(video);
        console.log(url);
        document.getElementById("aa").src=url;
    }
</script>



版权声明:本文为qq_21479345原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。