Files
hstream/resources/views/stream/partials/player.blade.php
2025-12-19 22:13:50 +01:00

14 lines
615 B
PHP

<div class="block">
<div id="player-alert" class="hidden mb-4 rounded-lg bg-danger-100 px-6 py-5 text-base text-danger-700" role="alert">
</div>
@if($episode->dmca_takedown)
<div class="mb-4 rounded-lg bg-danger-400 px-6 py-5 text-base text-danger-800 mt-5" role="alert">
(╥﹏╥) This episode is unavailable! (DMCA Takedown) (╥﹏╥)
</div>
@endif
<canvas id="ambientVideo" class="decoy"></canvas>
<div class="relative w-full aspect-[16/9]">
<video id="player" playsinline controls crossorigin class="absolute inset-0 w-full h-full"></video>
</div>
</div>