Removed unnecessary extra layer in resource folder structure.
This commit is contained in:
parent
94485b5633
commit
d8a1b66738
190 changed files with 11 additions and 11 deletions
44
plugins/hal-nvr/resources/web/camera_monitor.tmpl
Normal file
44
plugins/hal-nvr/resources/web/camera_monitor.tmpl
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<style>
|
||||
.monitor-view {
|
||||
width: 100%;
|
||||
height: 740px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<table class="monitor-view">
|
||||
<tr>
|
||||
<td>
|
||||
<video id="view1" class="video-js vjs-fill" preload="auto" data-setup='{}' controls autoplay muted >
|
||||
<source src="{{camera1.getPlaylistRelativeUrl()}}">
|
||||
<p class="vjs-no-js">
|
||||
To view this video please enable JavaScript, and consider upgrading to a web browser that
|
||||
<a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video.</a>
|
||||
</p>
|
||||
</video>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<video id="view2" class="video-js vjs-fill" preload="auto" data-setup='{}' controls autoplay muted >
|
||||
<source src="{{camera2.getPlaylistRelativeUrl()}}">
|
||||
</video>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<video id="view3" class="video-js vjs-fill" preload="auto" data-setup='{}' controls autoplay muted >
|
||||
<source src="{{camera3.getPlaylistRelativeUrl()}}">
|
||||
</video>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<video id="view4" class="video-js vjs-fill" preload="auto" data-setup='{}' controls autoplay muted >
|
||||
<source src="{{camera4.getPlaylistRelativeUrl()}}">
|
||||
</video>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<link href="css/lib/video-js.min.css" rel="stylesheet">
|
||||
<script src="js/lib/video.min.js"></script>
|
||||
<script src="js/lib/videojs-http-streaming.min.js"></script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue