SlideShare ist ein Scribd-Unternehmen logo
1 von 10
PRESENTATION
ON
Playing Video In HTML
PRESENTED BY :
DIVAM GOEL
Playing Videos in HTML
Example
<video width="320" height="240" >
<source src="movie.mp4" type="video/mp4" />
<object data="movie.mp4" width=“500"
height=“500">
</object>
<embed src="movie.mp4" width=“500" height=“500"
/>
</embed>
</video>
The <embed> Tag
The purpose of the <embed> tag is to embed multimedia elements in
HTML pages.
The following HTML fragment displays a Flash video embedded in a web
page:
Example
<embed src=“movie.mp4" height="200" width="200"/>
Problems
 The <embed> tag is unknown to HTML 4. Your page will not validate
correctly.
 If the browser does not support Flash, your video will not play.
 iPad and iPhone cannot display Flash videos.
 If you convert the video to another format, it will still not play in all
browsers.
CODING
<embed src="movie.mp4" width="640"
height="480" autostart="false" /></embed>
<embed src="movie1.mp4" width="640"
height="480" /></embed>
 Click here
Using The <object> Tag
The purpose of the <object> tag is to embed multimedia elements
in HTML pages.
The following HTML fragment displays a Flash video embedded in
a web page:
Example
<object data="intro.swf" height="200" width="200"/>
Problems:
 If the browser does not support Flash, your video will not play.
 iPad and iPhone cannot display Flash videos.
 If you convert the video to another format, it will still not play in all
browsers.
CODING
<object data="movie.mp4" width="320"
height="240">
</object>
Click Here
Using the <video> Tag
The <video> element is new in HTML 5.
The purpose of the <video> tag is to embed video elements in
HTML pages.
The following HTML fragment displays a video in ogg, mp4, or
webm format embedded in a web page:
Example
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
</video>
The Best HTML Solution
HTML 5 + <object> + <embed>
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
<object data="movie.mp4" width="320" height="240">
<embed src="movie.mp4" width="320" height="240">
</embed>
</object>
</video>
The example above uses 3 different video tags. The HTML
5 <video> element tries to play the video in mp4 formats.
If this fails, the code "falls back" to try the <object>
element. If this also fails, it "falls back" to the <embed>
element.
Using A Hyperlink
If a web page includes a hyperlink to a media file, most browsers
will use a "helper application" to play the file.
The following code fragment displays a link to a Flash video. If a
user clicks on the link, the browser will launch a helper application,
like Windows Media Player to play the AVI file:
Example
<a href=“movie.mp4">Play a video file</a>
Playing a YouTube Video in HTML
If you want to display a video in a web page, you can
upload the video to YouTube and insert HTML code to
display the video in your web page.
Example - YouTube Embedded
<embed
width="420" height="345"
src="http://www.youtube.com/v/XGSy3_Czz8k"
type="application/x-shockwave-flash">
</embed>

Weitere Àhnliche Inhalte

Was ist angesagt?

14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...
14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...
14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...Fadi Nicolas Zahhar
 
Advanced Plinkit Training External Content
Advanced Plinkit Training   External ContentAdvanced Plinkit Training   External Content
Advanced Plinkit Training External ContentTroy Brown
 
Rev Up Your Wordpress Site
Rev Up Your Wordpress SiteRev Up Your Wordpress Site
Rev Up Your Wordpress SiteQuentin Brown
 
WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop   WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop Ella J Designs
 
Embedding a youtube video into PowerPoint 2010
Embedding a youtube video into PowerPoint 2010Embedding a youtube video into PowerPoint 2010
Embedding a youtube video into PowerPoint 2010mrhennings
 
Blog tips
Blog tipsBlog tips
Blog tipsgiri529
 
Week 9 - Introduction to Child Themes
Week 9  - Introduction to Child ThemesWeek 9  - Introduction to Child Themes
Week 9 - Introduction to Child Themeshenri_makembe
 
Video SEO
Video SEOVideo SEO
Video SEOcerille
 
