From ce22f25bbc66c4ad6c342b09d64c7b144c06e470 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Wed, 19 May 2021 17:37:05 +0200 Subject: [PATCH] Remove empty options --- main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.js b/main.js index 47ab603..875abab 100644 --- a/main.js +++ b/main.js @@ -55,7 +55,7 @@ function getDetails(input, cb){ '-show_entries', 'stream', input - ],[] + ] ); // Get frame rate from stdout @@ -139,7 +139,7 @@ function getBitrate(input, details, progress, cb){ '-show_entries', 'frame=stream_index,media_type,pict_type,pkt_size,pkt_pts_time', input - ],[] + ] ); // Get frame data @@ -492,4 +492,4 @@ function plotScript(input, cb, op){ module.exports = { getFrames: getFrames, plotScript: plotScript -}; \ No newline at end of file +};