SlideShare a Scribd company logo
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Keep SMILing
Institutional Web Management Workshop
10th
June 2006
Adrian Stevenson
Internet Services, University of Manchester
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Keep SMILing
• What is SMIL?
• How do you create a SMIL presentation?
• Accessibility
• Non-standard SMIL
• Issues
• References
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
SMIL
• W3C Specification
• ‘Synchronized Multimedia Integration Language’
• “ …enables simple authoring of interactive audiovisual presentations”
• SMIL presentations can integrate audio and video with images, text or many
other media type
• Syntax and structure similar to HTML
• SMIL 2.1 released Dec 05
• SMIL 1.0 released 1998
• Examples
– Customers, Suppliers and the Need for Partnerships – Stephen Emmott
– State of the Web 2005– Molly Holzschlag
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Creating a SMIL presentation
• Record audio
• Process audio
• Create the image files
– Assuming based on a Powerpoint presentation
• Write SMIL code
• Add accessibility features
• Add other optional features
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Recording
• Digital Recording device of some kind
– Computer
• Sound card
• Microphone
• Software – Audacity, Steinberg Wavelab
– Mp3 player with recording capability
– Professional audio device
• Possible problems
– Speaker moves about
– High level of background noise
– Interference
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Audio Processing
• Slide change timings
• Editing
• Equalisation
• Amplification
• Pitch change
• Volume Compression
• Filtering
– Noise reduction (Steinberg Cleanup)
• File Compression (typically to mp3)
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Process Powerpoint slides
• Export from Powerpoint
– ‘Save as’ PNG – every slide
– Can look a bit messy:
– http://www.ukoln.ac.uk/web-focus/events/workshops/trieste-2005/talk-2a/
• Process image files in graphics
program such as Macromedia
Fireworks
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Write the SMIL Code
• SMIL tag and namespace, head and body section
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
<head>
...optional section with all header markup...
</head>
<body>
...required section with all body markup...
</body>
</smil>
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
<head> section
• Defines appearance of the playback window
• Simple layout:
<head>
<layout>
<root-layout height="450" width="600" background-color="black"/>
<region id="main" title="Main" width="600" height="450" fit="fill"/>
</layout>
</head>
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
<body> section
• Arrange the sequence and timing of elements.
• Two basic tags are:
– <par> plays media in simultaneously (in parallel)
– <seq> plays media in sequence
• Eg:
<body>
<par>
<audio src="intrometadata.mp3" />
<img id="image_1" src="Slide1.jpg" region="main" begin="0" dur="5:02" />
<img id="image_2" src="Slide2.jpg" region="main" begin="5:02" dur="59" />
<img id="image_3" src="Slide3.jpg" region="main" begin="6:01" dur="26" />
</par>
</body>
• Example
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
More SMIL code
<smil xmlns="http://www.w3.org/2001/SMIL20/Language" xml:lang="en">
<head>
<layout>
<root-layout height="450" width="750" background-color="white"/>
<region id="main" title="Main" width="600" height="450" fit="fill"/>
<region id="nav" title="Navigation" width="150" height="450" left="600"/>
</layout>
</head>
<body>
<par>
<audio src="emmott.mp3" />
<img id="image_1" src="Slide1.jpg" region="main" begin="0"/>
<img id="image_2" src="Slide2.jpg" region="main" begin="1:25" />
<img id="image_3" src="Slide3.jpg" region="main" begin="2:06" />
<textstream src="nav.rt" region="nav" begin="0s" />
</par>
</body>
</smil> Example [requires Real Player]
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Accessibility
• ‘alt’ and ‘longdesc’ text attributes
<body>
<par>
<audio src="emmott/emmott.mp3" alt=“recording of a talk by Stephen Emmott called
Customers, Suppliers, and the Need for Partnerships" longdesc="emmott/emmott.txt"/>
<img id="image_1" src="emmott/Slide1.jpg" region="main" begin="0" alt="Customers,
Suppliers, and the Need for Partnerships title slide"/>
<img id="image_2" src="emmott/Slide2.jpg" region="main" begin="1:25" alt="Copyright and
credits slide"/>
….
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Accessibility
• Captioning
– Makes SMIL accessible to those with difficulty hearing or who are unable to
hear
– SMIL audio track improves accessibility for those with visual impairments
– Requires a transcription of the spoken content (plus any important non-
spoken sound), and associated a timestamp
• Add a textstream to the SMIL code:
– <textstream src="emmott/transcript.rt" region="text" begin="0s"/>
• Example
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
<switch>
• SMIL <switch> tag allows the player to select from multiple options
• E.g. different audio or text tracks based on user’s language preferences
• Seven test attributes including:
– System-language
– System-bit-rate
• <switch> selects the first item that matches the user’s system attributes
– For selection based on connection speed, order the elements from highest to
lowest speed
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
<switch>
<switch>
<audio src="192k.mp3" system-bitrate=192000"/>
<audio src="128k.mp3" system-bitrate="128000"/>
<audio src="basic.mp3" system-bitrate="28800"/>
</switch>
<switch>
<audio src="french.mp3" system-language="fr"/>
<audio src="german.mp3" system-language="de"/>
<audio src="english.mp3" system-language="en"/>
</switch>
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
More SMIL
• Metadata
• Hyperlink elements
<a href="http://www.apple.com/" show="new" >
<img src="poster.jpg" region="r1" dur="00:05" />
</a>
• Complex timing controls
• Slide transition effects
– Fade-in’s, Cross fades, Transparency
• Zoom
• Animation
• Pre-fetch
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Non-standard SMIL
• Real Player Navigation
– Example
• <textstream src="nav.rt" region="nav" begin="0s" /> added to SMIL file
• Textstream .rt file:
<window>
<time begin="0:00.0"/>
<clear/>
<p>Menu</p>
<a href="command:seek(0:0)" target="_player">Introduction</a><br/>
<a href="command:seek(1:25)" target="_player">Copyright and credits</a><br/>
……
</window>
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Issues
• Technical Issues
– File path problem
– Users have different SMIL players (or no SMIL player)
• Mixed media problem
– Difficult to capture complex elements of a presentation
– No control over users audio and video settings
– Large files sizes
• Non-Technical Issues
– Time consuming
– IPR
15th June 2006Keep SMILingCombining the strengths of UMIST and
The Victoria University of Manchester
Some references
• W3C SMIL Page
http://www.w3.org/AudioVideo/
• W3C Accessibility Features of SMIL
http://www.w3.org/TR/SMIL-access/
• Synchronized Multimedia On The Web - Larry Bouthillier
http://www.webtechniques.com/archives/1998/09/bouthillier/
• SMIL Scripting for Quicktime
http://developer.apple.com/documentation/quicktime/Conceptual/QTScripting_SMIL
• SMIL del.icio.us
http://del.icio.us/bias/SMIL

More Related Content

Viewers also liked

B.tech(Information Technology)
B.tech(Information Technology)B.tech(Information Technology)
B.tech(Information Technology)neha gupta
 
Copyright on Wikisource
Copyright on WikisourceCopyright on Wikisource
Copyright on Wikisource
Ewan McAndrew
 
Marina Vishnyakova. Ranking of Business Schools: expectations vs results
Marina Vishnyakova. Ranking of Business Schools: expectations vs resultsMarina Vishnyakova. Ranking of Business Schools: expectations vs results
Marina Vishnyakova. Ranking of Business Schools: expectations vs results
mba_su
 
IWMW 1997: Information flow and the Institutional WWW
IWMW 1997: Information flow and the Institutional WWWIWMW 1997: Information flow and the Institutional WWW
IWMW 1997: Information flow and the Institutional WWW
IWMW
 
Hábitos
HábitosHábitos
Hábitos
Miriam Valle
 
Огляд банківського сектору за лютий 2017 року
Огляд банківського сектору за лютий 2017 рокуОгляд банківського сектору за лютий 2017 року
Огляд банківського сектору за лютий 2017 року
tsnua
 
Mh january 2017
Mh january 2017Mh january 2017
Mh january 2017
Maypop Hill
 

Viewers also liked (11)

