forked from KonradIT/goprowifihack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLive-Preview.html
39 lines (25 loc) · 1.11 KB
/
Live-Preview.html
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
33
34
35
36
37
38
39
<!---You can embed a preview for Windows using VLC WEBplugin:--->
<embed type="application/x-vlc-plugin"
name="goprolivestream"
autoplay="yes" loop="no" width="400" height="300"
target="http://10.5.5.9:8080/live/amba.m3u8" />
<br />
<a href="javascript:;" onclick='document.goprolivestream.play()'>Play GoPro Live Stream</a>
<a href="javascript:;" onclick='document.goprolivestream.pause()'>Pause GoPro Live Stream</a>
<a href="javascript:;" onclick='document.goprolivestream.stop()'>Stop GoPro Live Stream</a>
<a href="javascript:;" onclick='document.goprolivestream.fullscreen()'>Fullscreen the Live preview</a>
<!---Alternatively, you can embed the preview using JW Player.--->
<!---write this in your head tag:--->
<script src="http://jwpsrv.com/library/9Xd9rv1IEeKDbSIACusDuQ.js"></script>
<!---Customizable JW Player:-->
<div id='goproherolive'></div>
<script type='text/javascript'>
jwplayer('goproherolive').setup({
file: 'http://10.5.5.9:8080/live/amba.m3u8',
title: 'GoPro HERO Live Stream',
width: '100%',
aspectratio: '16:9',
fallback: 'false',
autostart: 'true'
});
</script>