SlideShare a Scribd company logo
1 of 21
HTML 5
MEDIA ELEMENTS
Call US: +91-9915337448 Email Us: info@webtechlearning.com
HTML Multimedia
• Multimedia on the web, is sound, music, videos, movies, and
animations.
• Multimedia comes in many different formats. It can be almost
anything you can hear or see.
• Examples: Pictures, music, sound, videos, records, films,
animations, and more.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Multimedia Formats
• Multimedia elements (like sounds or videos) are stored in
media files.
• Multimedia files also have their own formats and different
extensions like:
• .swf, .wav, .mp3, .mp4, .mpg, .wmv, and .avi.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
HTML5 Video
• Before HTML5, there was no standard for showing videos on a
web page.
• Before HTML5, videos could only be played with a plug-in (like
flash).
• The HTML5 <video> element specifies a standard way to
embed a video in a web page.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
The HTML <video> Element
• To show a video in HTML, use the <video> element:
Call US: +91-9915337448 Email Us: info@webtechlearning.com
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
</video>
How it Works
• The controls attribute adds video controls, like play, pause,
and volume.
• It is a good idea to always include width and height attributes.
• Multiple <source> elements can link to different video files.
The browser will use the first recognized format.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
HTML <video> Autoplay
• To start a video automatically use the autoplay attribute:
Call US: +91-9915337448 Email Us: info@webtechlearning.com
<video width="320" height="240" autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
HTML5 Audio
• HTML5 provides a standard for playing audio files.
• Before HTML5, there was no standard for playing audio files
on a web page.
• Before HTML5, audio files could only be played with a plug-in
(like flash).
• The HTML5 <audio> element specifies a standard way to
embed audio in a web page.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
The HTML <audio> Element
• To play an audio file in HTML, use the <audio> element:
Call US: +91-9915337448 Email Us: info@webtechlearning.com
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
HTML Audio - How It Works
• The controls attribute adds audio controls, like play, pause,
and volume.
• Multiple <source> elements can link to different audio files.
The browser will use the first recognized format.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
HTML Plug-ins
• The purpose of a plug-in, is to extend the functionality of the
HTML browser.
• Helper applications are also called plug-ins.
• Plug-ins can be added to web pages with the <object> tag or
the <embed> tag.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
The <object> Element
• The <object> element is supported by all browsers.
• The <object> element defines an embedded object within an
HTML document.
• It is used to embed plug-ins (like Java applets, PDF readers,
Flash Players) in web pages.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
The <object> Element
• For Examples
Call US: +91-9915337448 Email Us: info@webtechlearning.com
<object width="400" height="50" data="bookmark.swf"></object>
<object width="100%" height="500px" data="snippet.html"></object>
<object data="audi.jpeg"></object>
The <embed> Element
• The <embed> element is supported in all major browsers.
• The <embed> element also defines an embedded object
within an HTML document.
• Web browsers have supported the <embed> element for a
long time. However, it has not been a part of the HTML
specification before HTML5.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
The <embed> Element
• For Examples
Call US: +91-9915337448 Email Us: info@webtechlearning.com
<embed width="400" height="50" src="bookmark.swf">
<embed width="100%" height="500px" src="snippet.html">
<embed src="audi.jpeg">
HTML YouTube Videos
• The easiest way to play videos in HTML, is to use YouTube.
• Different versions of different browsers support different
video formats.
• Converting videos to different format can be difficult and time
consuming.
• An easier solution might be to let YouTube play the videos in
your web page.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Playing a YouTube Video in HTML
To play your video on a web page, do the following:
• Upload the video to YouTube
• Take a note of the video id
• Define an <iframe> element in your web page
• Let the src attribute point to the video URL
• Use the width and height attributes to specify the dimension of the player
• Add any other parameters to the URL
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Using iFrame (the recommended
method)
• For Example
Call US: +91-9915337448 Email Us: info@webtechlearning.com
<iframe width="420" height="315"
src="http://www.youtube.com/embed/XGSy3_Czz8k?autoplay=1">
</iframe>
YouTube Parameters
Autoplay
• Value 0 (default): The video will not play automatically when the player loads.
• Value 1: The video will play automatically when the player loads.
Controls
• Value 0: Player controls does not display. The video loads immediately.
• Value 1 (default): Player controls display. The video loads immediately.
• Value 2: Player controls display, but the video does not load before the user
initiates playback.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
YouTube Parameters
Loop
• Value 0 (default): The video will play only once.
• Value 1: The video will loop (forever).
Playlist
• A comma separated list of videos to play (in addition to the original URL).
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Html media

More Related Content

What's hot

Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html NotesNextGenr
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html BasicsMcSoftsis
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Chris Poteet
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation Salman Memon
 
Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tagsSara Corpuz
 
