Build a typed video filter chain for use with .videoFilter().
const vf = videoFilterChain() .scale(1280, 720) .unsharp({ la: 1.0 }) .toString();ffmpeg('in.mp4').output('out.mp4').videoFilter(vf).run(); Copy
const vf = videoFilterChain() .scale(1280, 720) .unsharp({ la: 1.0 }) .toString();ffmpeg('in.mp4').output('out.mp4').videoFilter(vf).run();
Optional
Build a typed video filter chain for use with .videoFilter().
Example