-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·83 lines (72 loc) · 2.44 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>JWPlayer Streaming Video Test</title>
<meta name="description" content="TestNewVideo">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style type="text/css">
html,body {
height:100%;
width:100%;
padding:0;
margin:0;
}
#myVideo {
display: block;
margin: 0 auto;
width:100%;
}
@media all and (max-device-width: 767px) {
#myVideo {
max-width: 100%;
width: 100%;
height: auto;
padding:0;
}
}
@media all and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
#myVideo {
max-width: 100%;
width: 100%;
height: auto;
padding:0;
}
}
</style>
<!-- jQuery is not being used for this Test Page and can be removed -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.8.2.min.js"><\/script>')</script>
<!-- JW Player Scripts -->
<script type="text/javascript"
src="http://YOUR_URL.s3-website-us-east-1.amazonaws.com/jwplayer.js" ></script>
<script type="text/javascript">jwplayer.key="YOUR_JWPLAYER_KEY";</script>
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!-- JW Player Single Stream-->
<div id="myVideo"></div>
<script>
jwplayer("myVideo").setup({
playlist: [{
image: "http://YOUR_CLOUDFRONT_URL.cloudfront.net/images/big_buck_bunny.jpg",
sources: [{
// The RTMP url is the streaming video
file: "rtmp://YOUR_CLOUDFRONT_URL.cloudfront.net/cfx/st/mp4:video/big_buck_bunny.mp4"
},{
file: "http://YOUR_CLOUDFRONT_URL.cloudfront.net/video/big_buck_bunny.mp4"
},{
file: "http://YOUR_CLOUDFRONT_URL.cloudfront.net/video/big_buck_bunny.ogg"
}]
}],
primary: "flash",
width: '640',
height: '360'
});
</script>
</body>
</html>