Videos can be played in HTML by many different methods.
Displaying videos in HTML is not easy!
You must add a lot of tricks to make sure your video will play in all browsers (Internet Explorer, Chrome, Firefox, Safari, Opera) and on all hardware (PC, Mac , iPad, iPhone).
In this chapter W3Schools summarizes the problems and the solutions.
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:
Problems
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:
Problems:
The HTML5 <video> tag defines a video or movie.
The <video> element works in all modern browsers.
The following HTML fragment displays a video in OGG, MP4, or WEBM format:
Problems:
The example below uses 4 different video formats. The HTML 5 <video> element tries to play the video either in MP4, OGG, or WEBM format. If this fails, the code "falls back" to try the <object> element. If this also fails, it "falls back" to the <embed> element:
Problems:
The easiest way to display videos in HTML is to use YouTube (see next chapter)!
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 to play the file:
When a video is included in a web page it is called inline video.
If you plan to use inline videos, be aware that many people find it annoying. Also note that some users might have turned off the inline video option in their browser.
Our best advice is to include inline videos only in pages where the user expects to see a video. An example of this is a page which opens after the user has clicked on a link to see the video.
New : New tags in HTML5.
| Tag | Description |
|---|---|
| <embed> | Defines an embedded object |
| <object> | Defines an embedded object |
| <param> | Defines a parameter for an object |
| <audio>New | Defines sound content |
| <video>New | Defines a video or movie |
| <source>New | Defines multiple media resources for media elements (<video> and <audio>) |
| <track>New | Defines text tracks for media elements (<video> and <audio>) |
Your message has been sent to W3Schools.