pierreminiggio/github-action-remotion-renderer

There is no license information available for the latest version (2.0.0) of this package.

2.0.0 2022-08-15 08:41 UTC

This package is auto-updated.

Last update: 2024-11-15 14:12:37 UTC


README

Install using composer :

composer require pierreminiggio/github-action-remotion-renderer
use PierreMiniggio\GithubActionRemotionRenderer\GithubActionRemotionRenderer;

require __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';

$renderer = new GithubActionRemotionRenderer();
$videoPath = $renderer->render(
    'token',
    'pierreminiggio',
    'remotion-test-github-action',
    3,
    0,
    [
        'titleText' => 'Hello from PHP video renderer',
        'titleColor' => 'orange'
    ]
);

var_dump($videoPath);