feat: add secure on-demand HLS playback plugin

This commit is contained in:
root
2026-09-04 20:23:10 +02:00
commit 6fae6a3a43
35 changed files with 2283 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Plugin\AzuraCastOnDemandHls\Exception;
use RuntimeException;
final class SessionLimitException extends RuntimeException
{
public function __construct()
{
parent::__construct('Maximum concurrent playback sessions reached.');
}
}
+9
View File
@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace Plugin\AzuraCastOnDemandHls\Exception;
final class TranscodeBusyException extends TranscodeException
{
}
+11
View File
@@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
namespace Plugin\AzuraCastOnDemandHls\Exception;
use RuntimeException;
final class TranscodeException extends RuntimeException
{
}