Fix muxing
This commit is contained in:
3
dist/server/services/ytDlp.d.ts
vendored
3
dist/server/services/ytDlp.d.ts
vendored
@@ -3,5 +3,6 @@ export interface YtDlpResult {
|
||||
filename: string;
|
||||
title: string;
|
||||
}
|
||||
export type YtDlpProgress = (percent: number) => void;
|
||||
export declare function isYtDlpAvailable(): boolean;
|
||||
export declare function downloadVideo(url: string, outputDir: string): YtDlpResult;
|
||||
export declare function downloadVideo(url: string, outputDir: string, onProgress?: YtDlpProgress): Promise<YtDlpResult>;
|
||||
|
||||
Reference in New Issue
Block a user