SlideShare a Scribd company logo
1 of 19
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 WikisourceEwan 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 resultsmba_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 WWWIWMW
 
Огляд банківського сектору за лютий 2017 року
Огляд банківського сектору за лютий 2017 рокуОгляд банківського сектору за лютий 2017 року
Огляд банківського сектору за лютий 2017 рокуtsnua
 

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

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 EvolvedBilly Hylton
 
24 C3 Noooxml
24 C3 Noooxml24 C3 Noooxml
24 C3 Noooxmlzoobab
 
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 PresentationsContrext Solutions
 
"Getting Started with XSLT" presentation slides
"Getting Started with XSLT" presentation slides"Getting Started with XSLT" presentation slides
"Getting Started with XSLT" presentation slidesRussell Ward
 
Front-End Performance Optimizing
Front-End Performance OptimizingFront-End Performance Optimizing
Front-End Performance OptimizingMichael Pehl
 
Front-End Performance Optimizing
Front-End Performance OptimizingFront-End Performance Optimizing
Front-End Performance OptimizingMichael 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 TodayTodd 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 #17GreeceJS
 
SAP Influence Council 2009
SAP Influence Council 2009SAP Influence Council 2009
SAP Influence Council 2009Tony de Thomasis
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive WebsitesJoe Seifi
 
Assignment3 pp v3
Assignment3 pp v3Assignment3 pp v3
Assignment3 pp v3zanmmit
 

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
 
"Getting Started with XSLT" presentation slides
"Getting Started with XSLT" presentation slides"Getting Started with XSLT" presentation slides
"Getting Started with XSLT" presentation slides
 
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
 

More from IWMW

Look who's talking now
Look who's talking nowLook who's talking now
Look who's talking nowIWMW
 
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 reportIWMW
 
Personal Contingency Plan - Beat The Panic
Personal Contingency Plan - Beat The PanicPersonal Contingency Plan - Beat The Panic
Personal Contingency Plan - Beat The PanicIWMW
 
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 againstIWMW
 
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 viewIWMW
 
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.0IWMW
 
Social participation in student recruitment
Social participation in student recruitmentSocial participation in student recruitment
Social participation in student recruitmentIWMW
 
Supporting Institutions in Changing Times: Manifesto
Supporting Institutions in Changing Times: ManifestoSupporting Institutions in Changing Times: Manifesto
Supporting Institutions in Changing Times: ManifestoIWMW
 
IWMW 2019 photo scavenger hunt highlights
IWMW 2019 photo scavenger hunt highlightsIWMW 2019 photo scavenger hunt highlights
IWMW 2019 photo scavenger hunt highlightsIWMW
 
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 ServicesIWMW
 
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 ConditionIWMW
 
Looking to the Future
Looking to the FutureLooking to the Future
Looking to the FutureIWMW
 
Looking to the Future
Looking to the FutureLooking to the Future
Looking to the FutureIWMW
 
Developing Communities of Practice
Developing Communities of PracticeDeveloping Communities of Practice
Developing Communities of PracticeIWMW
 
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 RevolutionIWMW
 
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

social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Recently uploaded (20)

social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

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