B.tech(Information Technology)
B.tech(Information Technology)B.tech(Information Technology)
B.tech(Information Technology)
 
Copyright on Wikisource
Copyright on WikisourceCopyright on Wikisource
Copyright on Wikisource
 
Actividad 9 animaciones
Actividad 9 animacionesActividad 9 animaciones
Actividad 9 animaciones
 
Priyares
PriyaresPriyares
Priyares
 
Resume
ResumeResume
Resume
 
Marina Vishnyakova. Ranking of Business Schools: expectations vs results
Marina Vishnyakova. Ranking of Business Schools: expectations vs resultsMarina Vishnyakova. Ranking of Business Schools: expectations vs results
Marina Vishnyakova. Ranking of Business Schools: expectations vs results
 
IWMW 1997: Information flow and the Institutional WWW
IWMW 1997: Information flow and the Institutional WWWIWMW 1997: Information flow and the Institutional WWW
IWMW 1997: Information flow and the Institutional WWW
 
Kg1
Kg1Kg1
Kg1
 
Hábitos
HábitosHábitos
Hábitos
 
Огляд банківського сектору за лютий 2017 року
Огляд банківського сектору за лютий 2017 рокуОгляд банківського сектору за лютий 2017 року
Огляд банківського сектору за лютий 2017 року
 
Mh january 2017
Mh january 2017Mh january 2017
Mh january 2017
 

Similar to IWMW 2006: Keep SMILing

Podcasting & SMIL
Podcasting & SMILPodcasting & SMIL
Podcasting & SMIL
Adrian Stevenson
 
Podcasting & SMIL
Podcasting & SMILPodcasting & SMIL
Podcasting & SMIL
Adrian Stevenson
 
Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...
Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...
Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...
mfrancis
 
HTML5: Markup Evolved
HTML5: Markup EvolvedHTML5: Markup Evolved
HTML5: Markup Evolved
Billy Hylton
 
24 C3 Noooxml
24 C3 Noooxml24 C3 Noooxml
24 C3 Noooxmlzoobab
 
Integration for manufacturing The eScop Approach
Integration for manufacturing  The eScop ApproachIntegration for manufacturing  The eScop Approach
General Architecture for Generation of Slide Presentations
General Architecture for Generation of Slide PresentationsGeneral Architecture for Generation of Slide Presentations
General Architecture for Generation of Slide Presentations
Contrext Solutions
 
Front-End Performance Optimizing
Front-End Performance OptimizingFront-End Performance Optimizing
Front-End Performance Optimizing
Michael Pehl
 
Front-End Performance Optimizing
Front-End Performance OptimizingFront-End Performance Optimizing
Front-End Performance Optimizing
Michael Pehl
 
How to extend WSO2 Carbon for your middleware needs
How to extend WSO2 Carbon for your middleware needsHow to extend WSO2 Carbon for your middleware needs
How to extend WSO2 Carbon for your middleware needsWSO2
 
HTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use TodayHTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use Today
Todd Anglin
 
The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17
The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17
The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17
GreeceJS
 
Google Polymer Framework
Google Polymer FrameworkGoogle Polymer Framework
Google Polymer Framework
Kostas Karolemeas
 
SAP Influence Council 2009
SAP Influence Council 2009SAP Influence Council 2009
SAP Influence Council 2009Tony de Thomasis
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
Joe Seifi
 
Assignment3 pp v3
Assignment3 pp v3Assignment3 pp v3
Assignment3 pp v3zanmmit
 
