选择本地视频时获取视频分辨率和时长

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

猜你喜欢

转载自www.cnblogs.com/zhangrenjie/p/11847122.html
今日推荐