23 November 2010
Intermediate
This Quick Start article illustrates several techniques for handling the onMetaData and onCuePoint callback methods when using the NetConnection and NetStream classes to load Flash videos (FLVs). You'll discover how you can use the asyncError event (AsyncErrorEvent.ASYNC_ERROR) or client property in the NetStream class to handle or ignore the meta data or cue points.
The next sections describe the most popular and useful ways to use the asyncError and client property when working with loading videos.
There are many cases where you may prefer to create your own custom video player to play videos instead of using an existing component. For example, you may be trying to build a certain feature into your custom video player, or perhaps you're trying to make a video player with a very small file size. When building your own code, it is important to understand how the onMetaData and onCuePoint event handlers are used so you can handle them accordingly.
The following example creates a new NetConnection, NetStream, and Video object to dynamically load an FLV file and display it in an SWF file. Since the specified FLV contains metadata and three cue points and there are no handlers defined for the onMetaData and onCuePoint event handlers, the asyncError is dispatched and informs you that the NetStream class was unable to invoke the callback onMetaData and onCuePoint:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var myVideo:Video = new Video();
myVideo.attachNetStream(ns);
addChild(myVideo);
The previous example loads a Flash video file and begins video playback. Once the video's metadata or cue points are encountered an asyncError is dispatched.
If you're running this code in the Flash authoring environment, you'll see that four errors are displayed in the Output panel with error messages similar to the following:
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.NetStream was unable to invoke callback onMetaData. error=ReferenceError: Error #1069: Property onMetaData not found on flash.net.NetStream and there is no default value.
at asyncErrorExample_fla::MainTimeline/asyncErrorExample_fla::frame1()
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.NetStream was unable to invoke callback onCuePoint. error=ReferenceError: Error #1069: Property onCuePoint not found on flash.net.NetStream and there is no default value.
at asyncErrorExample_fla::MainTimeline/asyncErrorExample_fla::frame1()
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.NetStream was unable to invoke callback onCuePoint. error=ReferenceError: Error #1069: Property onCuePoint not found on flash.net.NetStream and there is no default value.
at asyncErrorExample_fla::MainTimeline/asyncErrorExample_fla::frame1()
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.NetStream was unable to invoke callback onCuePoint. error=ReferenceError: Error #1069: Property onCuePoint not found on flash.net.NetStream and there is no default value.
at asyncErrorExample_fla::MainTimeline/asyncErrorExample_fla::frame1()
If you were looking at this SWF online in a web browser, you'd see the following errors instead:
To prevent these errors, you have two primary solutions:
asyncError event.client property.To get the source files for this example, including Flash Professional CS5 versions of the files, download example01.zip at the top of this page.
One of the easiest ways to handle the asyncError event dispatched by the NetStream object is to listen for the event using the method. This allows you to either handle or ignore the event.
The following example loads an FLV and traces the asyncError event's text property whenever the asyncError is dispatched:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var myVideo:Video = new Video();
myVideo.attachNetStream(ns);
addChild(myVideo);
function asyncErrorHandler(event:AsyncErrorEvent):void {
trace(event.text);
}
If you're running this code in the Flash authoring environment, you'll see that the Output panel now displays the text similar to the following:
Error #2095: flash.net.NetStream was unable to invoke callback onMetaData.
Error #2095: flash.net.NetStream was unable to invoke callback onCuePoint.
Error #2095: flash.net.NetStream was unable to invoke callback onCuePoint.
Error #2095: flash.net.NetStream was unable to invoke callback onCuePoint.
If you were looking at this SWF online in a web browser, no errors would be displayed since you are handling the asyncError event.
To get the source files for this example, including Flash Professional CS5 versions of the files, download example02.zip at the top of this page.
The second way to handle the asyncError event is to use the client property of the NetStream class. The client property specifies the object on which callback methods are invoked. The default object is the NetStream object being created. If you set the client property to another object, callback methods will be invoked on that other object.
The following example creates a NetStream object and sets its client property to an empty object, which prevents the asyncError from being dispatched:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.client = new Object();
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var myVideo:Video = new Video();
myVideo.attachNetStream(ns);
addChild(myVideo);
The above code prevents the asyncError from being dispatched, but it also ignores the onMetaData and onCuePoint event callbacks. If you wanted to define handlers for these two callbacks, you could use the following code which predefines a custom client object:
var customClient:Object = new Object();
customClient.onMetaData = metaDataHandler;
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.client = customClient;
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var myVideo:Video = new Video();
myVideo.attachNetStream(ns);
addChild(myVideo);
function metaDataHandler(infoObject:Object):void {
myVideo.width = infoObject.width;
myVideo.height = infoObject.height;
}
The previous example defines a handler method for the onMetaData handler which resizes the Video object on the Stage to match the dimensions of the FLV document, as reported by the metadata.
Tip: You can also use the following shorthand notation for creating an object and specifying a handler:
var customClient:Object = {onMetaData:metaDataHandler};
This examples will display like this:
To get the source files for this example, including Flash Professional CS5 versions of the files, download example03.zip at the top of this page.
Note: All of the following examples will display just like the example shown above. However some of the following examples will show additional trace information in the Flash concole window when they are run within the Flash CS3 authoring tool.
One of the easiest ways to handle the asyncError event dispatched by the NetStream object is to listen for the event using the method. This allows you to either handle or ignore the event.
The following example sets the NetStream object's client property to a custom class, CustomClient, which defines handlers for the callback methods:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.client = new CustomClient();
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var vid:Video = new Video();
vid.attachNetStream(ns);
addChild(vid);
The CustomClient class is as follows:
package {
public class CustomClient {
public function onMetaData(infoObject:Object):void {
trace("metadata");
}
}
}
Note: The CustomClient class defines a handler for the onMetaData callback handler. If a cue point was encountered and the onCuePoint callback handler was called, an asyncError event would be dispatched saying "flash.net.NetStream was unable to invoke callback onCuePoint." To prevent this error, you would either need to define an onCuePoint callback method in your CustomClient class, or define an event handler for the asyncError event.
To get the source files for this example, including Flash Professional CS5 versions of the files, download example04.zip at the top of this page.
The second way to handle the asyncError event is to use the client property of the NetStream class.
The following code creates an instance of the CustomNetStream class, which is defined in a later code listing:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:CustomNetStream = new CustomNetStream(nc);
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var vid:Video = new Video();
vid.attachNetStream(ns);
addChild(vid);
The following code listing defines the CustomNetStream class that extends the NetStream class, and assigns the onMetaData and onCuePoint callback handler methods:
package {
import flash.net.NetConnection;
import flash.net.NetStream;
public class CustomNetStream extends NetStream {
public function CustomNetStream(nc:NetConnection) {
super(nc);
}
public function onMetaData(infoObject:Object):void {
trace("metadata");
}
public function onCuePoint(infoObject:Object):void {
trace("cue point");
}
}
}
If you want to rename the onMetaData and onCuePoint methods in the CustomNetStream class, you could use the following code:
package {
import flash.net.NetConnection;
import flash.net.NetStream;
public class CustomNetStream extends NetStream {
public var onMetaData:Function;
public var onCuePoint:Function;
public function CustomNetStream(nc:NetConnection) {
onMetaData = metaDataHandler;
onCuePoint = cuePointHandler;
super(nc);
}
private function metaDataHandler(infoObject:Object):void {
trace("metadata");
}
private function cuePointHandler(infoObject:Object):void {
trace("cue point");
}
}
To get the source files for this example, including Flash Professional CS5 versions of the files, download example05.zip at the top of this page.
You can extend the NetStream class and make the subclass dynamic so that onCuePoint and onMetaData callback handlers can be added dynamically.
The following code creates an instance of the dynamic DynamicCustomNetStream class, which is defined in a later code listing:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:DynamicCustomNetStream = new DynamicCustomNetStream(nc);
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var vid:Video = new Video();
vid.attachNetStream(ns);
addChild(vid);
The DynamicCustomNetStream class is as follows:
package {
import flash.net.NetConnection;
import flash.net.NetStream;
public dynamic class DynamicCustomNetStream extends NetStream {
public function DynamicCustomNetStream(nc:NetConnection) {
super(nc);
}
}
}
Even with no handlers for the onMetaData and onCuePoint callback handlers, no errors are thrown since the DynamicCustomNetStream class is dynamic. If you want to define methods for the onMetaData and onCuePoint callback handlers, you could use the following code:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:DynamicCustomNetStream = new DynamicCustomNetStream(nc);
ns.onMetaData = metaDataHandler;
ns.onCuePoint = cuePointHandler;
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var vid:Video = new Video();
vid.attachNetStream(ns);
addChild(vid);
function metaDataHandler(infoObject:Object):void {
trace("metadata");
}
function cuePointHandler(infoObject:Object):void {
trace("cue point");
}
To get the source files for this example, including Flash Professional CS5 versions of the files, download example06.zip at the top of this page.
By setting the client property to this, Flash Player looks in the current scope for onMetaData() and onCuePoint() methods.
The following code creates an instance of the NetStream class, and sets its client property to this:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
ns.client = this;
ns.play("http://www.helpexamples.com/flash/video/cuepoints.flv");
var vid:Video = new Video();
vid.attachNetStream(ns);
addChild(vid);
If the onMetaData or onCuePoint callback handlers are called and no methods exist to handle the callback, no errors are generated. To handle these callback handlers, create an onMetaData() and onCuePoint() method in your code, as seen in the following snippet:
function onMetaData(infoObject:Object):void {
trace("metadata");
}
function onCuePoint(infoObject:Object):void {
trace("cue point");
}
To get the source files for this example, including Flash Professional CS5 versions of the files, download example07.zip at the top of this page.
For more information about this topic, see "Using the Adobe Flash CS3 Video Encoder".
For more information about this topic, see the NetStream class in the ActionScript 3.0 Reference for the Adobe Flash Platform.