SlideShare una empresa de Scribd logo
1 de 21
HTML5 Multimedia Canvas, Audio, Video and more..
Agenda Canvas Audio Video SVG WebGL
whoami /r Parashuram Work for a company that makes browsers Web Enthusiast – spends time writing code Worked on IndexedDB standards and demos http://nparashuram.com http://blog.nparashuram.com @nparashuram
Canvas
Pixel based drawing surface 2d context The drawing API Lines and Curves Fille and Gradients Image data, security context GPU accelerated, possible trace-JITed JS code Works well with Videos, WebWorkers Canvas
Canvas - Code <canvas id = “myCanvas” width = “100px” height =  “100px” style = “width:200px;height:200px”> Canvasnot supported </canvas> <script> varelem= document.getElementById('myCanvas'); </script>
Canvas - Code varcontext = 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 - Code context.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 - Demos http://canvaspaint.org/ http://nparashuram.com/seamcarving/index.html http://www.canvasdemos.com/type/games/ http://www.benjoffe.com/code/demos/canvascape/ http://caniuse.com/#search=canvas
Video Native support to play video in browser Codecs (What data is stored) H.264 Theora VP8 Containers (How data is stored) MPEG4 Flash Ogg WebM Should be Served with correct MIME-TYPE Fallback 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 or Download <a href="movie.webm">here</a>. <video>
Video - Code video.play(); video.pause() video.playbackRate = 0.8; video.addTrack(kind, label, language)  onPlay, canplaythrough, progress, stalled, loadeddata, loadedmetadata, waiting,
Video - Demos http://html5demos.com/video http://html5demos.com/two-videos http://sublimevideo.net/demo http://caniuse.com/video
Audio Native support for sound Controls, API similar to Video Play audio files, control playback Audio Data API – work in progress
Audio - Code <audiocontrols preload="auto" autobuffer>  	<sourcesrc="elvis.mp3" /> 	<sourcesrc="elvis.ogg" />  <!-- now include flash fall back --> </audio>
Audio - Demos http://www.jplayer.org/latest/demo-01/# http://tinyurl.com/4v8yu42 http://apm.ircam.fr/page/audio-tag/
SVG XML Based Scalable Vector Graphics Embed inline in HTML Scalable Images  Elements scriptable on DOM SVG in CSS as background images SVG 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 - Demo http://svg-edit.googlecode.com/svn/branches/2.4/editor/svg-editor.html http://slides.html5rocks.com/#inline-svg http://caniuse.com/svg-html5
WebGL 3D Graphics API Based on OpenGL ES 2.0 On Canvas element Learning WebGL Demos http://www.ambiera.com/coppercube/webgldemos.html http://www.khronos.org/webgl/wiki/Demo_Repository
Demos http://www.craftymind.com/factory/html5video/CanvasVideo.html https://developer.mozilla.org/samples/video/chroma-key/index.xhtml http://people.mozilla.com/~prouget/demos/DynamicContentInjection/play.xhtml http://media.chikuyonok.ru/ambilight/ http://9elements.com/io/projects/html5/canvas/ http://www.canvasdemos.com/

Más contenido relacionado

La actualidad más candente

From jQuery to App Store in 30 Minutes
From jQuery to App Store in 30 MinutesFrom jQuery to App Store in 30 Minutes
From jQuery to App Store in 30 Minutesedill3484
 
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStart
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStartEmbedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStart
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStartScott DeLoach
 
Frontend Performance: Illusions & browser rendering
Frontend Performance: Illusions & browser renderingFrontend Performance: Illusions & browser rendering
Frontend Performance: Illusions & browser renderingManuel Garcia
 
Flash Security, OWASP Chennai
Flash Security, OWASP ChennaiFlash Security, OWASP Chennai
Flash Security, OWASP Chennailavakumark
 
