The document discusses HTML5 multimedia capabilities including SVG, Canvas, and Video. SVG allows scalable 2D graphics, Canvas provides a drawing surface for scripted graphics, and Video enables embedded video playback with different formats. Browser support and tools for each technology are also reviewed. The presentation provides an overview of how to use the new HTML5 multimedia features today.
9. SVG
Circles, rectangles, polygons
Paths, Groups
Fills, Gradients, Patterns, Filters
User interaction, Javascript & CSS
Synchronized Multimedia
Integration Language
10. Workflow
1. Create diagram in a vector graphics tool
2. Save as SVG
3. Display SVG in page
Inkscape: http://www.inkscape.org/
11. Internet Explorer 7 & 8!!!
Either use browser detection and serve an image
OR use a plugin for IE (Adobe SVG Viewer)
OR use SVGWeb
SVGWeb: http://code.google.com/p/svgweb/
12. Use it today!
Replace graphs and charts
Replace illustrations
Generate scalable images
24. Workflow
1. Record & edit video and audio tracks
2. Encode into appropriate formats
3. Insert into page
Firefogg: http://firefogg.org/
Handbrake: http://handbrake.fr/
25. Internet Explorer 7 & 8!!!
Use Flash fallback
<video width=“640“ height=“480“>
<source .../>
<object width=“640“ height=“480“
type=“application/x-shockwave-flash“>
...
</object>
</video>