The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.1KB

  1. <?php
  2. /* This file is dedicated to the public domain; you may do as you wish with it. */
  3. $v = @(string)$_GET['v'];
  4. $t = @(string)$_GET['t'];
  5. $loop = @(boolean)$_GET['loop'];
  6. $params = '?v=' . urlencode($v) . '&amp;t=' . urlencode($t);
  7. ?><!DOCTYPE html>
  8. <html>
  9. <head>
  10. <meta charset="utf-8">
  11. <title><?php echo htmlspecialchars($t); ?></title>
  12. <link rel="stylesheet" href="stylesheets/webm/playerstyle.css">
  13. <script src="js/webm-settings.js"></script>
  14. <script src="js/webm/playersettings.js"></script>
  15. </head>
  16. <body>
  17. <div id="playerheader">
  18. <a id="loop0" href="<?php echo $params; ?>&amp;loop=0"<?php if (!$loop) echo ' style="font-weight: bold"'; ?>>[play once]</a>
  19. <a id="loop1" href="<?php echo $params; ?>&amp;loop=1"<?php if ($loop) echo ' style="font-weight: bold"'; ?>>[loop]</a>
  20. </div>
  21. <div id="playercontent">
  22. <video controls<?php if ($loop) echo ' loop'; ?> src="<?php echo htmlspecialchars($v); ?>">
  23. Your browser does not support HTML5 video. <a href="<?php echo htmlspecialchars($v); ?>">[Download]</a>
  24. </video>
  25. </div>
  26. </body>
  27. </html>