Mule Message Properties Component
Mule Message Properties ComponentMule Message Properties Component
Mule Message Properties Component
Durga Prasad Kakarla
 
Guardian Open Platform Launch Event
Guardian Open Platform Launch EventGuardian Open Platform Launch Event
Guardian Open Platform Launch Event
Matt McAlister
 

Similar to IWMW 2006: Keep SMILing (20)

Podcasting & SMIL
Podcasting & SMILPodcasting & SMIL
Podcasting & SMIL
 
Podcasting & SMIL
Podcasting & SMILPodcasting & SMIL
Podcasting & SMIL
 
Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...
Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...
Flexible and Transparent Multimedia Routing on OSGi Environments - Dr. Nativi...
 
HTML5: Markup Evolved
HTML5: Markup EvolvedHTML5: Markup Evolved
HTML5: Markup Evolved
 
24 C3 Noooxml
24 C3 Noooxml24 C3 Noooxml
24 C3 Noooxml
 
Integration for manufacturing The eScop Approach
Integration for manufacturing  The eScop ApproachIntegration for manufacturing  The eScop Approach
Integration for manufacturing The eScop Approach
 
General Architecture for Generation of Slide Presentations
General Architecture for Generation of Slide PresentationsGeneral Architecture for Generation of Slide Presentations
General Architecture for Generation of Slide Presentations
 
Front-End Performance Optimizing
Front-End Performance OptimizingFront-End Performance Optimizing
Front-End Performance Optimizing
 
Front-End Performance Optimizing
Front-End Performance OptimizingFront-End Performance Optimizing
Front-End Performance Optimizing
 
Techtalk30jan09
Techtalk30jan09Techtalk30jan09
Techtalk30jan09
 
How to extend WSO2 Carbon for your middleware needs
How to extend WSO2 Carbon for your middleware needsHow to extend WSO2 Carbon for your middleware needs
How to extend WSO2 Carbon for your middleware needs
 
Mwml
MwmlMwml
Mwml
 
HTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use TodayHTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use Today
 
The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17
The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17
The rise of Polymer and Web Components (Kostas Karolemeas) - GreeceJS #17
 
Google Polymer Framework
Google Polymer FrameworkGoogle Polymer Framework
Google Polymer Framework
 
SAP Influence Council 2009
SAP Influence Council 2009SAP Influence Council 2009
SAP Influence Council 2009
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
 
Assignment3 pp v3
Assignment3 pp v3Assignment3 pp v3
Assignment3 pp v3
 
Mule Message Properties Component
Mule Message Properties ComponentMule Message Properties Component
Mule Message Properties Component
 
Guardian Open Platform Launch Event
Guardian Open Platform Launch EventGuardian Open Platform Launch Event
Guardian Open Platform Launch Event
 

More from IWMW

Look who's talking now
Look who's talking nowLook who's talking now
Look who's talking now
IWMW
 
Introduction to IWMW 2000 (Liz Lyon)
Introduction to IWMW 2000 (Liz Lyon)Introduction to IWMW 2000 (Liz Lyon)
Introduction to IWMW 2000 (Liz Lyon)
IWMW
 
Web Tools report
Web Tools reportWeb Tools report
Web Tools report
IWMW
 
Personal Contingency Plan - Beat The Panic
Personal Contingency Plan - Beat The PanicPersonal Contingency Plan - Beat The Panic
Personal Contingency Plan - Beat The Panic
IWMW
 
Whose site is it anyway?
Whose site is it anyway?Whose site is it anyway?
Whose site is it anyway?
IWMW
 
Open Source - the case against
Open Source - the case againstOpen Source - the case against
Open Source - the case against
IWMW
 
IWMW 2002: Avoiding Portal Wars - an MIS view
IWMW 2002: Avoiding Portal Wars - an MIS viewIWMW 2002: Avoiding Portal Wars - an MIS view
IWMW 2002: Avoiding Portal Wars - an MIS view
IWMW
 