HTML5 audio & video
HTML5 audio & videoHTML5 audio & video
HTML5 audio & videoHamza Zahid
 
Week 11 - Hosting and Migration
Week 11 - Hosting and MigrationWeek 11 - Hosting and Migration
Week 11 - Hosting and Migrationhenri_makembe
 
SMX@adtech: Mobile, Local and Video Search — Drew Hubbard
SMX@adtech: Mobile, Local and Video Search — Drew HubbardSMX@adtech: Mobile, Local and Video Search — Drew Hubbard
SMX@adtech: Mobile, Local and Video Search — Drew Hubbardadtech_fan
 
Week 7 introduction to theme development
Week 7   introduction to theme developmentWeek 7   introduction to theme development
Week 7 introduction to theme developmenthenri_makembe
 
Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/
Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/
Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/Javkhlan Rentsendorj
 
SEO And Podcasting Presentation
SEO And Podcasting PresentationSEO And Podcasting Presentation
SEO And Podcasting PresentationJordan Kasteler
 
Internet Broadcasting
Internet BroadcastingInternet Broadcasting
Internet BroadcastingEdward Carr
 

Was ist angesagt? (19)

Html audio video
Html audio videoHtml audio video
Html audio video
 
14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...
14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...
14th Meetup WordPress Beirut - How WordPress helped us reach $200k in yearly ...
 
Advanced Plinkit Training External Content
Advanced Plinkit Training   External ContentAdvanced Plinkit Training   External Content
Advanced Plinkit Training External Content
 
Rev Up Your Wordpress Site
Rev Up Your Wordpress SiteRev Up Your Wordpress Site
Rev Up Your Wordpress Site
 
WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop   WordCamp RI 2015 - Beginner WordPress Workshop
WordCamp RI 2015 - Beginner WordPress Workshop
 
Embedding a youtube video into PowerPoint 2010
Embedding a youtube video into PowerPoint 2010Embedding a youtube video into PowerPoint 2010
Embedding a youtube video into PowerPoint 2010
 
Blog tips
Blog tipsBlog tips
Blog tips
 
Week 9 - Introduction to Child Themes
Week 9  - Introduction to Child ThemesWeek 9  - Introduction to Child Themes
Week 9 - Introduction to Child Themes
 
Video SEO
Video SEOVideo SEO
Video SEO
 
HTML5 audio & video
HTML5 audio & videoHTML5 audio & video
HTML5 audio & video
 
Wordpress plugin
Wordpress pluginWordpress plugin
Wordpress plugin
 
Week 11 - Hosting and Migration
Week 11 - Hosting and MigrationWeek 11 - Hosting and Migration
Week 11 - Hosting and Migration
 
Html media
Html mediaHtml media
Html media
 
Lesson 6 - Creation
Lesson 6 - CreationLesson 6 - Creation
Lesson 6 - Creation
 
SMX@adtech: Mobile, Local and Video Search — Drew Hubbard
SMX@adtech: Mobile, Local and Video Search — Drew HubbardSMX@adtech: Mobile, Local and Video Search — Drew Hubbard
SMX@adtech: Mobile, Local and Video Search — Drew Hubbard
 
Week 7 introduction to theme development
Week 7   introduction to theme developmentWeek 7   introduction to theme development
Week 7 introduction to theme development
 
Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/
Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/
Đ„Đ°ĐčĐ»Ń‚Ń‹Đœ ŃĐžŃŃ‚Đ”ĐŒĐžĐčĐœ ĐŸĐœĐŸĐČŃ‡Đ»ĐŸĐ» /Ń…ŃĐ»Đ±Đ°Ń€/
 
SEO And Podcasting Presentation
SEO And Podcasting PresentationSEO And Podcasting Presentation
SEO And Podcasting Presentation
 
Internet Broadcasting
Internet BroadcastingInternet Broadcasting
Internet Broadcasting
 

Andere mochten auch

The meta tag
The meta tagThe meta tag
The meta tagjanetconde
 
