From 6ae86ab913d41a7e70d0ca58b4b2a2ce16520361 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Thu, 24 Sep 2020 22:09:05 +0200 Subject: [PATCH] expose logTimes to framesource --- sources/frameSource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/frameSource.js b/sources/frameSource.js index 4205a17..285d9c4 100644 --- a/sources/frameSource.js +++ b/sources/frameSource.js @@ -43,7 +43,7 @@ async function createFrameSource({ clip, clipIndex, width, height, channels, ver assert(createFrameSourceFunc, `Invalid type ${type}`); - const frameSource = await createFrameSourceFunc({ ffmpegPath, ffprobePath, width, height, duration, channels, verbose, enableFfmpegLog, framerateStr, params }); + const frameSource = await createFrameSourceFunc({ ffmpegPath, ffprobePath, width, height, duration, channels, verbose, logTimes, enableFfmpegLog, framerateStr, params }); return { layer, frameSource }; }, { concurrency: 1 });