Created
February 13, 2019 05:28
-
-
Save lmccart/2633aa59ecea46ecb62440e116cdbf9d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<!-- hamachi --> | |
<object type="application/x-vlc-plugin" data="rtsp://admin:[email protected]:554/live1.sdp" width="500" height="375" id="video1"> | |
<param name="movie" value="rtsp://admin:[email protected]:554/live1.sdp"> | |
<embed type="application/x-vlc-plugin" name="video1" autoplay="no" loop="no" width="500" height="375" target="rtsp://admin:[email protected]:554/live1.sdp" /> | |
</object> | |
<!-- openvpn --> | |
<object type="application/x-vlc-plugin" data="rtsp://admin:[email protected]:1554/live1.sdp" width="500" height="375" id="video1"> | |
<param name="movie" value="rtsp://admin:[email protected]:1554/live1.sdp"> | |
<embed type="application/x-vlc-plugin" name="video1" autoplay="no" loop="no" width="500" height="375" target="rtsp://admin:[email protected]:1554/live1.sdp" /> | |
</object> | |
</body> | |
<script type='text/javascript'> | |
// sometimes player doesn't show up, toggling fullscreen displays it | |
// you can toggle back by clicking button in interface | |
let vlc = document.getElementById('video1'); | |
vlc.toggleFullscreen(); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment