<!-- 
           Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Thierry MICHEL (tmichel@w3.org)
          Version: Oct 30th, 2000, v1
           Module: SMIL 20 Metainformation Module
          Feature: metadata element including RDF statement
        File Name: metadata-rdf.smil
 Media Components: 1 JPEG
Expected Behavior: Provides metainformation defined by Dublin Core 
                   schema such as Title, Description, Publisher, date Rights, 
                   Format, and Creator.
--> 
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
  <head>
    <metadata id="metadata-rdf">
      <rdf:RDF
        xmlns:rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
        xmlns:dc = "http://purl.org/metadata/dublin_core#"> 
      <rdf:Description about="http://www.example.com/metadata-rdf.smil"
        dc:Title="An Introduction to the Resource Description Framework"
        dc:Description="The Resource Description Framework (RDF) enables 
           the encoding, exchange and reuse of structured metadata"
        dc:Publisher="W3C"
        dc:Date="2000-10-30"
        dc:Rights="Copyright 2000 John Smith"
        dc:Format="text/smil" > 
        <dc:Creator>
      <rdf:Seq ID="CreatorsAlphabeticalBySurname">
      <rdf:li>Mary Andrew</rdf:li>
      <rdf:li>Jacky Crystal</rdf:li>
      </rdf:Seq>
      </dc:Creator>
      </rdf:Description>
      </rdf:RDF>
    </metadata> 
  </head>
  <body>
    <seq>
      <img src="../images/smile.jpg" dur ="10s" id="smile" />
    </seq>
  </body>
</smil>