What does open source mean for the institutional web manager?
What does open source mean for the institutional web manager?What does open source mean for the institutional web manager?
What does open source mean for the institutional web manager?
IWMW
 
Library 2.0
Library 2.0Library 2.0
Library 2.0
IWMW
 
Social participation in student recruitment
Social participation in student recruitmentSocial participation in student recruitment
Social participation in student recruitment
IWMW
 
Supporting Institutions in Changing Times: Manifesto
Supporting Institutions in Changing Times: ManifestoSupporting Institutions in Changing Times: Manifesto
Supporting Institutions in Changing Times: Manifesto
IWMW
 
IWMW 2019 photo scavenger hunt highlights
IWMW 2019 photo scavenger hunt highlightsIWMW 2019 photo scavenger hunt highlights
IWMW 2019 photo scavenger hunt highlights
IWMW
 
How to Turn a Web Strategy into Web Services
How to Turn a Web Strategy into Web ServicesHow to Turn a Web Strategy into Web Services
How to Turn a Web Strategy into Web Services
IWMW
 
Static Site Generators - Developing Websites in Low-resource Condition
Static Site Generators - Developing Websites in Low-resource ConditionStatic Site Generators - Developing Websites in Low-resource Condition
Static Site Generators - Developing Websites in Low-resource Condition
IWMW
 
Looking to the Future
Looking to the FutureLooking to the Future
Looking to the Future
IWMW
 
Looking to the Future
Looking to the FutureLooking to the Future
Looking to the Future
IWMW
 
Developing Communities of Practice
Developing Communities of PracticeDeveloping Communities of Practice
Developing Communities of Practice
IWMW
 
How to train your content- so it doesn't slow you down...
How to train your content- so it doesn't slow you down... How to train your content- so it doesn't slow you down...
How to train your content- so it doesn't slow you down...
IWMW
 
Grassroots & Guerrillas: The Beginnings of a UX Revolution
Grassroots & Guerrillas: The Beginnings of a UX RevolutionGrassroots & Guerrillas: The Beginnings of a UX Revolution
Grassroots & Guerrillas: The Beginnings of a UX Revolution
IWMW
 
Connecting Your Content: How to Save Time and Improve Content Quality through...
Connecting Your Content: How to Save Time and Improve Content Quality through...Connecting Your Content: How to Save Time and Improve Content Quality through...
Connecting Your Content: How to Save Time and Improve Content Quality through...
IWMW
 

More from IWMW (20)

Look who's talking now
Look who's talking nowLook who's talking now
Look who's talking now
 
Introduction to IWMW 2000 (Liz Lyon)
Introduction to IWMW 2000 (Liz Lyon)Introduction to IWMW 2000 (Liz Lyon)
Introduction to IWMW 2000 (Liz Lyon)
 
Web Tools report
Web Tools reportWeb Tools report
Web Tools report
 
Personal Contingency Plan - Beat The Panic
Personal Contingency Plan - Beat The PanicPersonal Contingency Plan - Beat The Panic
Personal Contingency Plan - Beat The Panic
 
Whose site is it anyway?
Whose site is it anyway?Whose site is it anyway?
Whose site is it anyway?
 
Open Source - the case against
Open Source - the case againstOpen Source - the case against
Open Source - the case against
 
IWMW 2002: Avoiding Portal Wars - an MIS view
IWMW 2002: Avoiding Portal Wars - an MIS viewIWMW 2002: Avoiding Portal Wars - an MIS view
IWMW 2002: Avoiding Portal Wars - an MIS view
 
What does open source mean for the institutional web manager?
What does open source mean for the institutional web manager?What does open source mean for the institutional web manager?
What does open source mean for the institutional web manager?
 
Library 2.0
Library 2.0Library 2.0
Library 2.0
 
Social participation in student recruitment
Social participation in student recruitmentSocial participation in student recruitment
Social participation in student recruitment
 
Supporting Institutions in Changing Times: Manifesto
Supporting Institutions in Changing Times: ManifestoSupporting Institutions in Changing Times: Manifesto
Supporting Institutions in Changing Times: Manifesto
 
IWMW 2019 photo scavenger hunt highlights
IWMW 2019 photo scavenger hunt highlightsIWMW 2019 photo scavenger hunt highlights
IWMW 2019 photo scavenger hunt highlights
 
How to Turn a Web Strategy into Web Services
How to Turn a Web Strategy into Web ServicesHow to Turn a Web Strategy into Web Services
How to Turn a Web Strategy into Web Services
 
Static Site Generators - Developing Websites in Low-resource Condition
Static Site Generators - Developing Websites in Low-resource ConditionStatic Site Generators - Developing Websites in Low-resource Condition
Static Site Generators - Developing Websites in Low-resource Condition
 
Looking to the Future
Looking to the FutureLooking to the Future
Looking to the Future
 
Looking to the Future
Looking to the FutureLooking to the Future
Looking to the Future
 
Developing Communities of Practice
Developing Communities of PracticeDeveloping Communities of Practice
Developing Communities of Practice
 
How to train your content- so it doesn't slow you down...
How to train your content- so it doesn't slow you down... How to train your content- so it doesn't slow you down...
How to train your content- so it doesn't slow you down...
 
Grassroots & Guerrillas: The Beginnings of a UX Revolution
Grassroots & Guerrillas: The Beginnings of a UX RevolutionGrassroots & Guerrillas: The Beginnings of a UX Revolution
Grassroots & Guerrillas: The Beginnings of a UX Revolution
 
Connecting Your Content: How to Save Time and Improve Content Quality through...
Connecting Your Content: How to Save Time and Improve Content Quality through...Connecting Your Content: How to Save Time and Improve Content Quality through...
Connecting Your Content: How to Save Time and Improve Content Quality through...
 

Recently uploaded

Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 

Recently uploaded (20)

Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 

