ipfs-mcp
Version:
MCP service to interact with an IPFS node for file storage and retrieval.
12 lines (10 loc) • 353 B
TypeScript
declare module 'fluent-ffmpeg' {
interface FfmpegCommand {
format(format: string): FfmpegCommand;
audioBitrate(bitrate: string): FfmpegCommand;
on(event: string, callback: (...args: any[]) => void): FfmpegCommand;
save(path: string): FfmpegCommand;
}
function ffmpeg(input: string): FfmpegCommand;
export = ffmpeg;
}