12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
|
export declare class FFMPEG {
|
||
|
private bin;
|
||
|
private log;
|
||
|
private shell;
|
||
|
private formats;
|
||
|
private formatsInfo;
|
||
|
constructor(bin?: string);
|
||
|
private rawList;
|
||
|
private demuxerInfo;
|
||
|
listFormats(): Promise<string[]>;
|
||
|
}
|