我正在我的html页面上工作,我想播放midi声音(.mid),但我不知道该怎么做。有什么方法我可以在页面上播放midi声音。
这是代码,我正在努力。请告诉我需要做的更改
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML Layouts using DIV, SPAN</title>
</head>
<body>
<div style="width:100%">
<div style="background-color:#b5dcb3; width:100%">
<center><h1>Sonification</h1></center>
</div>
<div style="background-color:#aaa; height:2000px;width:610px;float:left;">
<center><img src="image\so.jpg" alt="Sonification"></center>
<br><br><br><br><br><br><br><br><br><br><br><br><br>
<center><h3>Sound_1</h3></center>
<table style="width:40%">
<tr>
<td><audio id="player" controls> <source src="audio\final.mid" type="audio/ogg"> <source src="final" type="audio/mpeg">Audio</audio>
</td>
<td><audio id="player" controls> <source src="audio\final.mid" type="audio/ogg"> <source src="final" type="audio/mpeg">Audio</audio>
</td>
</tr>
</table>
</body>
</html>