UNPKG

add-music-to-video

Version:

Add background music to my videos very easily

10 lines (9 loc) 264 B
export interface CliOptions { inputVideoFilePath?: string; musicSource?: "random" | "youtube" | "local"; youtubeUrl?: string; localMusicPath?: string; outputPath?: string; help?: boolean; } export declare const DEFAULT_OPTIONS: CliOptions;