Why can't the MP4 format video embedded in HTML be played?

Why can't the MP4 format video embedded in HTML be played?
The following code is in my test.html. The video can be played when accessed through an absolute path such as c:\test.html, but it cannot be played when accessed through: http://localhost/test.html. It only loads a player on the page, and none of the buttons work. I don't know where the problem is, but I guess it has nothing to do with the code. The code is as follows:

Copy code
The code is as follows:

<object width="300" height="300" type="video/x-ms-asf" url="http://localhost/younao01.mp4" data="younao01.mp4" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="url" value="younao01.mp4">
<param name="filename" value="younao01.mp4">
<param name="autostart" value="1">
<param name="uiMode" value="full" />
<param name="autosize" value="1">
<param name="playcount" value="1">
<embed type="application/x-mplayer2" src="http://localhost/younao01.mp4" width="100%" height="100%" autostart="true" showcontrols="true" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"></embed>
</object>

After checking, I found that it really had nothing to do with the code. The specific reason was that there was no MP4 mapping in IIS. The solution is as follows:

Win7 :
Control Panel – View as (upper right corner) – Small icons – Administrative Tools – Internet Information Services (IIS) Manager – Click your website name on the left – Double-click “MIME Type” on the right – Click Add on the far right – Fill in .mp4 as the file extension, and Video/mp4 or application/octet-stream as the MIME type. All are OK. That’s it!

<<:  Web Theory: Don't make me think Reading Notes

>>:  Detailed explanation of the reasons why MySQL connections are hung

Recommend

Common JavaScript memory errors and solutions

Table of contents 1. Timer monitoring 2. Event mo...

Docker implements container port binding local port

Today, I encountered a small problem that after s...

Solve the matching problem in CSS

Problem Description As we all know, when writing ...

Detailed explanation of overflow:auto usage

Before starting the main text, I will introduce s...

Use and optimization of MySQL COUNT function

Table of contents What does the COUNT function do...

How to install and modify the initial password of mysql5.7.18

For Centos installation of MySQL, please refer to...

JavaScript implementation of classic snake game

This article shares the specific code of JavaScri...

How to change the root password in a container using Docker

1. Use the following command to set the ssh passw...

How to reduce image size using Docker multi-stage build

This article describes how to use Docker's mu...

TypeScript namespace explanation

Table of contents 1. Definition and Use 1.1 Defin...

CSS3 to achieve menu hover effect

Result: html <nav id="nav-1"> <...

How to sort a row or column in mysql

method: By desc: Neither can be achieved: Method ...

HTML set as homepage and add to favorites_Powernode Java Academy

How to implement the "Set as homepage" ...

Detailed explanation of nginx upstream configuration and function

Configuration Example upstream backend { server b...