UNPKG

node-diarization

Version:

Transcription and diarization using Whisper and Pyannote with NodeJS

7 lines (6 loc) 401 B
import { ShellResult } from "./types/TaskResult"; import { Options, Task } from "./types/Options"; import { EventEmitter } from "node:events"; export declare const shellExec: (commandString: string, options?: Options, eventEmitter?: EventEmitter) => Promise<ShellResult>; export declare const formatCommandString: (task: Task, filePath: string, options?: Options) => string; export default shellExec;