wildside96 / bst-player

Automatically exported from code.google.com/p/bst-player
0 stars 0 forks source link

Player surrounded by padding in IE #28

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a new abstractmediaplayer with a set size
2. View in Interner Explorer

QuickTimePlayer _mediaPlayer = new QuickTimePlayer("somemovie.mp4", false, 
"555px", "720px");
_mediaPlayer.setControllerVisible(true);

What is the expected output? What do you see instead?
The expected output is a video with the specified size, instead there is a 
control larger than specified with the video centered in a black box. Note that 
the controll appears normal in other browsers.

What version of the product are you using? On what operating system?
- bst player 1.1
- GWT 2.0.4
- Internet Explorer 8

Please provide any additional information below.
Please see attached screenshot

Original issue reported on code.google.com by austinra...@gmail.com on 1 Aug 2010 at 11:35

Attachments:

GoogleCodeExporter commented 9 years ago
As of v1.1, the 'scaling' property of the QT plugin is left as default (1).  
That means the QT control scales to the dimensions of the movie regardless of 
the size specified.  An option might be to setResizeToVideoSize(true).

Maybe it will be nice to have the 'scale' property exposed as well.

Original comment by sbrah...@gmail.com on 3 Aug 2010 at 9:30

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r151.

Original comment by sbrah...@gmail.com on 3 Aug 2010 at 11:01

GoogleCodeExporter commented 9 years ago
The scalling property is now available on the QuickTimePlayer widget:

_mediaPlayer.setConfigParameter(ConfigParameter.QTScale, 
QuickTimePlayer.Scale.ToFit);

Other options like 'aspect' and numeric values are also possible.

Original comment by sbrah...@gmail.com on 3 Aug 2010 at 12:32