set stream [new ArchiveStream/Play]
Note: This is an abstract base class. Do not create objects directly of this class
1. set lts [$stream lts]
or 2. $stream lts $lts
Set or query the name of the LTS object associated with this stream
Returns: In syntax (1), it returns an object of class LTS if the LTS has previously been set, otherwise it returns an empty string. In syntax (2), the return value is undefined. clip:
$stream clip start_time end_timeSet the start and end points of the clip to be played from this stream.
start_time and end_time are floating point numbers, units of which are seconds. These times are in the same time-frame as that returned by the header method of the ArchiveFile object for the start and end times of the entire stream.
Returns: Nothing
Status: Functionality currently not implemented
bytes_sent:
$stream notify_observers bytes_sent <number-of-bytes>Invoked when data is sent out onto the network, so that observers (typically, user inteface agents) can update their UI.
<number-of-bytes> represents the total number of bytes received so far.