Files
torsearch/src/User/Database/CodecList.php
2025-07-24 17:09:30 -05:00

25 lines
371 B
PHP

<?php
namespace App\User\Database;
class CodecList
{
public static $codecs = [
'h264',
'h265/HEVC',
];
public static function getCodecs()
{
return self::$codecs;
}
public static function asSelectOptions(): array
{
return [
'h264' => 'h264',
'h265/HEVC' => 'h265',
];
}
}