Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.