8

是否可以检测 HTML5 视频元素的纵横比?

我知道视频只会缩小以适应<video>元素的尺寸,但我想检测源视频的纵横比。

这样你就可以删除任何黑条。

抱歉,我在其他任何地方都没有看到这个答案。

4

1 回答 1

23

从另一个 StackOverflow 答案粘贴: https ://stackoverflow.com/a/4129189/1353189

<video id="foo" src="foo.mp4"></video>

var vid = document.getElementById("foo");
vid.videoHeight; // returns the intrinsic height of the video
vid.videoWidth; // returns the intrinsic width of the video

来源(HTML5 规范):http ://www.w3.org/TR/html5/video.html#video

然后,您可以通过将宽度除以高度来计算纵横比。

于 2013-02-15T22:47:09.380 回答