[Table of Contents] [docx version]

Error! No text of specified style in document.

audioCd (Audio from CD)

This element specifies the existence of Audio from a CD. This element is specified within the non-visual properties of an object. The audio must be attached to an object as this is how it is represented within the document. The actual playing of the sound however is done within the timing node list that is specified under the timing element.

[Example: Consider the following picture object that has an audio from a CD attached to it.

<p:pic>
<p:nvPicPr>
<p:cNvPr id="7" name="Rectangle 6">
<a:hlinkClick r:id="" action="ppaction://media"/>
</p:cNvPr>

<p:cNvPicPr>
<a:picLocks noRot="1"/>
</p:cNvPicPr>

<p:nvPr>
<a:audioCd>
<a:st track="1"/>
<a:end track="3" time="65"/>
</a:audioCd>
</p:nvPr>
</p:nvPicPr>

</p:pic>

In the above example, we see that there is a single audioCD element attached to this picture. This picture is placed within the document just as a normal picture or shape would be. The id of this picture, namely 7 in this case, will be used to refer to this audioCD element from within the timing node list. For this example we see that the audio for this CD will start playing at the 0 second mark on the first track and will end on the 1 minute 5 second mark of the third track. end example]

Parent Elements

nvPr4.4.1.30)

 

Child Elements

Subclause

end (Audio End Time)

§5.1.3.3

extLst (Extension List)

§5.1.2.1.15

st (Audio Start Time)

§5.1.3.5

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

<complexType name="CT_AudioCD">

   <sequence>

   <element name="st" type="CT_AudioCDTime" minOccurs="1" maxOccurs="1"/>

   <element name="end" type="CT_AudioCDTime" minOccurs="1" maxOccurs="1"/>

   <element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>

   </sequence>

</complexType>