Hi,
I have a mismatch on the aspect ratio of my source and visual display region. (And please just assume that I can not conform the visual display region to match the source's aspect ratio.)
Flash's default gives me ""scale to fit" which maintains my source's aspect ratio but results in "letterboxing" black space.
Does OSMF (or Flash) have a configurable property that will maintain aspect ratio, scale to fill and crop to remove outside boundary? Or do I just have to code my own solution (e.g. using masking)?
I have a diagram here:
http://flexflashvideo.com/codesamples/2010/zoom_crop.png
Thanks,
g
Have you tried with ScaleMode in OSMF?
var layout:LayoutMetadata = new LayoutMetadata();
video.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout);
layout.scaleMode = ScaleMode.ZOOM;
Ryan