php-vfxapply/plugins/transcode/plugin.php

25 lines
379 B
PHP
Raw Normal View History

2017-01-13 01:18:46 +00:00
<?php
namespace VfxApply\Plugin\Transcode;
use VfxApply\Plugin;
use VfxApply\Input;
use VfxApply\Output;
use VfxApply\Preset;
class TranscodePlugin extends Plugin
{
public function getName()
{
return "transcode";
}
public function applyPreset(Preset $preset, Input $input, Output $output)
{
}
}
return new TranscodePlugin();