UNPKG

subtitles-generator

Version:

Generate subtitles easily with ffmpeg and whisper

16 lines (15 loc) 323 B
import fs from 'node:fs'; export const isFileExists = async (file) => { try { const stat = await fs.promises.stat(file); return stat.isFile(); } catch (error) { if (error.code === 'ENOENT') { return false; } else { throw error; } } };