1、下载安装vlc插件
2、页面中引用插件
<div> <object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://download.videolan.org/pub/videolan/vlc/last/win32/axvlc.cab" id="vlc" name="vlc" class="vlcPlayer" events="True"> <embed id="vlcEmb" type="application/x-google-vlc-plugin" version="VideoLAN.VLCPlugin.2" autoplay="yes" loop="no" width="930" height="600" :target="url" /> </object></div>
3、js中播放方法
play() { // 获取vlc插件对象 var vlc = document.getElementById("vlcEmb"); // 先清除播放器播放列表 vlc.playlist.clear(); // 添加rtsp视频流地址到播放列表 vlc.playlist.add(this.url); // 开始播放 vlc.playlist.play();}