ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
flash.net 

NetStreamAppendBytesAction  - AS3

Packageflash.net
Classpublic final class NetStreamAppendBytesAction
InheritanceNetStreamAppendBytesAction Inheritance Object

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, AIR 2

The NetStreamAppendBytesAction class is an enumeration of the constants you can pass to the NetStream.appendBytesAction() method.

Two of the constants indicate a timescale discontinuity. Every FLV tag has a timestamp indicating its position in the timescale. Timestamps are used to synchronize video, audio, and script data playback. Timestamps for FLV tags of the same type (video, audio, script data) must not decrease as the FLV progresses.

Related API Elements



Public Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
Public Methods
 MethodDefined By
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined By
  END_SEQUENCE : String = "endSequence"
[static] Indicates that the media stream data is complete.
NetStreamAppendBytesAction
  RESET_BEGIN : String = "resetBegin"
[static] Indicates a timescale discontinuity.
NetStreamAppendBytesAction
  RESET_SEEK : String = "resetSeek"
[static] Indicates a timescale discontinuity.
NetStreamAppendBytesAction
Constant Detail

END_SEQUENCE

Constant
public static const END_SEQUENCE:String = "endSequence"

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, AIR 2

Indicates that the media stream data is complete. For some codecs, such as H.264, the byte parser waits for the buffer to fill to a certain point before beginning playback. Pass END_SEQUENCE to tell the byte parser to begin playback immediately.

RESET_BEGIN

Constant 
public static const RESET_BEGIN:String = "resetBegin"

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, AIR 2

Indicates a timescale discontinuity. Flushes the FIFO (composed of an incomplete FLV tag) and resets the timescale to begin at the timestamp of the next appended message. On the next call to appendBytes(), the byte parser expects a file header and starts at the beginning of a file.

RESET_SEEK

Constant 
public static const RESET_SEEK:String = "resetSeek"

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, AIR 2

Indicates a timescale discontinuity. Flushes the FIFO (composed of an incomplete FLV tag) and resets the timescale to begin at the timestamp of the next appended message. On the next call to appendBytes(), the byte parser expects the beginning of an FLV tag, as though you’ve just done a seek to a location in the same FLV, on a tag boundary.