It would appear that the width and height of the Feathers VideoPlayer component can be set.
But when I load a video source the size always reverts to the size of the native video.
Any ideas how to fix this?
In this example the native video is 640x390 and the player is displayed at that size.
_videoPlayer = new VideoPlayer();
_videoPlayer.setSize( 640*2, 390*2 );
_videoPlayer.validate();
addChild( _videoPlayer);
_videoPlayer.videoSource = "http://www.test.com/test.mp4";
_imageLoader = new ImageLoader();
_videoPlayer.addChild( _imageLoader );
_videoPlayer.addEventListener( Event.READY, videoPlayer_readyHandler );
_videoPlayer.addEventListener( FeathersEventType.CLEAR, videoPlayer_clearHandler );
Thanks,
Mark