1. ホーム
  2. javascript

[解決済み] HTML5 動画の大きさ

2022-08-07 17:22:58

質問

私はJavaScriptでページにオーバーレイしているビデオの寸法を取得しようとしていますが、それはビデオがロードされる前に計算されているようなので、実際のビデオの代わりにポスター画像の寸法を返しています。

どのように解決するのですか?

<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

Spec: https://html.spec.whatwg.org/multipage/embedded-content.html#the-video-element