Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/smils/audiomp3.smil
blob: a02202109ecfb2fcee91e4f72572e2ac0462add5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0"?>
<!DOCTYPE smil PUBLIC "-//W3C//DTD SMIL 2.0//EN"
                      "http://www.w3.org/ns/SMIL">
<smil xmlns="http://www.w3.org/ns/SMIL">
  <head>
    <layout>
      <root-layout xml:id="Test" backgroundColor="gray" width="1200" height="900"/>
      <region xml:id="image" top = "150" left = "200" width = "800" height="600" fit="meet" z-index = "1" />
      <region xml:id="audio" />
    </layout>
  </head>
  <body>
    <seq>
      <audio src = "audio.mp3" dur="indefinite" region="audio"/>
    </seq>
  </body>
</smil>