"Untitled" By nanyobis (https://pastebin.com/u/nanyobis) URL: https://pastebin.com/DeTT8DpM Created on: Friday 9th of August 2013 09:47:53 PM CDT Retrieved on: Saturday 31 of October 2020 06:19:23 AM UTC package { import flash.accessibility.Accessibility; import flash.display.Sprite; import flash.events.*; import flash.net.NetConnection; import flash.net.NetStream; import flash.media.Video; public class NsExample extends Sprite { private var nc:NetConnection; private var ns:NetStream; private var ns2:NetStream; private var video:Video; public function NsExample() { video = new Video(); addChild(video); nc = new NetConnection(); nc.client=this; nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus); nc.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onError); nc.connect('rtmp://live.7cast.net/live'); } private function startStreaming() { ns = new NetStream(nc); ns.client = this; ns.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus); ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onError); ns.play("ovaxh37k9yep18z"); video.attachNetStream(ns); ns2 = new NetStream(nc); ns2.client = this; ns2.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus); ns2.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onError); ns2.play("28ersrh937obs02"); video.attachNetStream(ns2); } private function onNetStatus(event:NetStatusEvent):void { switch(event.info.code) { case 'NetConnection.Connect.Success': trace('NetConnection.Connect.Success'); startStreaming(); break; default: trace(event.info.code); } } private function onError(event:AsyncErrorEvent):void { trace(event); } public function onMetaData(data) { var ar = data.height / data.width; video.width = stage.stageWidth; video.height = video.width * ar; video.x = (stage.stageWidth - video.width)/2; video.y = (stage.stageHeight - video.height)/2; } public function onBWDone () { trace("on Bandwidth Done "); } } } output NetConnection.Connect.Success NetStream.Play.StreamNotFound NetStream.Play.Reset NetStream.Play.Start note doesn't start