123456789101112131415161718192021222324252627282930 |
- <!--
- * @Description:
- * @Autor: kindring
- * @Date: 2022-02-22 15:39:20
- * @LastEditors: kindring
- * @LastEditTime: 2022-02-22 17:16:25
- * @LastDescript:
- -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>vlc插件使用</title>
- </head>
- <body>
- <object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://download.videolan.org/pub/videolan/vlc/last/win32/axvlc.cab" style="width: 640px; height: 480px;">
- <param name="src" value="rtmp://127.0.0.1:1935/live"/>
- <param name="autostart" value="true"/>
- <embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
- width="640px"
- height="480px"
- src="rtmp://127.0.0.1:1935/live"/>
- </object>
- </body>
- </html>
|