SlideShare a Scribd company logo
HTML5 MultimediaCanvas, Audio, Video and more..
AgendaCanvasAudioVideoSVGWebGL
whoami /rParashuramWork for a company that makes browsersWeb Enthusiast – spends time writing codeWorked on IndexedDB standards and demoshttp://nparashuram.comhttp://blog.nparashuram.com@nparashuram
Canvas
Pixel based drawing surface2d contextThe drawing APILines and CurvesFille and GradientsImage data, security contextGPU accelerated, possible trace-JITed JS codeWorks well with Videos, WebWorkersCanvas
Canvas - Code<canvas id = “myCanvas” width = “100px” height =  “100px” style = “width:200px;height:200px”>Canvasnot supported</canvas><script>varelem= document.getElementById('myCanvas');</script>
Canvas - Codevarcontext = elem.getContext('2d');context.fillRect(0, 0, 150, 100);context.moveTo(10, 10); context.lineTo(100, 10); context.stroke();context.closePath();context.drawImage(img_elem, dx, dy, dw, dh);
Canvas - Codecontext.font = 'italic 30px sans-serif'; context.strokeText('Hello world!', 0, 50);context.fillText ('Hello world!', 0, 0);context.shadowColor = 'rgba(255, 0, 0, 0.5)';context.shadowBlur = 4;context.shadowColor = 'rgba(255, 0, 0, 0.5)';context.fillRect(20, 20, 150, 100);var g= context.createLinearGradient(sx, sy, dx, dy);context.fillStyle = g;
Canvas - Demoshttp://canvaspaint.org/http://nparashuram.com/seamcarving/index.htmlhttp://www.canvasdemos.com/type/games/http://www.benjoffe.com/code/demos/canvascape/http://caniuse.com/#search=canvas
VideoNative support to play video in browserCodecs (What data is stored)H.264TheoraVP8Containers (How data is stored)MPEG4FlashOggWebMShould be Served with correct MIME-TYPEFallback mechanism
Video - Code<video poster="star.png" autoplay loop preload controls ><sourcesrc="movie.webm" 	type='video/webm; codecs="vp8, vorbis"' />	<sourcesrc="movie.mp4" 	type='video/mp4;codecs="avc1.42E01E,mp4a.40.2"'/>Video tag not supported. Use Flash Tags here orDownload <a href="movie.webm">here</a>.<video>
Video - Codevideo.play(); video.pause()video.playbackRate = 0.8;video.addTrack(kind, label, language) onPlay, canplaythrough, progress, stalled, loadeddata, loadedmetadata, waiting,
Video - Demoshttp://html5demos.com/videohttp://html5demos.com/two-videoshttp://sublimevideo.net/demohttp://caniuse.com/video
AudioNative support for soundControls, API similar to VideoPlay audio files, control playbackAudio Data API – work in progress
Audio - Code<audiocontrols preload="auto" autobuffer> 	<sourcesrc="elvis.mp3" />	<sourcesrc="elvis.ogg" /> <!-- now include flash fall back --></audio>
Audio - Demoshttp://www.jplayer.org/latest/demo-01/#http://tinyurl.com/4v8yu42http://apm.ircam.fr/page/audio-tag/
SVGXML Based Scalable Vector GraphicsEmbed inline in HTMLScalable Images Elements scriptable on DOMSVG in CSS as background imagesSVG Filters for Video
SVG - Code<svgxmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width='300px' height='300px'>	<title> Small SVG example </title><circle cx='120' cy='150' r='60' style='fill: gold;'>		<animateattributeName='r' from='2' to='80' 			begin='0' dur='3' repeatCount='indefinite' /></circle>	<polyline points='120 30, 25 150, 290 150' 	stroke-width='4’ 	stroke='brown' style='fill: none;' /><text x='60' y='250' fill='blue'>Hello, World!</text></svg>
SVG - Demohttp://svg-edit.googlecode.com/svn/branches/2.4/editor/svg-editor.htmlhttp://slides.html5rocks.com/#inline-svghttp://caniuse.com/svg-html5
WebGL3D Graphics APIBased on OpenGL ES 2.0On Canvas elementLearning WebGLDemoshttp://www.ambiera.com/coppercube/webgldemos.htmlhttp://www.khronos.org/webgl/wiki/Demo_Repository
Demoshttp://www.craftymind.com/factory/html5video/CanvasVideo.htmlhttps://developer.mozilla.org/samples/video/chroma-key/index.xhtmlhttp://people.mozilla.com/~prouget/demos/DynamicContentInjection/play.xhtmlhttp://media.chikuyonok.ru/ambilight/http://9elements.com/io/projects/html5/canvas/http://www.canvasdemos.com/

More Related Content

PDF
Html5 - audio and video tags
PDF
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012
PPTX
Video success
PDF
HTML5 multimedia - browser-native video and audio - DevUp HTML5 / Barcelona /...
PPTX
Movie trailer 1
TXT
Document text nou
PPT
Discovery Education streaming and Google Earth
Html5 - audio and video tags
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012
Video success
HTML5 multimedia - browser-native video and audio - DevUp HTML5 / Barcelona /...
Movie trailer 1
Document text nou
Discovery Education streaming and Google Earth

