Custom Function Repo
Manually process or modify frames and metadata using python code from a specific Git repository
Overview
Custom Function Repo node lets you run custom python code from a specific Git repository to process or modify frames, and extract or add metadata to frames.
Inputs & Outputs
- Inputs : 1, Media Format : Raw Video
- Outputs : 1, Media Format: Raw Video
- Output Metadata : See below.
Properties
Property | Description | Type | Default | Required |
---|---|---|---|---|
git_repo_url | The URL of the Git repository where the Lumeo custom functions package is located. See example here: https://github.com/lumeohq/custom-functions | string | - | Yes |
git_version | Git version to use. Can be a branch name, a tag, or a commit hash. | string | - | No |
git_token | Read-only token to use for private Git repositories. | string | - | No |
package_name | Name of the package to install from the Git repository. | string | - | Yes |
package_version | Python package version to install from the Git repository. | string | - | Yes |
module_name | Name of the Python module to use from the package. | string | - | Yes |
function_name | Name of the function to use from the module. Defaults to process_frame if not specified. | string | - | No |
configuration | JSON object containing the configuration for the function. Passed as the configuration parameter to the function. | string | - | No |
Updated about 1 month ago