SlideShare a Scribd company logo
1 of 21
5   Defining Structure, Metadata and Layout Building the Outline
5.1 About a SMIL File ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
5.2 Design Guidelines ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
5.3 SMIL Authoring Rules & Guidelines ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
5.4 Structure of a SMIL file  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<smil  xmlns =&quot;http://www.w3.org/2001/SMIL20/Language&quot;> <head>   <!-- Metadata definitions go here --> <meta … /> <layout> <!– Layout of presentation is defined here --> </layout> </head> <body> <!– Timing and content of presentation defined here --> </body> </smil>
5.5 QuickTime SMIL Extensions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<smil xmlns:qt= http:// www.apple.com/quicktime/resources/smilextensions ”  qt:autoplay=“true” qt:next=“part6.smil”> ... </smil>
5.6 RealNetwork SMIL Extensions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<smil xmlns=&quot;http://www.w3.org/2001/SMIL20/Language&quot; xmlns:rn=“ http://features.real.com/2001/SMIL20/Extensions ” xmlns:cv=“ http:// features.real.com/systemComponent ”> ... </smil>
5.7 Metainformation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<head> <meta name=&quot;author&quot; content=&quot;John A. Smith&quot; /> <meta name=&quot;title&quot; content=&quot;South West Coastal Path&quot;/> <meta name=&quot;copyright&quot; content=&quot;(c) 2000 John A. Smith&quot; /> <meta name=&quot;abstract&quot; content=&quot;A presentation using images video and  audio to illustrate the beauty of the South West Coastal Path&quot; /> </head>
5.8 Layout ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<layout> <root-layout id=&quot;main&quot; backgroundColor=&quot;# nnnnn &quot; width=&quot;640&quot; height=&quot;480&quot; /> </layout>
5.8.1 Layout (continued) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<layout> <root-layout id=&quot;main&quot; backgroundColor=&quot;#nnnnn&quot; width=&quot;640&quot; height=&quot;480&quot; /> <topLayout id=“vidpanel” width=“320” height=“240” backgroundColor=“white”> <region id=“subtitles” … /> </topLayout> … </layout>
5.8.2 Switching Layouts ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<switch> <!-- Layout for English-UK clients --> <layout  systemLanguage =“en”> … </layout> <!-- Layout for French-France clients --> <layout systemLanguage=“fr”> … </layout> </switch>
5.9 Regions and Positioning ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<layout> <root-layout id=&quot;main&quot; backgroundColor=&quot;#FF0000&quot; width=&quot;640&quot; height=&quot;480&quot; /> <region id=&quot;video&quot; width=&quot;320&quot; height=&quot;240&quot; top=&quot;120&quot; left=&quot;50&quot; /> <region id=&quot;title&quot; width=&quot;150&quot; height=&quot;40&quot; top=&quot;300“ left=&quot;50“backgroundColor=&quot;teal&quot; /> <region id=&quot;audio&quot; soundLevel=&quot;50%&quot; /> </layout>
5.9.1 Registration Points ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<layout> <!-- Define registration points --> <regPoint id=&quot;centre&quot; left=&quot;50%&quot; top=&quot;50%&quot; regAlign=&quot;center&quot; /> </layout> … <textstream id=&quot;intro1&quot;  systemLanguage=&quot;en&quot; src=&quot;text/intro.rt&quot; region=&quot;screen&quot; regPoint=&quot;center&quot; regAlign=“center” begin=&quot;panel4.begin+3s&quot; />
5.10 Layering and Fitting ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<layout> <root-layout id=&quot;main&quot; backgroundColor=&quot;#nnnnn&quot; width=&quot;640&quot; height=&quot;480&quot; /> <region id=&quot;video&quot; width=&quot;320&quot; height=&quot;240&quot; top=&quot;120&quot; left=&quot;50&quot;  z-index=&quot;1“ fit=&quot;&quot;/> <region id=&quot;title&quot; width=&quot;150&quot; height=&quot;40&quot; top=&quot;300&quot; left=&quot;50“  backgroundColor=&quot;teal&quot; z-index=&quot;2&quot;/> <region id=&quot;audio&quot; soundLevel=&quot;50%&quot; /> </layout>
5.11 z-index and regions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<layout> <root-layout width=&quot;280&quot; height=&quot;220&quot;/> <region id=&quot;image&quot; top=&quot;10&quot; left=&quot;10&quot; width=&quot;260&quot; height=&quot;200&quot; z-index=&quot;0&quot;/> <region id=&quot;video&quot; top=&quot;20&quot; left=&quot;20&quot; width=&quot;240&quot; height=&quot;180&quot; z-index=&quot;1&quot;/> </layout>
5.12  fit  attribute values ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
5.13 Embedded SMIL: Structure ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<html  xmlns:t =&quot;urn:schemas-microsoft-com:time“  > <head> <style> .time {behavior: url(#default#time2);} </style> <?import namespace=t urn=&quot;urn:schemas-microsoft-com:time“ implementation=&quot;#default#time2&quot; /> </head> <body> <!--Content goes here --> </body> </html>
5.14 Metainformation ,[object Object],[object Object],[object Object],[object Object],[object Object],<head> <meta name=&quot;author&quot; content=&quot;John Smith&quot;> <meta name=&quot;description&quot; content=&quot;A SMIL presentation of the SWCP&quot;> <meta name=&quot;keywords&quot; content=&quot;SMIL, smil, walking, coastal, path&quot;> </head>
5.15 Layout and Positioning ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<body> . . . <div class=&quot;time&quot; id=&quot;intro&quot; style=&quot;position:absolute; left:50px; top:50px&quot;> <p>South West Coastal Path: Summer 2000</p> </div> . . . </body>
5.15.1 Using Cascading Style Sheet ,[object Object],.txtPanel  /* Define style for text panel */ {  /* This can be called from class attribute */  position:absolute;  top:90px; /* Use pixel values */  left:420px;  width:200px;  height:260px;  background-color:#silver;  /* Background is white */ z-index:2 /* Set z-index for this style */ } #rootContainer  /* Define style for root window */ { /* Applied to element with corresponding id attribute value */ position:absolute;  top:0px;  left:0px;  width:640px;  height:480px;  background-color:#99ccff;  z-index:0 /* Set z-index for this style */ }
5.16 Layering and Fitting ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<body> <t:img class=&quot;time&quot; id=&quot;swcpimg1&quot; begin=&quot;2&quot; dur=&quot;7&quot;  z-index=&quot;2&quot;  src=&quot;images/img2045.jpeg“ style=&quot;position:absolute; top:120px; left:140px&quot;/> </body>

More Related Content

Similar to SMIL Structure and Layout

Introduction to Web Design
Introduction to Web DesignIntroduction to Web Design
Introduction to Web Designwebhostingguy
 
Flex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 FinalFlex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 Finalematrix
 
Web design
Web designWeb design
Web designmjk194
 
Silver Light By Nyros Developer
Silver Light By Nyros DeveloperSilver Light By Nyros Developer
Silver Light By Nyros DeveloperNyros Technologies
 
How the web works june 2010
How the web works june 2010How the web works june 2010
How the web works june 2010Mark Carter
 
Cleveland Silverlight Firestarter - XAML Basics
Cleveland Silverlight Firestarter - XAML BasicsCleveland Silverlight Firestarter - XAML Basics
Cleveland Silverlight Firestarter - XAML BasicsSarah Dutkiewicz
 
Expanding a tree node
Expanding a tree nodeExpanding a tree node
Expanding a tree nodeHemakumar.S
 
KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7phuphax
 
Creating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsCreating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsRicardo Varela
 
Xhtml Part1
Xhtml Part1Xhtml Part1
Xhtml Part1nleesite
 
XHTML and CSS
XHTML and CSS XHTML and CSS
XHTML and CSS peak3
 
Html Intro2
Html Intro2Html Intro2
Html Intro2mlackner
 

Similar to SMIL Structure and Layout (20)

Introduction to Web Design
Introduction to Web DesignIntroduction to Web Design
Introduction to Web Design
 
Keep SMILing
Keep SMILingKeep SMILing
Keep SMILing
 
Flex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 FinalFlex For Flash Developers Ff 2006 Final
Flex For Flash Developers Ff 2006 Final
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Web design
Web designWeb design
Web design
 
Silver Light By Nyros Developer
Silver Light By Nyros DeveloperSilver Light By Nyros Developer
Silver Light By Nyros Developer
 
Html5
Html5Html5
Html5
 
How the web works june 2010
How the web works june 2010How the web works june 2010
How the web works june 2010
 
Html5 Overview
Html5 OverviewHtml5 Overview
Html5 Overview
 
HTML
HTMLHTML
HTML
 
Cleveland Silverlight Firestarter - XAML Basics
Cleveland Silverlight Firestarter - XAML BasicsCleveland Silverlight Firestarter - XAML Basics
Cleveland Silverlight Firestarter - XAML Basics
 
Html
HtmlHtml
Html
 
Expanding a tree node
Expanding a tree nodeExpanding a tree node
Expanding a tree node
 
KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7
 
Creating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsCreating Yahoo Mobile Widgets
Creating Yahoo Mobile Widgets
 
Xhtml Part1
Xhtml Part1Xhtml Part1
Xhtml Part1
 
HTML5 Fundamentals
HTML5 FundamentalsHTML5 Fundamentals
HTML5 Fundamentals
 
XHTML and CSS
XHTML and CSS XHTML and CSS
XHTML and CSS
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
 

Recently uploaded

Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 

Recently uploaded (20)

Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 

SMIL Structure and Layout

  • 1. 5 Defining Structure, Metadata and Layout Building the Outline
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.