In video.theme.inc I believe the incorrect width/height is being passed to the videojs theme in the function theme_video_html5

      $attributes['width'] = $video->width;
      $attributes['height'] = $video->height;

Should be:

      $attributes['width'] = $video->player_width;
      $attributes['height'] = $video->player_height;

That correct?

CommentFileSizeAuthor
#3 1190246-D6_01.patch598 bytesmathieu
#1 1190246_01.patch676 byteshypertext200

Comments

hypertext200’s picture

Status: Active » Fixed
StatusFileSize
new676 bytes

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

mathieu’s picture

Version: 7.x-1.0-alpha2 » 6.x-4.x-dev
Status: Closed (fixed) » Reviewed & tested by the community
StatusFileSize
new598 bytes

Here's the patch backported to Drupal 6.

Jorrit’s picture

Status: Reviewed & tested by the community » Fixed

Committed to 6.x-4.x.

Jorrit’s picture

This fix has been released in Video 6.x-4.3-rc1. Please take a look and test the release candidate.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.