I have a simple html5 video tag:
$(function () { $("#video").bind("loadedmetadata", function () { var width = this.videoWidth; var height = this.videoHeight; // ... }); });