Get the status of a live stream for a VideoDisplay control - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:39:28Zhttp://stackoverflow.com/feeds/question/527001http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/527001/get-the-status-of-a-live-stream-for-a-videodisplay-control0Get the status of a live stream for a VideoDisplay controlvanja.2009-02-09T02:41:11Z2009-02-16T16:00:32Z
<p>I'm looking for a way to find the status of a live stream through a VideoDisplay (or any other method really). I am interested to know if the stream is currently being published to or if the publisher has stopped. This is for a Flex/Flash ActionScript 3 project.</p>
<p>Is there a way to do this or is this ANOTHER oversight by adobe?</p>
<p>flex flash adobe adobe-flex actionscript </p>
http://stackoverflow.com/questions/527001/get-the-status-of-a-live-stream-for-a-videodisplay-control/527255#5272550Answer by vanja. for Get the status of a live stream for a VideoDisplay controlvanja.2009-02-09T06:24:28Z2009-02-09T06:24:28Z<p>I've only found one solution, and that's using the NetStream object in combination with a video control.</p>
<p>The video control must be manually added to an </p>
<pre><code>nsListen = new NetStream(nc);
nsListen.addEventListener(NetStatusEvent.NET_STATUS, nsListenHandler);
nsListen.play(streamname);
var v:Video = new Video();
v.attachStream(nsListen);
uicontrol.add(v);
</code></pre>
<p>Finally, the event status is returned in nsListenHandler:</p>
<pre><code>private function nsListenHandler(e:Event):void
{
if(e is NetStatusEvent)
{
var nse:NetStatusEvent = NetStatusEvent(e);
if(nse.info.code == "NetStream.Play.Failed")
{
// Big error.
}
if(nse.info.code == "NetStream.Play.PublishNotify")
{
// Stream has just been published
}
if(nse.info.code == "NetStream.Play.UnpublishNotify")
{
// Stream has just been unpublished
}
trace(NetStatusEvent(e).info.code);
trace(NetStatusEvent(e).info.description);
}
}
</code></pre>
<p>Only this code wont do is tell you if a stream is already successfully being published to.</p>
http://stackoverflow.com/questions/527001/get-the-status-of-a-live-stream-for-a-videodisplay-control/553785#5537850Answer by Dante for Get the status of a live stream for a VideoDisplay controlDante2009-02-16T16:00:32Z2009-02-16T16:00:32Z<p>You can dig into NetStatusEvent events.</p>
<p>Check this <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/events/NetStatusEvent.html" rel="nofollow">live docs</a></p>