up vote 1 down vote favorite
3
share [g+] share [fb]

One of the features of the Flash app I'm working on is to be able to stream a webcam to others. We're just using the built-in webcam support in Flash and sending it through FMS.

We've had some people ask for higher quality video, but we're already using the highest quality setting we can in Flash (setting quality to 100%).

My understanding is that in the newer flash players they added support for MPEG-4 encoding for the videos. I created a simple test Flex app to try and compare the video quality of the MP4 vs FLV encodings. However, I can't seem to get MP4 to work at all.

According to the Flex documentation the only thing I need to do to use MP4 instead of FLV is prepend "mp4:" to the name of the stream when calling publish:

Specify the stream name as a string with the prefix mp4: with or without the filename extension. The prefix indicates to the server that the file contains H.264-encoded video and AAC-encoded audio within the MPEG-4 Part 14 container format.

When I try this nothing happens. I don't get any events raised on the client side, no exceptions thrown, and my logging on the server side doesn't show any streams starting.

Here's the relevant code:

// These are all defined and created within the class.
private var nc:NetConnection;
private var sharing:Boolean;
private var pubStream:NetStream;
private var format:String;
private var streamName:String;
private var camera:Camera;

// called when the user clicks the start button
private function startSharing():void {
  if (!nc.connected) {
    return;
  }

  if (sharing) { return; }

  if(pubStream == null) {
    pubStream = new NetStream(nc);
    pubStream.attachCamera(camera);
  }
  startPublish();

  sharing = true;
}

private function startPublish():void {
  var name:String;

  if (this.format == "mp4") {
    name = "mp4:" + streamName;
  } else {
    name = streamName;
  }

  //pubStream.publish(name, "live");
  pubStream.publish(name, "record");
}
link|improve this question

I also have a similar problem, But I dont want to publish to a server.. Instead I would like to Stream video using Sockets... How can I do that ? see stackoverflow.com/questions/8445297/… – aProgrammer Dec 9 '11 at 12:10
feedback

protected by Community Nov 5 '11 at 15:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

3 Answers

up vote 1 down vote accepted

Would be helpful to know the version of FMS you are running? It seems like you need at least FMS 3.0.2.

link|improve this answer
It seems I only have 3.0.1 installed. I'll try upgrading and see if that helps. – Herms Feb 25 '09 at 13:59
Upgrading to FMS 3.5 seems to have fixed it. Thanks! – Herms Feb 25 '09 at 15:52
Great it helped ; ) have fun ! – Theo.T Feb 26 '09 at 0:32
feedback

Are you sure this applies to live streams and not only for recording? this 1 2 links suggest that while the player can decode sorenson, vp6 and h264, it can only encode in sorenson.

I'm in a similar situation, so I would like to have this clarified.

edit: what actually makes me doubt is that the documentation says flv and mp4, which arent codecs but containers, live streaming doesnt use containers, the encoded frames travel directly inside rtmp packets

link|improve this answer
Yes, I would love to know if the FP has an h.264 encoder in it; which as far as I am aware, it does not. – Mondain Sep 10 '10 at 5:04
feedback

Flash Player doesn't encode using H.264, but Flash Media Server can record any codec in the F4V container. Flash Media Live Encoder can encode using H.264.

So basically you can't send h264 from web flash player (yet?)...

link|improve this answer
feedback

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