| 33 | type PresetFunction = (command: FfmpegCommand) => void; |
| 34 | |
| 35 | interface Filter { |
| 36 | description: string; |
| 37 | input: string; |
| 38 | multipleInputs: boolean; |
| 39 | output: string; |
| 40 | multipleOutputs: boolean; |
| 41 | } |
| 42 | interface Filters { |
| 43 | [key: string]: Filter; |
| 44 | } |
nothing calls this directly
no outgoing calls
no test coverage detected