The actionscript behind streaming videos on the web.
Streaming videos.
Date Created:Friday December 29th, 2006 03:41 AM
Date Modified:Friday August 01st, 2008 12:21 PM
var connection_nc:NetConnection = new NetConnection();
connection_nc.connect(null);
var stream_ns:NetStream = new NetStream(connection_nc);
myvideo.attachVideo(stream_ns);
stream_ns.play(video_url);
//attempting to loop, not quite working
stream_ns.onStatus = function(info) {
if (info.code == "NetStream.Play.Stop") {
stream_ns.seek(0);
}
};
Downloads:
Download: video320.fla 44 KB
Please login or Click Here to register for downloads
NetStream FLV by Dan Lynch
is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License
Based on a work at www.3daet.com
Permissions beyond the scope of this license may be available at http://www.3daet.com
