@m3u8/simple-hls
Version:
A Multi-Bitrate Transcoding Library for NodeJS.
13 lines (12 loc) • 401 B
TypeScript
declare class Transcode {
inputPath: string;
outputPath: string;
options: any | undefined;
constructor(inputPath: string, outputPath: string, options: any);
transcode(): Promise<unknown>;
deleteOutputPath(): Promise<void>;
buildCommands(): Promise<unknown>;
writePlaylist(): Promise<unknown>;
}
export declare const Transcoder: typeof Transcode;
export {};