episode.php 1.1 KB

12345678910111213141516
  1. <div class="container-fluid">
  2. <h1><?php echo $this->_['episode'][0]['number'] . " - " . $this->_['episode'][0]['name']; ?></h1>
  3. <div class="row text-center">
  4. <p>
  5. <a href="<?php echo $GLOBALS['conf']['baseURL']; ?>readfile.php?file=<?php echo urlencode(base64_encode($this->_['videoFile'])); ?>">Download</a> | <input type="text" value="https://bridge.mmnx.de/videos/readfile.php?file=<?php echo urlencode(base64_encode($this->_['videoFile'])); ?>" /> <sub>Kopieren für Wiedergabe in Medienplayer (Netzwerkstream)</sub>
  6. </p>
  7. </div>
  8. <div class="row">
  9. <!--<input type="text" value="https://yolo:amk@bridge.mmnx.de/videos/readfile.php?file=/media/Serien/American Dad/S01/American.Dad-S01E01-Pilot.mp4" /> <sub>Kopieren für Wiedergabe in Medienplayer (Netzwerkstream)</sub>-->
  10. <div style="background: gray; text-align: center;">
  11. <video width="auto" height="auto" controls>
  12. <source src="<?php echo $GLOBALS['conf']['baseURL']; ?>readfile.php?file=<?php echo urlencode(base64_encode($this->_['videoFile'])); ?>" type="video/mp4">Your browser does not support the video tag.</video>
  13. </div>
  14. </div>
  15. </div>