diff --git a/enjoy/src/main/ffmpeg.ts b/enjoy/src/main/ffmpeg.ts index 9837e3eb..a5930287 100644 --- a/enjoy/src/main/ffmpeg.ts +++ b/enjoy/src/main/ffmpeg.ts @@ -15,8 +15,10 @@ export default class FfmpegWrapper { const config = settings.ffmpegConfig(); if (config.commandExists) { + logger.info("Using system ffmpeg"); this.ffmpeg = Ffmpeg(); } else { + logger.info("Using downloaded ffmpeg"); const ff = Ffmpeg(); ff.setFfmpegPath(config.ffmpegPath); ff.setFfprobePath(config.ffprobePath);