Interface AudioSegment

All Superinterfaces:
Segment, XmlElement
All Known Implementing Classes:
SegmentImpl

public interface AudioSegment extends Segment
An audio segment represents a temporal decomposition of the audio stream that may have properties like text annotations attached to it.
 <complexType name="AudioSegmentType">
   <complexContent>
       <extension base="mpeg7:SegmentType">
           <sequence>
               <choice minOccurs="0">
                   <element name="MediaTime" type="mpeg7:MediaTimeType"/>
                   <element name="TemporalMask" type="mpeg7:TemporalMaskType"/>
               </choice>
               <choice minOccurs="0" maxOccurs="unbounded">
                   <element name="AudioDescriptor" type="mpeg7:AudioDType"/>
                   <element name="AudioDescriptionScheme" type="mpeg7:AudioDSType"/>
               </choice>
               <choice minOccurs="0" maxOccurs="unbounded">
                   <element name="TemporalDecomposition"
                       type="mpeg7:AudioSegmentTemporalDecompositionType"/>
                   <element name="MediaSourceDecomposition"
                       type="mpeg7:AudioSegmentMediaSourceDecompositionType"/>
               </choice>
           </sequence>
       </extension>
   </complexContent>
 </complexType>