Filter

Filters utilize LUTs (Lookup Tables) to provide customizable and versatile effects. This enables you to create filters from tools like Adobe Photoshop, allowing for seamless integration into your project.

To apply a filter, store the corresponding LUT as an image and attach it to a specific clip using the addFilter() method.

Example

Create a filter with the following code:

import { Filter } from "@rendley/sdk";
 
clip.addFilter({ lutUrl: "/path/to/lut.jpeg" });