IWMW 2006: Keep SMILing

  • 1. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Keep SMILing Institutional Web Management Workshop 10th June 2006 Adrian Stevenson Internet Services, University of Manchester
  • 2. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Keep SMILing • What is SMIL? • How do you create a SMIL presentation? • Accessibility • Non-standard SMIL • Issues • References
  • 3. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester SMIL • W3C Specification • ‘Synchronized Multimedia Integration Language’ • “ …enables simple authoring of interactive audiovisual presentations” • SMIL presentations can integrate audio and video with images, text or many other media type • Syntax and structure similar to HTML • SMIL 2.1 released Dec 05 • SMIL 1.0 released 1998 • Examples – Customers, Suppliers and the Need for Partnerships – Stephen Emmott – State of the Web 2005– Molly Holzschlag
  • 4. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Creating a SMIL presentation • Record audio • Process audio • Create the image files – Assuming based on a Powerpoint presentation • Write SMIL code • Add accessibility features • Add other optional features
  • 5. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Recording • Digital Recording device of some kind – Computer • Sound card • Microphone • Software – Audacity, Steinberg Wavelab – Mp3 player with recording capability – Professional audio device • Possible problems – Speaker moves about – High level of background noise – Interference
  • 6. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Audio Processing • Slide change timings • Editing • Equalisation • Amplification • Pitch change • Volume Compression • Filtering – Noise reduction (Steinberg Cleanup) • File Compression (typically to mp3)
  • 7. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Process Powerpoint slides • Export from Powerpoint – ‘Save as’ PNG – every slide – Can look a bit messy: – http://www.ukoln.ac.uk/web-focus/events/workshops/trieste-2005/talk-2a/ • Process image files in graphics program such as Macromedia Fireworks
  • 8. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Write the SMIL Code • SMIL tag and namespace, head and body section <smil xmlns="http://www.w3.org/2001/SMIL20/Language"> <head> ...optional section with all header markup... </head> <body> ...required section with all body markup... </body> </smil>
  • 9. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester <head> section • Defines appearance of the playback window • Simple layout: <head> <layout> <root-layout height="450" width="600" background-color="black"/> <region id="main" title="Main" width="600" height="450" fit="fill"/> </layout> </head>
  • 10. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester <body> section • Arrange the sequence and timing of elements. • Two basic tags are: – <par> plays media in simultaneously (in parallel) – <seq> plays media in sequence • Eg: <body> <par> <audio src="intrometadata.mp3" /> <img id="image_1" src="Slide1.jpg" region="main" begin="0" dur="5:02" /> <img id="image_2" src="Slide2.jpg" region="main" begin="5:02" dur="59" /> <img id="image_3" src="Slide3.jpg" region="main" begin="6:01" dur="26" /> </par> </body> • Example
  • 11. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester More SMIL code <smil xmlns="http://www.w3.org/2001/SMIL20/Language" xml:lang="en"> <head> <layout> <root-layout height="450" width="750" background-color="white"/> <region id="main" title="Main" width="600" height="450" fit="fill"/> <region id="nav" title="Navigation" width="150" height="450" left="600"/> </layout> </head> <body> <par> <audio src="emmott.mp3" /> <img id="image_1" src="Slide1.jpg" region="main" begin="0"/> <img id="image_2" src="Slide2.jpg" region="main" begin="1:25" /> <img id="image_3" src="Slide3.jpg" region="main" begin="2:06" /> <textstream src="nav.rt" region="nav" begin="0s" /> </par> </body> </smil> Example [requires Real Player]
  • 12. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Accessibility • ‘alt’ and ‘longdesc’ text attributes <body> <par> <audio src="emmott/emmott.mp3" alt=“recording of a talk by Stephen Emmott called Customers, Suppliers, and the Need for Partnerships" longdesc="emmott/emmott.txt"/> <img id="image_1" src="emmott/Slide1.jpg" region="main" begin="0" alt="Customers, Suppliers, and the Need for Partnerships title slide"/> <img id="image_2" src="emmott/Slide2.jpg" region="main" begin="1:25" alt="Copyright and credits slide"/> ….
  • 13. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Accessibility • Captioning – Makes SMIL accessible to those with difficulty hearing or who are unable to hear – SMIL audio track improves accessibility for those with visual impairments – Requires a transcription of the spoken content (plus any important non- spoken sound), and associated a timestamp • Add a textstream to the SMIL code: – <textstream src="emmott/transcript.rt" region="text" begin="0s"/> • Example
  • 14. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester <switch> • SMIL <switch> tag allows the player to select from multiple options • E.g. different audio or text tracks based on user’s language preferences • Seven test attributes including: – System-language – System-bit-rate • <switch> selects the first item that matches the user’s system attributes – For selection based on connection speed, order the elements from highest to lowest speed
  • 15. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester <switch> <switch> <audio src="192k.mp3" system-bitrate=192000"/> <audio src="128k.mp3" system-bitrate="128000"/> <audio src="basic.mp3" system-bitrate="28800"/> </switch> <switch> <audio src="french.mp3" system-language="fr"/> <audio src="german.mp3" system-language="de"/> <audio src="english.mp3" system-language="en"/> </switch>
  • 16. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester More SMIL • Metadata • Hyperlink elements <a href="http://www.apple.com/" show="new" > <img src="poster.jpg" region="r1" dur="00:05" /> </a> • Complex timing controls • Slide transition effects – Fade-in’s, Cross fades, Transparency • Zoom • Animation • Pre-fetch
  • 17. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Non-standard SMIL • Real Player Navigation – Example • <textstream src="nav.rt" region="nav" begin="0s" /> added to SMIL file • Textstream .rt file: <window> <time begin="0:00.0"/> <clear/> <p>Menu</p> <a href="command:seek(0:0)" target="_player">Introduction</a><br/> <a href="command:seek(1:25)" target="_player">Copyright and credits</a><br/> …… </window>
  • 18. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Issues • Technical Issues – File path problem – Users have different SMIL players (or no SMIL player) • Mixed media problem – Difficult to capture complex elements of a presentation – No control over users audio and video settings – Large files sizes • Non-Technical Issues – Time consuming – IPR
  • 19. 15th June 2006Keep SMILingCombining the strengths of UMIST and The Victoria University of Manchester Some references • W3C SMIL Page http://www.w3.org/AudioVideo/ • W3C Accessibility Features of SMIL http://www.w3.org/TR/SMIL-access/ • Synchronized Multimedia On The Web - Larry Bouthillier http://www.webtechniques.com/archives/1998/09/bouthillier/ • SMIL Scripting for Quicktime http://developer.apple.com/documentation/quicktime/Conceptual/QTScripting_SMIL • SMIL del.icio.us http://del.icio.us/bias/SMIL

