Home > Article > Web Front-end > How to solve the problem that MP4 videos cannot be played using the video tag in H5 web pages
Why the recorded MP4 video can be played locally but cannot be played normally using the video multimedia playback tag of html5, with only a progress bar and no image displayed? In fact, it is a video encoding problem. Although the formats are all MP4, HTML only supports the H.264 encoding format. I have no choice but to re-convert the encoding.
In order to avoid everyone encountering the same problem, I will give you some knowledge about HTML5 about the <video>
tag. :When we use the html4 protocol to build a website, if we want to play a video on the web page, we need to use flash to play it, or use an embedded page to achieve it. For html5, these two methods are very inconvenient. Because a cool <video>
appeared. The function of this tag is to allow multimedia files to be played easily on web pages. Playing a video in
Although there is a lot less code, the functions are very sound. This is one of the highlights of html5!About the video formats and encodings supported by the <video> tag:
We can write the code like this:
In this way, in a browser that does not support html5, it will prompt "Your browser does not support playing this video!"!
The video element allows multiple source elements. The source element can link different video files. The browser will use the first recognized format, so we only need to prepare a few more videos in different formats.
Usage:
##controls: The occurrence of this attribute means that controls are displayed to the user, such as play buttons, etc. Usage: controls="controls"
height: Set the height width: Set the width
loop: Automatic replay, usage: loop="loop"
preload :The video is loaded and prepared for playback when the page is loaded. Usage: preload="auto" - load the entire video when the page loads; preload="meta" - only load metadata after the page loads; preload="none" - Video is not loaded when the page loads.
Note: If autoplay is used, preload is ignored#src: URL to play the video
About< I will introduce the video> tag here. I believe everyone has a deep understanding of this tag!
]
The above is the detailed content of How to solve the problem that MP4 videos cannot be played using the video tag in H5 web pages. For more information, please follow other related articles on the PHP Chinese website!