vlc插件.html 869 B

123456789101112131415161718192021222324252627282930
  1. <!--
  2. * @Description:
  3. * @Autor: kindring
  4. * @Date: 2022-02-22 15:39:20
  5. * @LastEditors: kindring
  6. * @LastEditTime: 2022-02-22 17:16:25
  7. * @LastDescript:
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15. <title>vlc插件使用</title>
  16. </head>
  17. <body>
  18. <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;">
  19. <param name="src" value="rtmp://127.0.0.1:1935/live"/>
  20. <param name="autostart" value="true"/>
  21. <embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org"
  22. width="640px"
  23. height="480px"
  24. src="rtmp://127.0.0.1:1935/live"/>
  25. </object>
  26. </body>
  27. </html>