dpgrillo
12/21/2017 - 10:36 PM

Video Dimensions

Code to console.log video dimensions

<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