24 lines
367 B
PHP
24 lines
367 B
PHP
<?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();
|