Файл vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Filters/FilterInterface.php Вес запакованого файла 263b (263 b) Вес распакованого файла: 398b (398 b) Метод сжатия: 8
<?php
/*
* This file is part of PHP-FFmpeg.
*
* (c) Alchemy <dev.team@alchemy.fr>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FFMpeg\Filters;
interface FilterInterface
{
/**
* Returns the priority of the filter.
*
* @return int
*/
public function getPriority();
}