UNPKG

ffcreatorlite

Version:

FFCreatorLite is a lightweight and flexible short video production library

17 lines (14 loc) 195 B
'use strict'; /** * FFContext * * @class */ class FFContext { constructor() { this.input = null; this.output = null; this.inFilters = false; } } module.exports = FFContext;