zbAdmin/public/index.html
kaizheng(郑凯) 5b88a94543 fix: 修改
2025-01-31 22:10:53 +08:00

34 lines
2.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<title><%= webpackConfig.name %></title>
<link href="<%= BASE_URL %>static/css/tcplayer.min.css" rel="stylesheet" />
<link href="<%= BASE_URL %>static/css/normalize.css" rel="stylesheet" />
<script src="<%= BASE_URL %>static/js/config.js"></script>
<!--如果需要在 Chrome 和 Firefox 等现代浏览器中通过 H5 播放 Webrtc 视频,需要在 tcplayer.vx.x.x.min.js 之前引入 TXLivePlayer-x.x.x.min.js。-->
<!--有些浏览器环境不支持 Webrtc播放器会将 Webrtc 流地址自动转换为 HLS 格式地址因此快直播场景同样需要引入hls.min.x.xx.xm.js。-->
<script src="<%= BASE_URL %>static/js/TXLivePlayer-1.2.3.min.js"></script>
<!--如果需要在 Chrome 和 Firefox 等现代浏览器中通过 H5 播放 HLS 协议的视频,需要在 tcplayer.vx.x.x.min.js 之前引入 hls.min.x.xx.xm.js。-->
<script src="<%= BASE_URL %>static/js/hls.min.1.1.5.js"></script>
<!--如果需要在 Chrome 和 Firefox 等现代浏览器中通过 H5 播放 FLV 格式的视频,需要在 tcplayer.vx.x.x.min.js 之前引入 flv.min.x.x.x.js。-->
<script src="<%= BASE_URL %>static/js/flv.min.1.6.3.js"></script>
<!--如果需要在 Chrome 和 Firefox 等现代浏览器中通过 H5 播放 DASH 视频,需要在 tcplayer.vx.x.x.min.js 之前引入 dash.min.x.x.x.js。-->
<script src="<%= BASE_URL %>static/js/dash.all.min.4.4.1.js"></script>
<!--播放器脚本文件-->
<script src="<%= BASE_URL %>static/js/tcplayer.v4.6.0.min.js"></script>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script src="<%= BASE_URL %>static/tinymce/tinymce.min.js"></script>
</body>
</html>