summaryrefslogtreecommitdiff
path: root/contrib/www/lac/player.php
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/www/lac/player.php')
-rw-r--r--contrib/www/lac/player.php131
1 files changed, 0 insertions, 131 deletions
diff --git a/contrib/www/lac/player.php b/contrib/www/lac/player.php
deleted file mode 100644
index 21e7030..0000000
--- a/contrib/www/lac/player.php
+++ /dev/null
@@ -1,131 +0,0 @@
-<?php require_once('init.php'); ?>
- <table id="header" width="<?php printf('%dpx', $WIDTH); ?>">
- <tr>
- <td align='left' width='40%'>
-<?php
- switch($MODE) {
- case 'html5': {
- echo " <span class='selected'>HTML5</span>";
- echo " <span><a href='$URL_FLASH'>FLASH</a></span>";
- break;
- }
- case 'flash': {
- echo " <span><a href='$URL_HTML5'>HTML5</a></span>";
- echo " <span class='selected'>FLASH</span>";
- break;
- }
- }
-?>
- </td>
- <td align='right' width='60%'>
-<?php
- switch($PROFILE) {
- case 'high': {
- echo " <span class='selected'>high</span>";
- if ( isset($EMBED) && $EMBED >= 2 ) {
- echo " <span><a href='$URL_MEDIUM' target='_parent'>medium</a></span>";
- } else {
- echo " <span><a href='$URL_MEDIUM'>medium</a></span>";
- }
- if ( isset($EMBED) && $EMBED >= 3 ) {
- echo " <span><a href='$URL_LOW' target='_parent'>low</a></span>";
- } else {
- echo " <span><a href='$URL_LOW'>low</a></span>";
- }
- echo " <span><a href='$URL_MINI'>mini</a></span>";
- break;
- }
- case 'medium': {
- if ( isset($EMBED) ) {
- echo " <span><a href='$URL_HIGH' target='_parent'>high</a></span>";
- } else {
- echo " <span><a href='$URL_HIGH'>high</a></span>";
- }
- echo " <span class='selected'>medium</span>";
- if ( isset($EMBED) && $EMBED >= 3 ) {
- echo " <span><a href='$URL_LOW' target='_parent'>low</a></span>";
- } else {
- echo " <span><a href='$URL_LOW'>low</a></span>";
- }
- echo " <span><a href='$URL_MINI'>mini</a></span>";
- break;
- }
- case 'low': {
- if ( isset($EMBED) ) {
- echo " <span><a href='$URL_HIGH' target='_parent'>high</a></span>";
- } else {
- echo " <span><a href='$URL_HIGH'>high</a></span>";
- }
- if ( isset($EMBED) && $EMBED >= 2 ) {
- echo " <span><a href='$URL_MEDIUM' target='_parent'>medium</a></span>";
- } else {
- echo " <span><a href='$URL_MEDIUM'>medium</a></span>";
- }
- echo " <span class='selected'>low</span>";
- echo " <span><a href='$URL_MINI'>mini</a></span>";
- break;
- }
- case 'mini': {
- if ( isset($EMBED) ) {
- echo " <span><a href='$URL_HIGH' target='_parent'>high</a></span>";
- } else {
- echo " <span><a href='$URL_HIGH'>high</a></span>";
- }
- if ( isset($EMBED) && $EMBED >= 2 ) {
- echo " <span><a href='$URL_MEDIUM' target='_parent'>medium</a></span>";
- } else {
- echo " <span><a href='$URL_MEDIUM'>medium</a></span>";
- }
- if ( isset($EMBED) && $EMBED >= 3 ) {
- echo " <span><a href='$URL_LOW' target='_parent'>low</a></span>";
- } else {
- echo " <span><a href='$URL_LOW'>low</a></span>";
- }
- echo " <span class='selected'>mini</span>";
- break;
- }
- }
-?>
- </td>
- </tr>
- </table>
-<?php if ($MODE == "flash") { ?>
- <script type="text/javascript" src="/flowplayer/flowplayer-3.2.6.min.js"></script>
- <div id="player" style="<?php printf('display:block;width:%dpx;height:%dpx', $WIDTH, $HEIGHT); ?>"></div>
- <script>flowplayer("player", "/flowplayer/flowplayer-3.2.7.swf", {
- clip: {
- url: "<?php echo $STREAM_URL_FLASH; ?>",
- autoPlay: true,
- autoBuffering: true,
- bufferLength: 5,
- live: true,
- scaling: "fit"
- },
- plugins: {
- controls: {
- url: "/flowplayer/flowplayer.controls-3.2.5.swf",
- time: false,
- }
- }
- } );
- </script>
-<?php } else { ?>
- <video width=<?php echo $WIDTH; ?> height=<?php echo $HEIGHT; ?> autoplay controls>
- <source src="<?php echo $STREAM_URL_WEBM; ?>" type="video/webm" />
- <source src="<?php echo $STREAM_URL_HLS; ?>" type="application/x-mpegURL" />
- </video>
-<?php } ?>
- <table id="footer" width="<?php printf('%dpx', $WIDTH); ?>">
- <tr>
- <td align='right'>
- <h2>Direct Link(s):</h2>
- </td>
- <td align='left'>
-<?php if ($MODE == "flash") {
- echo " <a href='$STREAM_URL_FLASH'>$STREAM_URL_FLASH</a>";
- } else {
- echo " <a href='$STREAM_URL_WEBM'>$STREAM_URL_WEBM</a><br />";
- echo " <a href='$STREAM_URL_HLS'>$STREAM_URL_HLS</a>";
- } ?>
- </td>
- </table>