[Table of Contents] [docx version]

Error! No text of specified style in document.

st (Audio Start Time)

This element specifies the start point for a CD Audio sound element. Encompassed within this element are the time and track at which the sound should begin its playback. This element will be used in conjunction with an Audio End Time element to specify the time span for an entire audioCD sound element.

[Example: Consider the following DrawingML.

<a:audioCd>
<a:st track="1" time="2"/>
<a:end track="3" time="65"/>
</a:audioCd>

In the above example, the audioCD sound element shown will specify for a portion of audio spanning from 2 seconds into the first track to 1 minute, 5 seconds into the third track. end example]

Parent Elements

audioCd5.1.3.1)

 

Attributes

Description

time (Time)

Specifies the time in seconds that the CD Audio should be started at. If this attribute is omitted, then a value of 0 is assumed.

 

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

track (Track)

Specifies which track of the CD this Audio will begin playing on. This attribute is required and cannot be omitted.

 

The possible values for this attribute are defined by the XML Schema unsignedByte datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_AudioCDTime">

   <attribute name="track" type="xsd:unsignedByte" use="required"/>

   <attribute name="time" type="xsd:unsignedInt" use="optional" default="0"/>

</complexType>