50 lines
1.4 KiB
HTML
50 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HEVC转H.264播放器</title>
|
|
<style>
|
|
.container {
|
|
max-width: 1000px;
|
|
margin: 20px auto;
|
|
padding: 20px;
|
|
}
|
|
.progress-container {
|
|
height: 8px;
|
|
background: #eee;
|
|
border-radius: 4px;
|
|
margin: 10px 0;
|
|
}
|
|
#progressBar {
|
|
height: 100%;
|
|
background: #4285f4;
|
|
width: 0%;
|
|
}
|
|
#videoContainer {
|
|
width: 100%;
|
|
background: #000;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
min-height: 300px;
|
|
}
|
|
video {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>HEVC转H.264播放器</h1>
|
|
<input type="file" id="hevcFileInput" accept="video/*" />
|
|
<div id="conversionStatus">请选择HEVC编码的视频文件</div>
|
|
<div class="progress-container">
|
|
<div id="progressBar"></div>
|
|
</div>
|
|
<div id="videoContainer"></div>
|
|
</div>
|
|
|
|
<!-- 引入核心脚本 -->
|
|
<script src="hevc-to-h264-player.js"></script>
|
|
</body>
|
|
</html>
|