vote up 0 vote down star

I'm working on a webcam video streaming application utilizing Flash 8 (AS2) and Flash Media Server 3. Streaming the video live is fairly trivial, but I want to give the publisher the ability to pause their stream, effectively giving the people watching a snapshot instead of realtime video.

NetStream has a pause() method, but the documentation says it only applies to subscribers. Is there any way to pause the publishing of a stream?

flag

1 Answer

vote up 1 vote down check

Pause:

  ns.attachCamera(null);

Resume:

  ns.attachCamera(Camera.getCamera());
link|flag
I'll give that a try, thanks. – Herms Nov 14 '08 at 14:34
Yep, that worked perfectly. – Herms Nov 14 '08 at 15:00

Your Answer

Get an OpenID
or

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