Phar support, more plugins and presets

This commit is contained in:
2017-01-13 02:18:46 +01:00
parent 1938337bb0
commit 0ca1da06e7
13 changed files with 328 additions and 43 deletions

View File

@ -0,0 +1,24 @@
<?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();