[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites
[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites
[QCon 2011] Por uma web mais rápida: técnicas de otimização de SitesCaelum
 
Testable client side_mvc_apps_in_javascript
Testable client side_mvc_apps_in_javascriptTestable client side_mvc_apps_in_javascript
Testable client side_mvc_apps_in_javascriptTimothy Oxley
 
Rey Bango - HTML5: polyfills and shims
Rey Bango -  HTML5: polyfills and shimsRey Bango -  HTML5: polyfills and shims
Rey Bango - HTML5: polyfills and shimsStarTech Conference
 
Blogs como gerenciar
Blogs como gerenciarBlogs como gerenciar
Blogs como gerenciarAndrelma
 
Blogs como gerenciar
Blogs como gerenciarBlogs como gerenciar
Blogs como gerenciaremedomimgues
 
Blogs como gerenciar
Blogs como gerenciarBlogs como gerenciar
Blogs como gerenciarEdna17
 
Android Programming Basics - Simple Pizza Delivery Application
Android Programming Basics - Simple Pizza Delivery ApplicationAndroid Programming Basics - Simple Pizza Delivery Application
Android Programming Basics - Simple Pizza Delivery ApplicationRiya Tirole
 

La actualidad más candente (20)

HTML+CSS Resources
HTML+CSS ResourcesHTML+CSS Resources
HTML+CSS Resources
 
From jQuery to App Store in 30 Minutes
From jQuery to App Store in 30 MinutesFrom jQuery to App Store in 30 Minutes
From jQuery to App Store in 30 Minutes
 
Jager
JagerJager
Jager
 
youtube
youtubeyoutube
youtube
 
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStart
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStartEmbedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStart
Embedded UA 101 - STC Summit 2013, Scott DeLoach, ClickStart
 
Slideshare
SlideshareSlideshare
Slideshare
 
Frontend Performance: Illusions & browser rendering
Frontend Performance: Illusions & browser renderingFrontend Performance: Illusions & browser rendering
Frontend Performance: Illusions & browser rendering
 
Flash Security, OWASP Chennai
Flash Security, OWASP ChennaiFlash Security, OWASP Chennai
Flash Security, OWASP Chennai
 
[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites
[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites
[QCon 2011] Por uma web mais rápida: técnicas de otimização de Sites
 
Code dintegration videowall
Code dintegration videowallCode dintegration videowall
Code dintegration videowall
 
Testable client side_mvc_apps_in_javascript
Testable client side_mvc_apps_in_javascriptTestable client side_mvc_apps_in_javascript
Testable client side_mvc_apps_in_javascript
 
Rey Bango - HTML5: polyfills and shims
Rey Bango -  HTML5: polyfills and shimsRey Bango -  HTML5: polyfills and shims
Rey Bango - HTML5: polyfills and shims
 
Embed for bit gravilty 6.txt
Embed for bit gravilty 6.txtEmbed for bit gravilty 6.txt
Embed for bit gravilty 6.txt
 
Blogs como gerenciar
Blogs como gerenciarBlogs como gerenciar
Blogs como gerenciar
 
Blogs como gerenciar
Blogs como gerenciarBlogs como gerenciar
Blogs como gerenciar
 
Blogs como gerenciar
Blogs como gerenciarBlogs como gerenciar
Blogs como gerenciar
 
Blogs como gerenciar
Blogs como gerenciarBlogs como gerenciar
Blogs como gerenciar
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive Enhancement
 
Android Programming Basics - Simple Pizza Delivery Application
Android Programming Basics - Simple Pizza Delivery ApplicationAndroid Programming Basics - Simple Pizza Delivery Application
Android Programming Basics - Simple Pizza Delivery Application
 
Video
VideoVideo
Video
 

Similar a DoctypeHTML5 (Hyderabad) Presentation on Multimedia

ARTDM 170, Week 16: Publishing
ARTDM 170, Week 16: PublishingARTDM 170, Week 16: Publishing
ARTDM 170, Week 16: PublishingGilbert Guerrero
 
Filling the HTML5 Gaps with Polyfills and Shims
Filling the HTML5 Gaps with Polyfills and ShimsFilling the HTML5 Gaps with Polyfills and Shims
Filling the HTML5 Gaps with Polyfills and Shimsreybango
 
Ie9 dev overview (300) beta
Ie9 dev overview (300) betaIe9 dev overview (300) beta
Ie9 dev overview (300) betaKirk Yamamoto
 
Accelerated Adoption: HTML5 and CSS3 for ASP.NET Developers
Accelerated Adoption: HTML5 and CSS3 for ASP.NET DevelopersAccelerated Adoption: HTML5 and CSS3 for ASP.NET Developers
Accelerated Adoption: HTML5 and CSS3 for ASP.NET DevelopersTodd Anglin
 
Mobile Web Video
Mobile Web VideoMobile Web Video
Mobile Web VideoSarah Allen
 
Lca2009 Video A11y
Lca2009 Video A11yLca2009 Video A11y
Lca2009 Video A11yguesta3d158
 
HTML5 Multimedia
HTML5 MultimediaHTML5 Multimedia
HTML5 MultimediaSiddhi
 
HTML5 e Css3 - 8 | WebMaster & WebDesigner
HTML5 e Css3 - 8 | WebMaster & WebDesignerHTML5 e Css3 - 8 | WebMaster & WebDesigner
HTML5 e Css3 - 8 | WebMaster & WebDesignerMatteo Magni
 
Even Faster Web Sites at jQuery Conference '09
Even Faster Web Sites at jQuery Conference '09Even Faster Web Sites at jQuery Conference '09
Even Faster Web Sites at jQuery Conference '09Steve Souders
 
Basics of html5, data_storage, css3
Basics of html5, data_storage, css3Basics of html5, data_storage, css3
Basics of html5, data_storage, css3Sreejith Nair
 
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...Patrick Lauke
 
Responsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerWalter Ebert
 
HTML5 Video Player - HTML5 Dev Conf 2012
HTML5 Video Player - HTML5 Dev Conf 2012HTML5 Video Player - HTML5 Dev Conf 2012
HTML5 Video Player - HTML5 Dev Conf 2012steveheffernan
 

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

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

Más de Parashuram N

React Native - Fabric review-2018-07-25
React Native - Fabric review-2018-07-25React Native - Fabric review-2018-07-25
React Native - Fabric review-2018-07-25Parashuram N
 
Chain React 2018 - The state of React Native
Chain React 2018 - The state of React NativeChain React 2018 - The state of React Native
Chain React 2018 - The state of React NativeParashuram N
 
IndexedDB - Querying and Performance
IndexedDB - Querying and PerformanceIndexedDB - Querying and Performance
IndexedDB - Querying and PerformanceParashuram N
 
Understanding Javascript Engines
Understanding Javascript Engines Understanding Javascript Engines
Understanding Javascript Engines Parashuram N
 
Indexed db - the store in the browser
Indexed db - the store in the browserIndexed db - the store in the browser
Indexed db - the store in the browserParashuram N
 

Más de Parashuram N (8)

React Native - Fabric review-2018-07-25
React Native - Fabric review-2018-07-25React Native - Fabric review-2018-07-25
React Native - Fabric review-2018-07-25
 
Chain React 2018 - The state of React Native
Chain React 2018 - The state of React NativeChain React 2018 - The state of React Native
Chain React 2018 - The state of React Native
 
IndexedDB - Querying and Performance
IndexedDB - Querying and PerformanceIndexedDB - Querying and Performance
IndexedDB - Querying and Performance
 
Client storage
Client storageClient storage
Client storage
 
Understanding Javascript Engines
Understanding Javascript Engines Understanding Javascript Engines
Understanding Javascript Engines
 
Indexed DB
Indexed DBIndexed DB
Indexed DB
 
Indexed db - the store in the browser
Indexed db - the store in the browserIndexed db - the store in the browser
Indexed db - the store in the browser
 
Snapp
SnappSnapp
Snapp
 

Último

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
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
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
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
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 

Último (20)

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
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
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
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
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 

DoctypeHTML5 (Hyderabad) Presentation on Multimedia

  • 1. HTML5 Multimedia Canvas, Audio, Video and more..
  • 2. Agenda Canvas Audio Video SVG WebGL
  • 3. whoami /r Parashuram Work for a company that makes browsers Web Enthusiast – spends time writing code Worked on IndexedDB standards and demos http://nparashuram.com http://blog.nparashuram.com @nparashuram
  • 5. Pixel based drawing surface 2d context The drawing API Lines and Curves Fille and Gradients Image data, security context GPU accelerated, possible trace-JITed JS code Works well with Videos, WebWorkers Canvas
  • 6. Canvas - Code <canvas id = “myCanvas” width = “100px” height = “100px” style = “width:200px;height:200px”> Canvasnot supported </canvas> <script> varelem= document.getElementById('myCanvas'); </script>
  • 7. Canvas - Code varcontext = 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);
  • 8. Canvas - Code context.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;
  • 9. Canvas - Demos http://canvaspaint.org/ http://nparashuram.com/seamcarving/index.html http://www.canvasdemos.com/type/games/ http://www.benjoffe.com/code/demos/canvascape/ http://caniuse.com/#search=canvas
  • 10. Video Native support to play video in browser Codecs (What data is stored) H.264 Theora VP8 Containers (How data is stored) MPEG4 Flash Ogg WebM Should be Served with correct MIME-TYPE Fallback mechanism
  • 11. 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 or Download <a href="movie.webm">here</a>. <video>
  • 12. Video - Code video.play(); video.pause() video.playbackRate = 0.8; video.addTrack(kind, label, language) onPlay, canplaythrough, progress, stalled, loadeddata, loadedmetadata, waiting,
  • 13. Video - Demos http://html5demos.com/video http://html5demos.com/two-videos http://sublimevideo.net/demo http://caniuse.com/video
  • 14. Audio Native support for sound Controls, API similar to Video Play audio files, control playback Audio Data API – work in progress
  • 15. Audio - Code <audiocontrols preload="auto" autobuffer>   <sourcesrc="elvis.mp3" /> <sourcesrc="elvis.ogg" />  <!-- now include flash fall back --> </audio>
  • 16. Audio - Demos http://www.jplayer.org/latest/demo-01/# http://tinyurl.com/4v8yu42 http://apm.ircam.fr/page/audio-tag/
  • 17. SVG XML Based Scalable Vector Graphics Embed inline in HTML Scalable Images Elements scriptable on DOM SVG in CSS as background images SVG Filters for Video
  • 18. 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>
  • 19. SVG - Demo http://svg-edit.googlecode.com/svn/branches/2.4/editor/svg-editor.html http://slides.html5rocks.com/#inline-svg http://caniuse.com/svg-html5
  • 20. WebGL 3D Graphics API Based on OpenGL ES 2.0 On Canvas element Learning WebGL Demos http://www.ambiera.com/coppercube/webgldemos.html http://www.khronos.org/webgl/wiki/Demo_Repository
  • 21. Demos http://www.craftymind.com/factory/html5video/CanvasVideo.html https://developer.mozilla.org/samples/video/chroma-key/index.xhtml http://people.mozilla.com/~prouget/demos/DynamicContentInjection/play.xhtml http://media.chikuyonok.ru/ambilight/ http://9elements.com/io/projects/html5/canvas/ http://www.canvasdemos.com/