JavaScript - Chapter 11 - Events
 JavaScript - Chapter 11 - Events  JavaScript - Chapter 11 - Events
JavaScript - Chapter 11 - Events WebStackAcademy
 
Div tag presentation
Div tag presentationDiv tag presentation
Div tag presentationalyssa_lum11
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basicsEliran Eliassy
 
HTML 5: Audio And Video
HTML 5: Audio And VideoHTML 5: Audio And Video
HTML 5: Audio And VideoReema
 
CSS Transitions, Transforms, Animations
CSS Transitions, Transforms, Animations CSS Transitions, Transforms, Animations
CSS Transitions, Transforms, Animations Rob LaPlaca
 
Lesson 1: Introduction to HTML
Lesson 1: Introduction to HTMLLesson 1: Introduction to HTML
Lesson 1: Introduction to HTMLOlivia Moran
 
Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTMLAarti P
 
An introduction to bootstrap
An introduction to bootstrapAn introduction to bootstrap
An introduction to bootstrapMind IT Systems
 

What's hot (20)

Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
Html forms
Html formsHtml forms
Html forms
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
Introduction to XHTML
Introduction to XHTMLIntroduction to XHTML
Introduction to XHTML
 
Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tags
 
LINKING IN HTML
LINKING IN HTMLLINKING IN HTML
LINKING IN HTML
 
JavaScript - Chapter 11 - Events
 JavaScript - Chapter 11 - Events  JavaScript - Chapter 11 - Events
JavaScript - Chapter 11 - Events
 
Div tag presentation
Div tag presentationDiv tag presentation
Div tag presentation
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
HTML 5: Audio And Video
HTML 5: Audio And VideoHTML 5: Audio And Video
HTML 5: Audio And Video
 
Html coding
Html codingHtml coding
Html coding
 
CSS Transitions, Transforms, Animations
CSS Transitions, Transforms, Animations CSS Transitions, Transforms, Animations
CSS Transitions, Transforms, Animations
 
Lesson 1: Introduction to HTML
Lesson 1: Introduction to HTMLLesson 1: Introduction to HTML
Lesson 1: Introduction to HTML
 
CSS
CSSCSS
CSS
 
Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
 
Html frames
Html framesHtml frames
Html frames
 
An introduction to bootstrap
An introduction to bootstrapAn introduction to bootstrap
An introduction to bootstrap
 

Similar to Html media

Lecture9 web design and development
Lecture9 web design and developmentLecture9 web design and development
Lecture9 web design and developmentRafi Haidari
 
HTML5 video & Amazon elastic transcoder - FCIP August 2014
HTML5 video & Amazon elastic transcoder - FCIP August 2014HTML5 video & Amazon elastic transcoder - FCIP August 2014
HTML5 video & Amazon elastic transcoder - FCIP August 2014RZasadzinski
 
HTML Media: Where We Are & Where We Need To Go
HTML Media: Where We Are & Where We Need To GoHTML Media: Where We Are & Where We Need To Go
HTML Media: Where We Are & Where We Need To GoNigel Parker
 
Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3Saurabh Kheni
 
Wordcamp Raleigh Multimedia: Photos, Video, and Podcasting
Wordcamp Raleigh Multimedia: Photos, Video, and PodcastingWordcamp Raleigh Multimedia: Photos, Video, and Podcasting
Wordcamp Raleigh Multimedia: Photos, Video, and PodcastingDigital Strategy Works LLC
 
HTML Multimedia.pptx
HTML Multimedia.pptxHTML Multimedia.pptx
HTML Multimedia.pptxssuser08ea44
 
Video and Audio Streaming
Video and Audio StreamingVideo and Audio Streaming
Video and Audio StreamingKarthick Kumar
 
Basics of HTML5 for Phonegap
Basics of HTML5 for PhonegapBasics of HTML5 for Phonegap
Basics of HTML5 for PhonegapRakesh Jha
 
Introduction of html5
Introduction of html5Introduction of html5
Introduction of html5kokila T
 
[edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet!
[edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet![edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet!
[edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet!Christopher Schmitt
 
Designing web pages html videos
Designing web pages html videosDesigning web pages html videos
Designing web pages html videosJesus Obenita Jr.
 
Html5 shubelal
Html5 shubelalHtml5 shubelal
Html5 shubelalShub
 
The Future of Video Player Accessibility
The Future of Video Player AccessibilityThe Future of Video Player Accessibility
The Future of Video Player Accessibility3Play Media
 
HTML5 Presentation
HTML5 PresentationHTML5 Presentation
HTML5 Presentationvs4vijay
 

Similar to Html media (20)

Lecture9 web design and development
Lecture9 web design and developmentLecture9 web design and development
Lecture9 web design and development
 
Html multimedia
Html multimediaHtml multimedia
Html multimedia
 
HTML5
HTML5 HTML5
HTML5
 
HTML5 video & Amazon elastic transcoder - FCIP August 2014
HTML5 video & Amazon elastic transcoder - FCIP August 2014HTML5 video & Amazon elastic transcoder - FCIP August 2014
HTML5 video & Amazon elastic transcoder - FCIP August 2014
 
HTML Media: Where We Are & Where We Need To Go
HTML Media: Where We Are & Where We Need To GoHTML Media: Where We Are & Where We Need To Go
HTML Media: Where We Are & Where We Need To Go
 
Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3
 
Video in html 5
Video in html 5Video in html 5
Video in html 5
 
Wordcamp Raleigh Multimedia: Photos, Video, and Podcasting
Wordcamp Raleigh Multimedia: Photos, Video, and PodcastingWordcamp Raleigh Multimedia: Photos, Video, and Podcasting
Wordcamp Raleigh Multimedia: Photos, Video, and Podcasting
 
HTML Multimedia.pptx
HTML Multimedia.pptxHTML Multimedia.pptx
HTML Multimedia.pptx
 
Looking into HTML5 + CSS3
Looking into HTML5 + CSS3Looking into HTML5 + CSS3
Looking into HTML5 + CSS3
 
Video and Audio Streaming
Video and Audio StreamingVideo and Audio Streaming
Video and Audio Streaming
 
Basics of HTML5 for Phonegap
Basics of HTML5 for PhonegapBasics of HTML5 for Phonegap
Basics of HTML5 for Phonegap
 
Introduction of html5
Introduction of html5Introduction of html5
Introduction of html5
 
[edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet!
[edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet![edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet!
[edUiconf] HTML5 does all that… and i can haz cheeseburger? You bet!
 
HTML Media
HTML MediaHTML Media
HTML Media
 
Html5video
Html5videoHtml5video
Html5video
 
Designing web pages html videos
Designing web pages html videosDesigning web pages html videos
Designing web pages html videos
 
Html5 shubelal
Html5 shubelalHtml5 shubelal
Html5 shubelal
 
The Future of Video Player Accessibility
The Future of Video Player AccessibilityThe Future of Video Player Accessibility
The Future of Video Player Accessibility
 
HTML5 Presentation
HTML5 PresentationHTML5 Presentation
HTML5 Presentation
 

More from Webtech Learning

More from Webtech Learning (20)

Benefits of Digital Marketing
Benefits of Digital MarketingBenefits of Digital Marketing
Benefits of Digital Marketing
 
Digital Marketing Benefits
Digital Marketing  BenefitsDigital Marketing  Benefits
Digital Marketing Benefits
 
Future Scope of Digital Marketing in India
Future Scope of Digital Marketing in IndiaFuture Scope of Digital Marketing in India
Future Scope of Digital Marketing in India
 
Css types internal, external and inline (1)
Css types internal, external and inline (1)Css types internal, external and inline (1)
Css types internal, external and inline (1)
 
Bootstrap webtech presentation - new
Bootstrap   webtech presentation - newBootstrap   webtech presentation - new
Bootstrap webtech presentation - new
 
Css presentation
Css presentationCss presentation
Css presentation
 
Client side &amp; Server side Scripting
Client side &amp; Server side Scripting Client side &amp; Server side Scripting
Client side &amp; Server side Scripting
 
Software testing & Quality Assurance
Software testing & Quality Assurance Software testing & Quality Assurance
Software testing & Quality Assurance
 
Shadows Effects in CSS
Shadows Effects in CSSShadows Effects in CSS
Shadows Effects in CSS
 
Bs Typography
Bs TypographyBs Typography
Bs Typography
 
Bootstrap grids
Bootstrap gridsBootstrap grids
Bootstrap grids
 
Html formatting
Html formattingHtml formatting
Html formatting
 
Css box-sizing
Css box-sizingCss box-sizing
Css box-sizing
 
Css position
Css positionCss position
Css position
 
Css margins
Css marginsCss margins
Css margins
 
Css box-model
Css box-modelCss box-model
Css box-model
 
Css Display Property
Css Display PropertyCss Display Property
Css Display Property
 
Css floats
Css floatsCss floats
Css floats
 
Html5 semantics
Html5 semanticsHtml5 semantics
Html5 semantics
 
Css pseudo-classes
Css pseudo-classesCss pseudo-classes
Css pseudo-classes
 

Recently uploaded

Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneLukeKholes
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...nirzagarg
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfParomita Roy
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...Delhi Call girls
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...Delhi Call girls
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...amitlee9823
 
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...poojakaurpk09
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Call Girls in Nagpur High Profile
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxTusharBahuguna2
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...Call Girls in Nagpur High Profile
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfamanda2495
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyNitya salvi
 

Recently uploaded (20)

Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
 
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptx
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
 
B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 

Html media

  • 1. HTML 5 MEDIA ELEMENTS Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 2. HTML Multimedia • Multimedia on the web, is sound, music, videos, movies, and animations. • Multimedia comes in many different formats. It can be almost anything you can hear or see. • Examples: Pictures, music, sound, videos, records, films, animations, and more. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 3. Multimedia Formats • Multimedia elements (like sounds or videos) are stored in media files. • Multimedia files also have their own formats and different extensions like: • .swf, .wav, .mp3, .mp4, .mpg, .wmv, and .avi. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 4. HTML5 Video • Before HTML5, there was no standard for showing videos on a web page. • Before HTML5, videos could only be played with a plug-in (like flash). • The HTML5 <video> element specifies a standard way to embed a video in a web page. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 5. The HTML <video> Element • To show a video in HTML, use the <video> element: Call US: +91-9915337448 Email Us: info@webtechlearning.com <video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> </video>
  • 6. How it Works • The controls attribute adds video controls, like play, pause, and volume. • It is a good idea to always include width and height attributes. • Multiple <source> elements can link to different video files. The browser will use the first recognized format. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 7. HTML <video> Autoplay • To start a video automatically use the autoplay attribute: Call US: +91-9915337448 Email Us: info@webtechlearning.com <video width="320" height="240" autoplay> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> Your browser does not support the video tag. </video>
  • 8. HTML5 Audio • HTML5 provides a standard for playing audio files. • Before HTML5, there was no standard for playing audio files on a web page. • Before HTML5, audio files could only be played with a plug-in (like flash). • The HTML5 <audio> element specifies a standard way to embed audio in a web page. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 9. The HTML <audio> Element • To play an audio file in HTML, use the <audio> element: Call US: +91-9915337448 Email Us: info@webtechlearning.com <audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio>
  • 10. HTML Audio - How It Works • The controls attribute adds audio controls, like play, pause, and volume. • Multiple <source> elements can link to different audio files. The browser will use the first recognized format. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 11. HTML Plug-ins • The purpose of a plug-in, is to extend the functionality of the HTML browser. • Helper applications are also called plug-ins. • Plug-ins can be added to web pages with the <object> tag or the <embed> tag. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 12. The <object> Element • The <object> element is supported by all browsers. • The <object> element defines an embedded object within an HTML document. • It is used to embed plug-ins (like Java applets, PDF readers, Flash Players) in web pages. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 13. The <object> Element • For Examples Call US: +91-9915337448 Email Us: info@webtechlearning.com <object width="400" height="50" data="bookmark.swf"></object> <object width="100%" height="500px" data="snippet.html"></object> <object data="audi.jpeg"></object>
  • 14. The <embed> Element • The <embed> element is supported in all major browsers. • The <embed> element also defines an embedded object within an HTML document. • Web browsers have supported the <embed> element for a long time. However, it has not been a part of the HTML specification before HTML5. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 15. The <embed> Element • For Examples Call US: +91-9915337448 Email Us: info@webtechlearning.com <embed width="400" height="50" src="bookmark.swf"> <embed width="100%" height="500px" src="snippet.html"> <embed src="audi.jpeg">
  • 16. HTML YouTube Videos • The easiest way to play videos in HTML, is to use YouTube. • Different versions of different browsers support different video formats. • Converting videos to different format can be difficult and time consuming. • An easier solution might be to let YouTube play the videos in your web page. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 17. Playing a YouTube Video in HTML To play your video on a web page, do the following: • Upload the video to YouTube • Take a note of the video id • Define an <iframe> element in your web page • Let the src attribute point to the video URL • Use the width and height attributes to specify the dimension of the player • Add any other parameters to the URL Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 18. Using iFrame (the recommended method) • For Example Call US: +91-9915337448 Email Us: info@webtechlearning.com <iframe width="420" height="315" src="http://www.youtube.com/embed/XGSy3_Czz8k?autoplay=1"> </iframe>
  • 19. YouTube Parameters Autoplay • Value 0 (default): The video will not play automatically when the player loads. • Value 1: The video will play automatically when the player loads. Controls • Value 0: Player controls does not display. The video loads immediately. • Value 1 (default): Player controls display. The video loads immediately. • Value 2: Player controls display, but the video does not load before the user initiates playback. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 20. YouTube Parameters Loop • Value 0 (default): The video will play only once. • Value 1: The video will loop (forever). Playlist • A comma separated list of videos to play (in addition to the original URL). Call US: +91-9915337448 Email Us: info@webtechlearning.com