12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="renderer" content="webkit">
- <title>RTMP播放协议</title>
- <style>
- body {
- margin: 0;
- }
- #myPlayer {
- max-width: 1200px;
- width: 100%;
- }
- </style>
- </head>
- <script>
- </script>
- <body>
- <script src="https://open.ys7.com/sdk/js/2.0/ezuikit.js"></script>
- <video id="myPlayer" controls playsInline webkit-playsinline autoplay>
- <source src="rtmp://rtmp.open.ys7.com/openlive/f01018a141094b7fa138b9d0b856507b.hd" type="rtmp/flv"/>
- </video>
- <script>
- var player = new EZuikit.EZUIPlayer('myPlayer');
- // 日志
- player.on('log', log);
- function log(str) {
- var div = document.createElement('DIV');
- div.innerHTML = (new Date()).Format('yyyy-MM-dd hh:mm:ss.S') + JSON.stringify(str);
- document.body.appendChild(div);
- }
- </script>
- </body>
- </html>
|