2009 Java One State Of The Open Web
2009 Java One State Of The Open Web2009 Java One State Of The Open Web
2009 Java One State Of The Open WebPatrick Chanezon
 
Google Developer Day: State of Ajax
Google Developer Day: State of AjaxGoogle Developer Day: State of Ajax
Google Developer Day: State of Ajaxdion
 
Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Zoe Gillenwater
 
CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)Zoe Gillenwater
 
Video in html 5
Video in html 5Video in html 5
Video in html 5Dorin Manoli
 
Making the HTML5 Video element interactive
Making the HTML5 Video element interactiveMaking the HTML5 Video element interactive
Making the HTML5 Video element interactiveCharles Hudson
 
[rwdsummit] Adaptive Images in Responsive Web Design
[rwdsummit] Adaptive Images in Responsive Web Design[rwdsummit] Adaptive Images in Responsive Web Design
[rwdsummit] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
Meta Tag Presentation
Meta Tag PresentationMeta Tag Presentation
Meta Tag Presentationlaurlaur123
 
Multimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioChristian Heilmann
 
Building an HTML5 Video Player
Building an HTML5 Video PlayerBuilding an HTML5 Video Player
Building an HTML5 Video PlayerJim Jeffers
 

Andere mochten auch (13)

What are meta tags
What are meta tagsWhat are meta tags
What are meta tags
 
The meta tag
The meta tagThe meta tag
The meta tag
 
2009 Java One State Of The Open Web
2009 Java One State Of The Open Web2009 Java One State Of The Open Web
2009 Java One State Of The Open Web
 
Google Developer Day: State of Ajax
Google Developer Day: State of AjaxGoogle Developer Day: State of Ajax
Google Developer Day: State of Ajax
 
Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)Using Flexbox Today (Frontier Conf 2016)
Using Flexbox Today (Frontier Conf 2016)
 
CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)
 
Video in html 5
Video in html 5Video in html 5
Video in html 5
 
Making the HTML5 Video element interactive
Making the HTML5 Video element interactiveMaking the HTML5 Video element interactive
Making the HTML5 Video element interactive
 
CSS3 Layout
CSS3 LayoutCSS3 Layout
CSS3 Layout
 
[rwdsummit] Adaptive Images in Responsive Web Design
[rwdsummit] Adaptive Images in Responsive Web Design[rwdsummit] Adaptive Images in Responsive Web Design
[rwdsummit] Adaptive Images in Responsive Web Design
 
Meta Tag Presentation
Meta Tag PresentationMeta Tag Presentation
Meta Tag Presentation
 
Multimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audio
 
Building an HTML5 Video Player
Building an HTML5 Video PlayerBuilding an HTML5 Video Player
Building an HTML5 Video Player
 

Ähnlich wie Playing videos in html

Vkmdp cologne
Vkmdp cologneVkmdp cologne
Vkmdp cologneDoug Sillars
 
HTML5 Video for WordPress
HTML5 Video for WordPressHTML5 Video for WordPress
HTML5 Video for WordPresssteveheffernan
 
Html5 - audio and video tags
Html5 - audio and video tagsHtml5 - audio and video tags
Html5 - audio and video tagsRae Allen
 
FSD JavaScript Part 11.pdf
FSD JavaScript Part 11.pdfFSD JavaScript Part 11.pdf
FSD JavaScript Part 11.pdfMUSHAMHARIKIRAN6737
 
HTML5 Video Right Now
HTML5 Video Right NowHTML5 Video Right Now
HTML5 Video Right NowCarlos Araya
 
Speak The Web: The HTML5 Experiments
Speak The Web: The HTML5 ExperimentsSpeak The Web: The HTML5 Experiments
Speak The Web: The HTML5 Experimentsguestd427df
 
Upgrade to HTML5 Video
Upgrade to HTML5 VideoUpgrade to HTML5 Video
Upgrade to HTML5 Videosteveheffernan
 
Responsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerWalter Ebert
 
Video Search Engine Optimization VSEO FTW!
Video Search Engine Optimization VSEO FTW!Video Search Engine Optimization VSEO FTW!
Video Search Engine Optimization VSEO FTW!Morgan Brown
 
