You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
263 B
TypeScript

import { ChildProcess } from 'child_process';
import { Duplex } from 'stream';
export interface FFmpegOptions {
args?: string[];
}
export default class FFmpegTransform extends Duplex {
public process: ChildProcess;
constructor(options?: FFmpegOptions);
}