赵明吉奥/github-action-remotion-renderer

此软件包最新版本(2.0.0)没有提供许可证信息。

2.0.0 2022-08-15 08:41 UTC

This package is auto-updated.

Last update: 2024-09-15 13:54:20 UTC


README

使用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);