summaryrefslogtreecommitdiff
path: root/video.php
diff options
context:
space:
mode:
authorJonas Kohl2024-12-04 10:13:04 +0100
committerJonas Kohl2024-12-04 10:13:04 +0100
commiteebce1a389afbc47fcf525d62e1f8ee9cb811770 (patch)
treedf23cbd292ff993f44b36ab2786f5911dd17b594 /video.php
parent3808045bb2fbcb32d693791bbcd18e2cc474d29b (diff)
Remove unused video player
Diffstat (limited to 'video.php')
-rw-r--r--video.php84
1 files changed, 0 insertions, 84 deletions
diff --git a/video.php b/video.php
deleted file mode 100644
index 167c7e2..0000000
--- a/video.php
+++ /dev/null
@@ -1,84 +0,0 @@
-<!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 getFlashVersion() {
- var activeXObj, plugins, plugin, result;
-
- if (navigator.plugins && navigator.plugins.length > 0) {
- plugins = navigator.plugins;
- for (var i = 0; i < plugins.length && !result; i++) {
- plugin = plugins[i];
- if (plugin.name.indexOf("Shockwave Flash") > -1) {
- result = plugin.description.split("Shockwave Flash ")[1];
- }
- }
- } else {
- plugin = "ShockwaveFlash.ShockwaveFlash";
- try {
- activeXObj = new ActiveXObject(plugin + ".7"), result = activeXObj.GetVariable("$version")
- } catch (e) {}
-
- if (!result) try {
- activeXObj = new ActiveXObject(plugin + ".6"), result = "WIN 6,0,21,0", activeXObj.AllowScriptAccess = "always", result = activeXObj.GetVariable("$version")
- } catch (e) {}
-
- if (!result) try {
- activeXObj = new ActiveXObject(plugin), result = activeXObj.GetVariable("$version")
- } catch (e) {}
-
- result && (result = result.split(" ")[1].split(","), result = result[0] + "." + result[1] + " r" + result[2])
- }
- return result ? result : "0";
-}
-
-function checkFlashVersion(reqVerStr) {
- var flashVer = getFlashVersion();
- flashVer = parseFloat(flashVer.split(" r")[0]);
-
- var verArr = reqVerStr.split(",");
- var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
-
- return flashVer >= reqVer;
-}
-
-function supportsHTML5Video() {
- return (typeof(document.createElement('video').canPlayType) != 'undefined');
-}
-// -->
-</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">
- <!--
- if (!supportsHTML5Video()) {
- if (!checkFlashVersion('7,0,0,0')) {
- document.write('<TABLE CELLSPACING=0 CELLPADDING=8><TR><TD>Content on this page requires Macromedia Flash Player 7 or newer.<BR><A HREF="http://www.macromedia.com/go/getflashplayer/"><IMG SRC="/images/get_flash_player.gif" ALT="Get Macromedia Flash Player" BORDER="0"></A></TD></TR></TABLE>');
- } else {
- document.write('<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">');
- document.write('<param name="movie" value="FLVPlayer_Progressive.swf">');
- document.write('<param name="salign" value="lt">');
- document.write('<param name="quality" value="high">');
- document.write('<param name="scale" value="noscale">');
- document.write('<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Halo_Skin_3&streamName=<?= htmlentities("video/" . urlencode($_GET["v"] ?? "")); ?>&autoPlay=false&autoRewind=false">');
- document.write('<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">');
- document.write('</object>');
- }
- }
- // -->
- </script>
-</div>
-
-</video>
-
-</body>
-</html>