summaryrefslogtreecommitdiff
path: root/video.php
blob: 21398a221ef2e8b091dc8a686253f3dfa4f7e6d2 (plain)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script language="JavaScript">
<!--
function MM_CheckFlashVersion(reqVerStr,msg){
    with(navigator){
        var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
        var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
        if (!isIE || !isWin){  
            var flashVer = -1;
            if (plugins && plugins.length > 0){
                var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
                desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
                if (desc == "") flashVer = -1;
                else{
                    var descArr = desc.split(" ");
                    var tempArrMajor = descArr[2].split(".");
                    var verMajor = tempArrMajor[0];
                    var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
                    var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
                    flashVer =  parseFloat(verMajor + "." + verMinor);
                }
            }
            // WebTV has Flash Player 4 or lower -- too low for video
            else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;

            var verArr = reqVerStr.split(",");
            var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
    
            if (flashVer < reqVer){
                if (confirm(msg))
                    window.location = "http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
            }
        }
    } 
}
// -->
</script>
</head>
<body bgcolor="black" text="white" link="white" vlink="white" topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0">
<video controls width="342" height="291">

<source type="video/webm" src="<?= htmlentities("/video/" . rawurlencode($_GET["v"] ?? "") . ".webm") ?>">
<source type="video/mp4" src="<?= htmlentities("/video/" . rawurlencode($_GET["v"] ?? "") . ".mp4") ?>">

<div>
    <script language="JavaScript">
    <!--
        window.onload = function() {
            var isHTML5Video = (typeof(document.createElement('video').canPlayType) != 'undefined');
            if (!isHTML5Video) {
                MM_CheckFlashVersion('7,0,0,0','Content on this page requires a newer version of Macromedia Flash Player. Do you want to download it now?');
            }
        };
    // -->
    </script>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="342" height="291" id="FLVPlayer">
        <param name="movie" value="FLVPlayer_Progressive.swf">
        <param name="salign" value="lt">
        <param name="quality" value="high">
        <param name="scale" value="noscale">
        <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Halo_Skin_3&streamName=<?= htmlentities("video/" . urlencode($_GET["v"] ?? "")); ?>&autoPlay=false&autoRewind=false">
        <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Halo_Skin_3&streamName=<?= htmlentities("video/" . urlencode($_GET["v"] ?? "")); ?>&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="342" height="291" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">
    </object>
</div>

</video>

</body>
</html>