I'm using the new Microsoft plugin to stream smooth streaming content to an OSMF player. I followed that example
But i need to get the bitmapData of the video to split them into different "screens".
I tried with:
var viewable:NetStreamDisplayObjectTrait = element.getTrait( MediaTraitType.DISPLAY_OBJECT ) as NetStreamDisplayObjectTrait
if (viewable)
{
_obj = viewable.displayObject as DisplayObject
if (_obj)
{
_bmpData = new BitmapData( 200, 200, false, 0x000000 )
_bmpData.draw( _obj )
_bmp = new Bitmap( _bmpData )
addChild( _bmp )
}
}
And then, into a timer:
if ( _obj )
{
_bmpData.draw( _obj )
}
But my bitmap is always black.
Thanks.