episode.php 726 B

1234567891011
  1. <div class="container-fluid">
  2. <h1><?php echo $this->_['episode'][0]['number'] . " - " . $this->_['episode'][0]['name']; ?></h1>
  3. <div class="row">
  4. <!--<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>-->
  5. <div style="background: gray; text-align: center;">
  6. <video width="auto" height="auto" controls>
  7. <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>
  8. </div>
  9. </div>
  10. </div>