index.php 274 B

12345678910111213
  1. <?php
  2. if (ubRouting::get('live')) {
  3. $channelId = ubRouting::get(LiveCams::ROUTE_PSEUDOLIVE);
  4. if (!empty($channelId)) {
  5. $liveCams = new LiveCams();
  6. $playlistBody = $liveCams->getPseudoStream($channelId);
  7. print($playlistBody);
  8. }
  9. }
  10. die();