diff --git a/apps/monitor/templates/monitor/video.html b/apps/monitor/templates/monitor/video.html
index 8270b657..fd467353 100755
--- a/apps/monitor/templates/monitor/video.html
+++ b/apps/monitor/templates/monitor/video.html
@@ -5,30 +5,25 @@
videojs-contrib-hls embed
-
-
+
Video.js Example Embed
-
+
+ if (flvjs.isSupported()) {
+ var videoElement = document.getElementById('videoElement');
+ var flvPlayer = flvjs.createPlayer({
+ type: 'flv',
+ url: 'http://10.0.11.21:7886/live/cameraid/1000038%240/substream/2.flv'
+ });
+ flvPlayer.attachMediaElement(videoElement);
+ flvPlayer.load();
+ flvPlayer.play();
+ }
+