vote up 0 vote down star

I'm wondering how to use a VideoDisplay object (defined in MXML) to display video streamed from FMS via a NetStream.

The Flex3 docs suggest this is possible:

The Video Display ... supports progressive download over HTTP, streaming from the Flash Media Server, and streaming from a Camera object.

However, later in the docs all I can see is an attachCamera() method. There doesn't appear to be an attachStream() method like the old Video object has.

It looks like you can play a fixed file served over HTML by using the source property, but I don't see anything about how to attach a NetStream.

The old Video object still seems to exist, though it's not based on UIComponent and doesn't appear to be usable in MXML.

I found this blog post that shows how to do it with a regular Video object, but I'd much prefer to use VideoDisplay (or something else that can be put directly in the MXML).

flag

4 Answers

vote up 1 vote down check

Unfortunately you can attachNetStream() only on Video object. So you are doomed to use em if you want to get data from FMS.

By the way attachCamera() method publishes local camera video to the server so be careful ;)

link|flag
vote up 0 vote down

@Artem:

Yea, I got it working with Video. It just annoys me that I can't have it defined cleanly in the MXML. Oh well.

link|flag
Actually you can do it in MXML. Simply wrap it in UIComponent-based class and use it in your markup. – Artem Tikhomirov Sep 9 '08 at 9:38
That's what I did. There's a UIComponent in the MXML, and I attach the video there. It's still not as clean as just defining the Video object directly in the MXML, and that's my complaint. – Herms Sep 12 '08 at 13:23
I've tried this and the video displays really small (10x10 maybe). Both the video and the uicomponent are created with a size of 640x480, any ideas why this is happening? – Pablote Apr 28 at 20:43
well I fixed it, I had to set the size of both the video and the uicomponent again after playing the netstream, wierd – Pablote Apr 28 at 21:13
vote up 1 vote down

it works.

mx:VideoDisplay live="true" autoPlay="true" source="rtmp://server.com/appname/streamname" />

that will give you live video through a videodisplay... problem is it won't use an existing netconnection object, it creates it's own... which is what I'm trying to find a work around for.

link|flag
also you can edit the source of the fly my_vid.source = "rtmp://server.com/appname/"+stream_name; like so... still doesn't fix the new NC for each display issue though. – Tim Sullivan Nov 14 '08 at 18:02
vote up 0 vote down

I've seen sample code where something like this works:

// Connect to the video stream in question.
var stream:NetStream = new NetStream( chatNC );
stream.addEventListener( NetStatusEvent.NET_STATUS, handleStreamStatus );
stream.addEventListener( IOErrorEvent.IO_ERROR, handleIOError );

// Build the video player on the UI.
var video:Video = new Video(246, 189);
var uiComp:UIComponent = new UIComponent();
uiComp.addChild( video );
uiComp.width = 246;
uiComp.height = 189;
stream.play( streamName );
video.attachNetStream( stream );
video.smoothing = true;
video.width = 246;
video.height = 189;
view.videoPlayerPanel.removeAllChildren();
view.videoPlayerPanel.addChild( uiComp );

But I can't actually get it to work myself. I'll post here later if I can figure it out.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.