-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestVLC.html
More file actions
34 lines (28 loc) · 1.26 KB
/
Copy pathtestVLC.html
File metadata and controls
34 lines (28 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Stream</title>
</head>
<body>
<h1>This is my video camera</h1>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" autoplay="yes" loop="no" width="300" height="200" target="rtsp://admin:fab1801@192.168.2.63:554//live1.sdp" />
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://download.videolan.org/pub/videolan/vlc/last/win32/axvlc.cab" style="display:none;">
<param name="autostart" value="true" />
<param name="allowfullscreen" value="false" />
</object>
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" id="vlc" width="640" height="480" target="rtsp://admin:fab1801@192.168.2.63:554//live1.sdp">
<embed type="application/x-vlc-plugin" name="vlc" width="640" height="480" />
</object>
<embed type="application/x-vlc-plugin"
width="640"
height="480"
id="vlc" />
<script type="text/javascript">
var vlc = document.getElementById("vlc");
vlc.audio.toggleMute();
</script>
<video src="rtsp://admin:fab1801@192.168.2.63:554//live1.sdp"></video>
</body>
</html>