HTML5 Multimedia Support
HTML5 Multimedia SupportHTML5 Multimedia Support
HTML5 Multimedia SupportHenry Osborne
 
Web Apps
Web AppsWeb Apps
Web AppsTim Wray
 
Using Established e-Marketplace
Using Established e-MarketplaceUsing Established e-Marketplace
Using Established e-Marketplacewebhostingguy
 
HTML5 APIs - The New Frontier
HTML5 APIs - The New FrontierHTML5 APIs - The New Frontier
HTML5 APIs - The New FrontierRobert Nyman
 
YouTube for Developers
YouTube for DevelopersYouTube for Developers
YouTube for Developerscityofroundrock
 
Hero Video Performance
Hero Video PerformanceHero Video Performance
Hero Video PerformanceWalter Ebert
 
Ursuline College Library Video Databases
Ursuline College Library Video Databases Ursuline College Library Video Databases
Ursuline College Library Video Databases Teresa Potter
 
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
 
#2 Html [know-how]
#2 Html [know-how]#2 Html [know-how]
#2 Html [know-how]Dalibor Gogic
 

Ähnlich wie Playing videos in html (20)

Vkmdp cologne
Vkmdp cologneVkmdp cologne
Vkmdp cologne
 
HTML5 Video for WordPress
HTML5 Video for WordPressHTML5 Video for WordPress
HTML5 Video for WordPress
 
Html5 - audio and video tags
Html5 - audio and video tagsHtml5 - audio and video tags
Html5 - audio and video tags
 
FSD JavaScript Part 11.pdf
FSD JavaScript Part 11.pdfFSD JavaScript Part 11.pdf
FSD JavaScript Part 11.pdf
 
HTML5 Video Right Now
HTML5 Video Right NowHTML5 Video Right Now
HTML5 Video Right Now
 
Speak The Web: The HTML5 Experiments
Speak The Web: The HTML5 ExperimentsSpeak The Web: The HTML5 Experiments
Speak The Web: The HTML5 Experiments
 
Upgrade to HTML5 Video
Upgrade to HTML5 VideoUpgrade to HTML5 Video
Upgrade to HTML5 Video
 
Responsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder weniger
 
Video Search Engine Optimization VSEO FTW!
Video Search Engine Optimization VSEO FTW!Video Search Engine Optimization VSEO FTW!
Video Search Engine Optimization VSEO FTW!
 
HTML5 Multimedia Support
HTML5 Multimedia SupportHTML5 Multimedia Support
HTML5 Multimedia Support
 
Web components
Web componentsWeb components
Web components
 
Web Apps
Web AppsWeb Apps
Web Apps
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
 
Using Established e-Marketplace
Using Established e-MarketplaceUsing Established e-Marketplace
Using Established e-Marketplace
 
HTML5 APIs - The New Frontier
HTML5 APIs - The New FrontierHTML5 APIs - The New Frontier
HTML5 APIs - The New Frontier
 
YouTube for Developers
YouTube for DevelopersYouTube for Developers
YouTube for Developers
 
Hero Video Performance
Hero Video PerformanceHero Video Performance
Hero Video Performance
 
Ursuline College Library Video Databases
Ursuline College Library Video Databases Ursuline College Library Video Databases
Ursuline College Library Video Databases
 
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
 
#2 Html [know-how]
#2 Html [know-how]#2 Html [know-how]
#2 Html [know-how]
 

Mehr von Divam Goyal

How Social media Effect Social life
How Social media Effect Social lifeHow Social media Effect Social life
How Social media Effect Social lifeDivam Goyal
 
Mars the red_planet
Mars the red_planetMars the red_planet
Mars the red_planetDivam Goyal
 
ISO Certificate
ISO CertificateISO Certificate
ISO CertificateDivam Goyal
 
Technology
TechnologyTechnology
TechnologyDivam Goyal
 
Piano and keyboard
Piano and keyboardPiano and keyboard
Piano and keyboardDivam Goyal
 
Blade server
Blade serverBlade server
Blade serverDivam Goyal
 
Steganography
SteganographySteganography
SteganographyDivam Goyal
 
Input device
Input deviceInput device
Input deviceDivam Goyal
 
New energy resources
New energy resourcesNew energy resources
New energy resourcesDivam Goyal
 
Web Browsers
Web BrowsersWeb Browsers
Web BrowsersDivam Goyal
 
Operating System
Operating SystemOperating System
Operating SystemDivam Goyal
 
Inflection
InflectionInflection
InflectionDivam Goyal
 
Smart cards
Smart cardsSmart cards
Smart cardsDivam Goyal
 
Steganography
SteganographySteganography
SteganographyDivam Goyal
 
Biometrics
Biometrics Biometrics
Biometrics Divam Goyal
 
Virtual Private Networks
Virtual Private NetworksVirtual Private Networks
Virtual Private NetworksDivam Goyal
 
Big bazaar
Big bazaarBig bazaar
Big bazaarDivam Goyal
 
Brain rules
Brain rulesBrain rules
Brain rulesDivam Goyal
 
Bhagat Singh
Bhagat SinghBhagat Singh
Bhagat SinghDivam Goyal
 

Mehr von Divam Goyal (20)

How Social media Effect Social life
How Social media Effect Social lifeHow Social media Effect Social life
How Social media Effect Social life
 
Mars the red_planet
Mars the red_planetMars the red_planet
Mars the red_planet
 
ISO Certificate
ISO CertificateISO Certificate
ISO Certificate
 
Technology
TechnologyTechnology
Technology
 
Piano and keyboard
Piano and keyboardPiano and keyboard
Piano and keyboard
 
Blade server
Blade serverBlade server
Blade server
 
SOPA
SOPASOPA
SOPA
 
Steganography
SteganographySteganography
Steganography
 
Input device
Input deviceInput device
Input device
 
New energy resources
New energy resourcesNew energy resources
New energy resources
 
Web Browsers
Web BrowsersWeb Browsers
Web Browsers
 
Operating System
Operating SystemOperating System
Operating System
 
Inflection
InflectionInflection
Inflection
 
Smart cards
Smart cardsSmart cards
Smart cards
 
Steganography
SteganographySteganography
Steganography
 
Biometrics
Biometrics Biometrics
Biometrics
 
Virtual Private Networks
Virtual Private NetworksVirtual Private Networks
Virtual Private Networks
 
Big bazaar
Big bazaarBig bazaar
Big bazaar
 
Brain rules
Brain rulesBrain rules
Brain rules
 
Bhagat Singh
Bhagat SinghBhagat Singh
Bhagat Singh
 

KĂŒrzlich hochgeladen

Low Rate Call Girls In Budh Vihar, Call Us :-9711106444
Low Rate Call Girls In Budh Vihar, Call Us :-9711106444Low Rate Call Girls In Budh Vihar, Call Us :-9711106444
Low Rate Call Girls In Budh Vihar, Call Us :-9711106444CallGirlsInSouthDelh1
 
Statement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfileStatement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfilef4ssvxpz62
 
Taken Pilot Episode Story pitch Document
Taken Pilot Episode Story pitch DocumentTaken Pilot Episode Story pitch Document
Taken Pilot Episode Story pitch Documentf4ssvxpz62
 
North Avenue Call Girls Services, Hire Now for Full Fun
North Avenue Call Girls Services, Hire Now for Full FunNorth Avenue Call Girls Services, Hire Now for Full Fun
North Avenue Call Girls Services, Hire Now for Full FunKomal Khan
 
NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...
NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...
NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...Amil Baba Dawood bangali
 
QUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzers
QUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzersQUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzers
QUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzersSJU Quizzers
 
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170Sonam Pathan
 
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort ServicesHi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort ServicesApsara Of India
 
