From 209a7908c1836a2c2ea498bbbbf16570b59ca209 Mon Sep 17 00:00:00 2001 From: Andrew Laptev Date: Sat, 20 Feb 2021 16:32:06 +0300 Subject: [PATCH] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index c52760d..bab6dcc 100644 --- a/README.md +++ b/README.md @@ -62,3 +62,9 @@ For large images resolution or IP cameras example check [/example/server-canvas. , quality: 3 // JPEG compression quality level (optional) }); ``` + +If you have an error `Error: spawn ffmpeg ENOENT`, you should first install ffmpeg package. +After that, if the starup command differs from `ffmpeg`, you can change it in the static property like this, for example: +```js +FFMpeg.cmd = 'C:\\ffmpeg.exe'; +```