This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/transcode/config.php

18 lines
486 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
class TranscodeConfig
{
2021-12-14 18:32:47 +00:00
public const VERSION = "ext_transcode_version";
public const ENGINE = "transcode_engine";
public const ENABLED = "transcode_enabled";
public const GET_ENABLED = "transcode_get_enabled";
public const UPLOAD = "transcode_upload";
public const UPLOAD_PREFIX = "transcode_upload_";
public const QUALITY = "transcode_quality";
public const ALPHA_COLOR = "transcode_alpha_color";
}