Call Girls Near The Corus Hotel New Delhi 9873777170
Call Girls Near The Corus Hotel New Delhi 9873777170Call Girls Near The Corus Hotel New Delhi 9873777170
Call Girls Near The Corus Hotel New Delhi 9873777170Sonam Pathan
 
Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...
Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...
Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...Amil Baba Company
 
Call Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full Night
Call Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full NightCall Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full Night
Call Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full Nightssuser7cb4ff
 
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts ServiceVIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts ServiceApsara Of India
 
Call Girls Near Delhi Pride Hotel New Delhi 9873777170
Call Girls Near Delhi Pride Hotel New Delhi 9873777170Call Girls Near Delhi Pride Hotel New Delhi 9873777170
Call Girls Near Delhi Pride Hotel New Delhi 9873777170Sonam Pathan
 
NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...
NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...
NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...Amil baba
 
Vip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts Service
Vip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts ServiceVip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts Service
Vip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts ServiceApsara Of India
 
Call Girl Price Andheri WhatsApp:+91-9833363713
Call Girl Price Andheri WhatsApp:+91-9833363713Call Girl Price Andheri WhatsApp:+91-9833363713
Call Girl Price Andheri WhatsApp:+91-9833363713Sonam Pathan
 
掟版1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻ
掟版1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻćŽŸç‰ˆ1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻ
掟版1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻgwhohjj
 
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCRdollysharma2066
 

KĂŒrzlich hochgeladen (20)

Low Rate Call Girls In Budh Vihar, Call Us :-9711106444
Low Rate Call Girls In Budh Vihar, Call Us :-9711106444Low Rate Call Girls In Budh Vihar, Call Us :-9711106444
Low Rate Call Girls In Budh Vihar, Call Us :-9711106444
 
Statement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfileStatement Of Intent - - Copy.documentfile
Statement Of Intent - - Copy.documentfile
 
Taken Pilot Episode Story pitch Document
Taken Pilot Episode Story pitch DocumentTaken Pilot Episode Story pitch Document
Taken Pilot Episode Story pitch Document
 
North Avenue Call Girls Services, Hire Now for Full Fun
North Avenue Call Girls Services, Hire Now for Full FunNorth Avenue Call Girls Services, Hire Now for Full Fun
North Avenue Call Girls Services, Hire Now for Full Fun
 
NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...
NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...
NO1 Certified Black magic specialist,Expert in Pakistan Amil Baba kala ilam E...
 
Call Girls Koti 7001305949 all area service COD available Any Time
Call Girls Koti 7001305949 all area service COD available Any TimeCall Girls Koti 7001305949 all area service COD available Any Time
Call Girls Koti 7001305949 all area service COD available Any Time
 
QUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzers
QUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzersQUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzers
QUIZ BOLLYWOOD ( weekly quiz ) - SJU quizzers
 
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
Call Girls Near Taurus Sarovar Portico Hotel New Delhi 9873777170
 
young call girls in Hari Nagar,🔝 9953056974 🔝 escort Service
young call girls in Hari Nagar,🔝 9953056974 🔝 escort Serviceyoung call girls in Hari Nagar,🔝 9953056974 🔝 escort Service
young call girls in Hari Nagar,🔝 9953056974 🔝 escort Service
 
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort ServicesHi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
Hi Class Call Girls In Goa 7028418221 Call Girls In Anjuna Beach Escort Services
 
Call Girls Near The Corus Hotel New Delhi 9873777170
Call Girls Near The Corus Hotel New Delhi 9873777170Call Girls Near The Corus Hotel New Delhi 9873777170
Call Girls Near The Corus Hotel New Delhi 9873777170
 
Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...
Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...
Amil baba in Pakistan amil baba Karachi amil baba in pakistan amil baba in la...
 
Call Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full Night
Call Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full NightCall Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full Night
Call Girls Prahlad Nagar 9920738301 Ridhima Hire Me Full Night
 
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts ServiceVIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
VIP Call Girls In Goa 7028418221 Call Girls In Baga Beach Escorts Service
 
