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