Using jQuery to determine video file size

后端 未结 4 499
遇见更好的自我
遇见更好的自我 2021-01-18 09:37

I am using videojs to play html5 videos, of varying dimensions. Is it possible to detect the height/width of a video file using jQuery (or another scripting language for th

4条回答
  •  迷失自我
    2021-01-18 09:54

    You could get the height of the video maybe using the height attribute (if it's set on the element...

    $('#idOfVideoElement').attr('height');
    

提交回复
热议问题