I'm trying to get the dimensions of a video of which I'm overlaying onto a page with javascript, however it is returning the dimensions of the poster image instead of the actual video as it seems it's being calculated before the video is loaded. Any ideas how I should approach this problem to rectify it?

Many thanks in advance.

link|improve this question

73% accept rate
Did you give up? There are good clues as answers here! – Juan Mendes Nov 18 '10 at 21:42
I keep wanting not to waste time answering questions to people with low rep, half of them abandon them like this one. – Juan Mendes Jan 5 '11 at 1:27
feedback

4 Answers

up vote 4 down vote accepted
<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

Source (HTML5 spec): http://www.w3.org/TR/html5/video.html#video

link|improve this answer
Is this possible with the ogg format as I don't think the video will include such metadata? – Elliot Nov 9 '10 at 0:33
@Elliot I tested in Chrome on this demo: people.opera.com/howcome/2007/video/controls.html and it works... – Šime Vidas Nov 9 '10 at 0:40
feedback

Listen for the 'loadedmetadata' event which is dispatced when the user agent has just determined the duration and dimensions of the media resource

4.8.9.12 Event summary in http://www.w3.org/TR/html5/video.html#video

link|improve this answer
feedback

It should be noted that this solution doesn't actually work in modern browsers since the videoWidth and videoHeight properties aren't set until after the "loadedmetadata" event has fired.

If you happen to query for those properties far enough after the VIDEO element is rendered it may sometimes work, but in most cases this will return values of 0 for both properties.

To guarantee that you're getting the correct property values you need to do something along the lines of:

var v = document.getElementById("myVideo");
v.addEventListener( "loadedmetadata", function (e) {
    var width = this.videoWidth,
        height = this.videoHeight;
}, false );

NOTE: I didn't bother accounting for pre-9 versions of Internet Explorer which use attachEvent instead of addEventListener since pre-9 versions of that browser don't support HTML5 video, anyway.

link|improve this answer
This is the best way – Jami Mar 30 at 14:30
feedback

Not really clear what you do. Do you set width and height attributes of the video element? Also, is it really necessary to make poster's dimensions different from video?

link|improve this answer
I don't set the width and height attributes as it can change on a per video basis. Yes, it is necessary for the poster's dimensions to be different from the video, as several posters are displayed side by side, and when the poster image is clicked, the video is overlayed over the webpage to start playing it to the user. However I need to establish the dimensions of the video so that I can place objects such as the close button in the top right hand corner of the video. The video is encoded in the ogg format. – Elliot Nov 9 '10 at 0:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.