Editor's Notes

  1. Much recording of conference now and podcasting – Why not go further and create SMIL presentation to bring it all together
  2. Mention hasn’t especially caught on. Caught between designer and programmer. Competes with well promoted other technologies. So SMIL allows users to follow the presentation without having to guess when the slides change. Show a bit of the SMIL source code
  3. Record audio in advance or on the day. Could be yourself or other speakers Not going to look at everything SMIL can do as it is quite wide ranging
  4. Pro audio recorder £989
  5. Hands on part here! Easier to do slide timings in Real Player, Windows Media Player Pitch change using Brian’s file
  6. Demo the batch processing Mention a matter of choice – may be happy with the PNG’s Mention linking to HTML files – haven’t found very satisfactory
  7. Size and colour of overall presentation Then define the areas within the window where we want our media elements displayed in the region tag. Region id required. Region in this example is the same as the root-layout size. Can include z-index to order region layers
  8. Can nest &amp;lt;par&amp;gt; and &amp;lt;seq&amp;gt; Quicktime requires duration as Real Player doesn’t – a pain as more hassle to work out than ‘begin’ which can easily get from media player Audio, img are media tags – SMIL allows for img, text, textstream, video, audio and animation. Mention ‘begin’ and duration. SMIL can leave off hours, hours and minutes and decimal fractions. Can add ‘sec’ for readability Highlight trailing slash
  9. Talk through the code Note: extra region, the ‘left’ attribute’, the region tag, the ‘fit’ tag – images scaled to match the height and width of the region. Also ‘top’ and ‘left’ offsets, and ‘z-index’ Two regions Images go to region “main” and textstream navigation going to region “nav” below it &amp;lt;par&amp;gt; display simultaneously in parallel. /&amp;lt;seq&amp;gt; plays e.g audio files in sequence one immediately following the other Hands On Exercise 2 here!
  10. Text file can be exported from Powerpoint as well as image files
  11. This caption is in real text .rt file
  12. Other switch tags not supported. These 2 most usually supported. SMIL player loads the first element whose requirement is less than or equal to the viewer’s connection speed .
  13. Highlight highest connection speed first
  14. Can add DC tags to the &amp;lt;head&amp;gt; Hyperlink elements – make elements clickable by wrapping the media tag in a standard her Timing – Loop, repeat, mouse, keyboard, cursor control
  15. SMIL by definition extensible. Real and Quicktime both have extensions eg. Autoplay, time slider Talk through the code.
  16. Mixed Media – e.g. Quicktime cannot play a file that specifies media that Quicktime can’t play such as Real Media or Windows WMV files. Can’t be sure whether user will have any SMIL player installed – can embed SMIL reference in Quicktime or Real Player file – but may have Ambulkant. Large file sizes solved by streaming but adds to complexity and not all authors have access. Time – partic accessibility