Call Girls Near Delhi Pride Hotel New Delhi 9873777170
Call Girls Near Delhi Pride Hotel New Delhi 9873777170Call Girls Near Delhi Pride Hotel New Delhi 9873777170
Call Girls Near Delhi Pride Hotel New Delhi 9873777170
 
NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...
NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...
NO1 Certified Black magic/kala jadu,manpasand shadi in lahore,karachi rawalpi...
 
Vip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts Service
Vip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts ServiceVip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts Service
Vip Udaipur Call Girls 9602870969 Dabok Airport Udaipur Escorts Service
 
Call Girl Price Andheri WhatsApp:+91-9833363713
Call Girl Price Andheri WhatsApp:+91-9833363713Call Girl Price Andheri WhatsApp:+91-9833363713
Call Girl Price Andheri WhatsApp:+91-9833363713
 
掟版1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻ
掟版1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻćŽŸç‰ˆ1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻ
掟版1:1ć€ćˆ»ćĄć°”ćŠ é‡Œć€§ć­ŠæŻ•äžšèŻUCæŻ•äžšèŻç•™äżĄć­ŠćŽ†èź€èŻ
 
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
8377087607 Full Enjoy @24/7 Call Girls in Patel Nagar Delhi NCR
 

Playing videos in html

  • 1. PRESENTATION ON Playing Video In HTML PRESENTED BY : DIVAM GOEL
  • 2. Playing Videos in HTML Example <video width="320" height="240" > <source src="movie.mp4" type="video/mp4" /> <object data="movie.mp4" width=“500" height=“500"> </object> <embed src="movie.mp4" width=“500" height=“500" /> </embed> </video>
  • 3. The <embed> Tag The purpose of the <embed> tag is to embed multimedia elements in HTML pages. The following HTML fragment displays a Flash video embedded in a web page: Example <embed src=“movie.mp4" height="200" width="200"/> Problems  The <embed> tag is unknown to HTML 4. Your page will not validate correctly.  If the browser does not support Flash, your video will not play.  iPad and iPhone cannot display Flash videos.  If you convert the video to another format, it will still not play in all browsers.
  • 4. CODING <embed src="movie.mp4" width="640" height="480" autostart="false" /></embed> <embed src="movie1.mp4" width="640" height="480" /></embed>  Click here
  • 5. Using The <object> Tag The purpose of the <object> tag is to embed multimedia elements in HTML pages. The following HTML fragment displays a Flash video embedded in a web page: Example <object data="intro.swf" height="200" width="200"/> Problems:  If the browser does not support Flash, your video will not play.  iPad and iPhone cannot display Flash videos.  If you convert the video to another format, it will still not play in all browsers.
  • 7. Using the <video> Tag The <video> element is new in HTML 5. The purpose of the <video> tag is to embed video elements in HTML pages. The following HTML fragment displays a video in ogg, mp4, or webm format embedded in a web page: Example <video width="320" height="240" controls="controls"> <source src="movie.mp4" type="video/mp4" /> </video>
  • 8. The Best HTML Solution HTML 5 + <object> + <embed> <video width="320" height="240" controls="controls"> <source src="movie.mp4" type="video/mp4" /> <object data="movie.mp4" width="320" height="240"> <embed src="movie.mp4" width="320" height="240"> </embed> </object> </video> The example above uses 3 different video tags. The HTML 5 <video> element tries to play the video in mp4 formats. If this fails, the code "falls back" to try the <object> element. If this also fails, it "falls back" to the <embed> element.
  • 9. Using A Hyperlink If a web page includes a hyperlink to a media file, most browsers will use a "helper application" to play the file. The following code fragment displays a link to a Flash video. If a user clicks on the link, the browser will launch a helper application, like Windows Media Player to play the AVI file: Example <a href=“movie.mp4">Play a video file</a>
  • 10. Playing a YouTube Video in HTML If you want to display a video in a web page, you can upload the video to YouTube and insert HTML code to display the video in your web page. Example - YouTube Embedded <embed width="420" height="345" src="http://www.youtube.com/v/XGSy3_Czz8k" type="application/x-shockwave-flash"> </embed>