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.

26 lines
1.1KB

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