What's hot (20)

PDF
HTML+CSS Resources
PPT
From jQuery to App Store in 30 Minutes
DOC
Jager
DOC
DOC
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStart
DOCX
Slideshare
PDF
Frontend Performance: Illusions & browser rendering
PPT
Flash Security, OWASP Chennai
PDF
[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites
DOCX
Code dintegration videowall
PPT
Testable client side_mvc_apps_in_javascript
PPT
Rey Bango - HTML5: polyfills and shims
DOC
Embed for bit gravilty 6.txt
PPT
Blogs como gerenciar
PPT
Blogs como gerenciar
PPT
Blogs como gerenciar
PPT
Blogs como gerenciar
PDF
Progressive Enhancement
ODP
Android Programming Basics - Simple Pizza Delivery Application
TXT
Video
HTML+CSS Resources
From jQuery to App Store in 30 Minutes
Jager
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStart
Slideshare
Frontend Performance: Illusions & browser rendering
Flash Security, OWASP Chennai
[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites
Code dintegration videowall
Testable client side_mvc_apps_in_javascript
Rey Bango - HTML5: polyfills and shims
Embed for bit gravilty 6.txt
Blogs como gerenciar
Blogs como gerenciar
Blogs como gerenciar
Blogs como gerenciar
Progressive Enhancement
Android Programming Basics - Simple Pizza Delivery Application
Video
Ad

Similar to DoctypeHTML5 (Hyderabad) Presentation on Multimedia (20)

PPT
ARTDM 170, Week 16: Publishing
PPT
Filling the HTML5 Gaps with Polyfills and Shims
PPTX
Be HTML5-ready today
ODP
KEY
Web Apps
PDF
Html5 intro
PPTX
Ie9 dev overview (300) beta
PPTX
Accelerated Adoption: HTML5 and CSS3 for ASP.NET Developers
PDF
Mobile Web Video
PPTX
Html5 - Novas Tags na Prática!
PDF
Lca2009 Video A11y
PDF
HTML5 Multimedia
PDF
HTML5 e Css3 - 8 | WebMaster & WebDesigner
PPT
GWT
PPT
Even Faster Web Sites at jQuery Conference '09
PPT
Basics of html5, data_storage, css3
PDF
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...
PPT
EPiServer Web Parts
PDF
Responsive Videos, mehr oder weniger
KEY
HTML5 Video Player - HTML5 Dev Conf 2012
ARTDM 170, Week 16: Publishing
Filling the HTML5 Gaps with Polyfills and Shims
Be HTML5-ready today
Web Apps
Html5 intro
Ie9 dev overview (300) beta
Accelerated Adoption: HTML5 and CSS3 for ASP.NET Developers
Mobile Web Video
Html5 - Novas Tags na Prática!
Lca2009 Video A11y
HTML5 Multimedia
HTML5 e Css3 - 8 | WebMaster & WebDesigner
GWT
Even Faster Web Sites at jQuery Conference '09
Basics of html5, data_storage, css3
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...
EPiServer Web Parts
Responsive Videos, mehr oder weniger
HTML5 Video Player - HTML5 Dev Conf 2012
Ad

More from Parashuram N (8)

PDF
React Native - Fabric review-2018-07-25
PDF
Chain React 2018 - The state of React Native
PPTX
IndexedDB - Querying and Performance
PPTX
Client storage
PPTX
Understanding Javascript Engines
PPTX
Indexed DB
PPTX
Indexed db - the store in the browser
PPT
React Native - Fabric review-2018-07-25
Chain React 2018 - The state of React Native
IndexedDB - Querying and Performance
Client storage
Understanding Javascript Engines
Indexed DB
Indexed db - the store in the browser

Recently uploaded (20)

PPTX
Institutional Correction lecture only . . .
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
RMMM.pdf make it easy to upload and study
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
Pharma ospi slides which help in ospi learning
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
GDM (1) (1).pptx small presentation for students
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Basic Mud Logging Guide for educational purpose
PDF
Insiders guide to clinical Medicine.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
Complications of Minimal Access Surgery at WLH
Institutional Correction lecture only . . .
Renaissance Architecture: A Journey from Faith to Humanism
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
O5-L3 Freight Transport Ops (International) V1.pdf
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Module 4: Burden of Disease Tutorial Slides S2 2025
RMMM.pdf make it easy to upload and study
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Pharma ospi slides which help in ospi learning
VCE English Exam - Section C Student Revision Booklet
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
O7-L3 Supply Chain Operations - ICLT Program
GDM (1) (1).pptx small presentation for students
STATICS OF THE RIGID BODIES Hibbelers.pdf
Basic Mud Logging Guide for educational purpose
Insiders guide to clinical Medicine.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPH.pptx obstetrics and gynecology in nursing
Complications of Minimal Access Surgery at WLH

DoctypeHTML5 (Hyderabad) Presentation on Multimedia